1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080
|
{-------------------------------------------------------------------------------
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
the specific language governing rights and limitations under the License.
Alternatively, the contents of this file may be used under the terms of the
GNU General Public License Version 2 or later (the "GPL"), in which case
the provisions of the GPL are applicable instead of those above.
If you wish to allow use of your version of this file only under the terms
of the GPL and not to allow others to use your version of this file
under the MPL, indicate your decision by deleting the provisions above and
replace them with the notice and other provisions required by the GPL.
If you do not delete the provisions above, a recipient may use your version
of this file under either the MPL or the GPL.
-------------------------------------------------------------------------------}
unit SynGutterCodeFolding;
{$I synedit.inc}
interface
uses
SysUtils, Classes, StrUtils, Controls, Graphics, Menus, LCLIntf,
SynGutterBase, SynEditMiscProcs, SynEditFoldedView, SynEditMouseCmds,
SynEditHighlighterFoldBase, SynEditMiscClasses, LazSynEditText, LCLType,
ImgList, Forms;
type
{ TSynEditMouseActionsGutterFold }
TSynEditMouseActionsGutterFold = class(TSynEditMouseInternalActions)
protected
procedure InitForOptions(AnOptions: TSynEditorMouseOptions); override;
end;
// Line with [-] => ALL nodes expanded
{ TSynEditMouseActionsGutterFoldExpanded }
TSynEditMouseActionsGutterFoldExpanded = class(TSynEditMouseInternalActions)
protected
procedure InitForOptions(AnOptions: TSynEditorMouseOptions); override;
end;
// Line with [+] => at LEAST ONE node collapsed
{ TSynEditMouseActionsGutterFoldCollapsed }
TSynEditMouseActionsGutterFoldCollapsed = class(TSynEditMouseInternalActions)
protected
procedure InitForOptions(AnOptions: TSynEditorMouseOptions); override;
end;
TDrawNodeSymbolOptions = set of (nsoSubtype, nsoLostHl, nsoBlockSel);
TSynGutterImageList = class(TImageList)
public
InitPPI: Integer;
end;
{ TSynGutterCodeFolding }
TSynGutterCodeFolding = class(TSynGutterPartBase)
private
const cNodeOffset = 1;
procedure CaretChanged(Sender: TObject);
procedure ColorChanged(Sender: TObject);
procedure DoDecPaintLock(Sender: TObject);
procedure DoHighlightChanged(Sender: TSynEditStrings; aIndex,
aCount: Integer);
procedure DoIncPaintLock(Sender: TObject);
private
FMarkupInfoCurrentFold, FMarkupInfoCurrentFoldInternal: TSynSelectedColor;
FMouseActionsCollapsed: TSynEditMouseInternalActions;
FMouseActionsExpanded: TSynEditMouseInternalActions;
FPopUp: TPopupMenu;
FMenuInf: Array of TFoldViewNodeInfo;
FIsFoldHidePreviousLine: Boolean;
FPopUpImageList: TSynGutterImageList;
FReversePopMenuOrder: Boolean;
FPpiPenWidth: Integer;
procedure FPopUpOnPopup(Sender: TObject);
function GetFoldView: TSynEditFoldedView;
function GetMouseActionsCollapsed: TSynEditMouseActions;
function GetMouseActionsExpanded: TSynEditMouseActions;
procedure SetMarkupInfoCurrentFold(AValue: TSynSelectedColor);
procedure SetMouseActionsCollapsed(const AValue: TSynEditMouseActions);
procedure SetMouseActionsExpanded(const AValue: TSynEditMouseActions);
function FoldTypeForLine(AScreenLine: Integer): TSynEditFoldLineCapability;
function IsFoldHidePreviousLine(AScreenLine: Integer): Boolean;
function IsSingleLineHide(AScreenLine: Integer): Boolean;
procedure InitPopUpImageList(const APPI: Integer);
procedure DrawNodeSymbol(Canvas: TCanvas; Rect: TRect;
NodeType: TSynEditFoldLineCapability;
SubType: TDrawNodeSymbolOptions);
private
FPaintLock: Integer;
FNeedInnerFoldRange: Boolean;
FFirstInvalidLine, FLastInvalidLine: integer;
FInnerFoldStart, FInnerFoldEnd, FInnerFoldCaretY: integer;
procedure UpdateInnerFoldRange;
protected
procedure UpdateInternalColors; override;
function PreferedWidth: Integer; override;
procedure CreatePopUpMenuEntries(var APopUp: TPopupMenu; ALine: Integer); virtual;
procedure PopClicked(Sender: TObject);
function CreateMouseActions: TSynEditMouseInternalActions; override;
procedure SetWidth(const AValue: integer); override;
property FoldView: TSynEditFoldedView read GetFoldView;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure ScalePPI(const AScaleFactor: Double); override;
procedure Paint(Canvas: TCanvas; AClip: TRect; FirstLine, LastLine: integer);
override;
procedure DoOnGutterClick(X, Y: integer); override;
function MaybeHandleMouseAction(var AnInfo: TSynEditMouseActionInfo;
HandleActionProc: TSynEditMouseActionHandler): Boolean; override;
function DoHandleMouseAction(AnAction: TSynEditMouseAction;
var AnInfo: TSynEditMouseActionInfo): Boolean; override;
procedure ResetMouseActions; override; // set mouse-actions according to current Options / may clear them
published
property MarkupInfo;
property MarkupInfoCurrentLine;
property MarkupInfoCurrentFold: TSynSelectedColor read FMarkupInfoCurrentFold write SetMarkupInfoCurrentFold;
property MouseActionsExpanded: TSynEditMouseActions
read GetMouseActionsExpanded write SetMouseActionsExpanded;
property MouseActionsCollapsed: TSynEditMouseActions
read GetMouseActionsCollapsed write SetMouseActionsCollapsed;
property ReversePopMenuOrder: Boolean
read FReversePopMenuOrder write FReversePopMenuOrder default True;
end;
implementation
var
GlobalPopUpImageList: TSynGutterImageList = nil;
{ TSynGutterCodeFolding }
procedure TSynGutterCodeFolding.SetMouseActionsCollapsed(const AValue: TSynEditMouseActions);
begin
FMouseActionsCollapsed.UserActions := AValue;
end;
function TSynGutterCodeFolding.GetMouseActionsCollapsed: TSynEditMouseActions;
begin
Result := FMouseActionsCollapsed.UserActions;
end;
function TSynGutterCodeFolding.GetMouseActionsExpanded: TSynEditMouseActions;
begin
Result := FMouseActionsExpanded.UserActions;
end;
procedure TSynGutterCodeFolding.SetMarkupInfoCurrentFold(
AValue: TSynSelectedColor);
begin
FMarkupInfoCurrentFold.Assign(AValue);
end;
procedure TSynGutterCodeFolding.UpdateInternalColors;
begin
inherited UpdateInternalColors;
FMarkupInfoCurrentFoldInternal.Assign(FMarkupInfoCurrentFold);
if FMarkupInfoCurrentFoldInternal.Foreground = clNone then FMarkupInfoCurrentFoldInternal.Foreground := MarkupInfo.Foreground;
if FMarkupInfoCurrentFoldInternal.FrameColor = clNone then FMarkupInfoCurrentFoldInternal.FrameColor := MarkupInfo.FrameColor;
FInnerFoldStart := -1;
FInnerFoldCaretY := -1;
UpdateInnerFoldRange;
end;
procedure TSynGutterCodeFolding.SetMouseActionsExpanded(const AValue: TSynEditMouseActions);
begin
FMouseActionsExpanded.UserActions := AValue;
end;
function TSynGutterCodeFolding.FoldTypeForLine(AScreenLine: Integer): TSynEditFoldLineCapability;
var
tmp, tmp2: TSynEditFoldLineCapabilities;
begin
tmp := FoldView.FoldType[AScreenLine];
tmp2 := FoldView.FoldType[AScreenLine-1];
FIsFoldHidePreviousLine := False;
if (AScreenLine = 0) and (ToIdx(GutterArea.TextArea.TopLine) = 0) and
(cfCollapsedHide in tmp2)
then begin
Result := cfCollapsedHide;
FIsFoldHidePreviousLine := True;
// exit
end
//if tmp * [cfHideStart, cfFoldStart, cfCollapsedFold] = [cfHideStart, cfFoldStart, cfCollapsedFold]
// then Result := cfHideStart
else if cfCollapsedFold in tmp then Result := cfCollapsedFold
else if cfCollapsedHide in tmp then Result := cfCollapsedHide
else if cfFoldStart in tmp then Result := cfFoldStart
else if cfHideStart in tmp then Result := cfHideStart
else if cfFoldEnd in tmp then Result := cfFoldEnd
else if cfFoldBody in tmp then Result := cfFoldBody
else
Result := cfNone;
if (Result in [cfCollapsedFold, cfCollapsedHide, cfFoldStart]) and
(cfHideStart in tmp) and
(fncBlockSelection in FoldView.FoldClasifications[AScreenLine])
then begin
Result := cfHideStart;
end;
if (Result in [cfFoldBody, cfFoldEnd]) and
not(fncBlockSelection in FoldView.FoldClasifications[AScreenLine-1])
then begin
tmp := FoldView.FoldType[AScreenLine - 1];
if tmp * [cfHideStart, cfFoldStart, cfCollapsedFold, cfCollapsedHide]
= [cfHideStart, cfFoldStart]
then begin
FIsFoldHidePreviousLine := True;
Result := cfHideStart // hide for previous line
end;
end;
end;
procedure TSynGutterCodeFolding.CaretChanged(Sender: TObject);
begin
if FInnerFoldCaretY >= 0 then begin
if (FFirstInvalidLine < 0) then begin
FFirstInvalidLine := FInnerFoldCaretY;
FLastInvalidLine := FInnerFoldCaretY;
end
else begin
if FFirstInvalidLine > FInnerFoldCaretY then
FFirstInvalidLine := FInnerFoldCaretY;
if FLastInvalidLine < FInnerFoldCaretY then
FLastInvalidLine := FInnerFoldCaretY;
end;
end;
UpdateInnerFoldRange;
end;
procedure TSynGutterCodeFolding.ColorChanged(Sender: TObject);
begin
UpdateInternalColors;
end;
procedure TSynGutterCodeFolding.DoDecPaintLock(Sender: TObject);
begin
dec(FPaintLock);
if FPaintLock = 0 then begin
if FNeedInnerFoldRange then
UpdateInnerFoldRange;
end;
end;
procedure TSynGutterCodeFolding.DoHighlightChanged(Sender: TSynEditStrings;
aIndex, aCount: Integer);
begin
if (FFirstInvalidLine < 0) then begin
FFirstInvalidLine := aIndex;
FLastInvalidLine := aIndex+aCount-1;
end
else begin
if FFirstInvalidLine > aIndex then
FFirstInvalidLine := aIndex;
if FLastInvalidLine < aIndex+aCount-1 then
FLastInvalidLine := aIndex+aCount-1;
end;
UpdateInnerFoldRange;
end;
procedure TSynGutterCodeFolding.DoIncPaintLock(Sender: TObject);
begin
inc(FPaintLock);
end;
procedure TSynGutterCodeFolding.FPopUpOnPopup(Sender: TObject);
var
MonitorPPI: Integer;
begin
MonitorPPI := Screen.MonitorFromPoint(FPopUp.PopupPoint).PixelsPerInch;
if (FPopUpImageList.Count=0) or (FPopUpImageList.InitPPI<>MonitorPPI) then
InitPopUpImageList(MonitorPPI);
end;
function TSynGutterCodeFolding.GetFoldView: TSynEditFoldedView;
begin
Result := TSynEditFoldedView(FoldedTextBuffer);
end;
function TSynGutterCodeFolding.IsFoldHidePreviousLine(AScreenLine: Integer): Boolean;
begin
FoldTypeForLine(AScreenLine);
Result := FIsFoldHidePreviousLine;
end;
function TSynGutterCodeFolding.IsSingleLineHide(AScreenLine: Integer): Boolean;
var
tmp: TSynEditFoldLineCapabilities;
begin
Result := False;
tmp := FoldView.FoldType[AScreenLine];
if tmp * [cfHideStart, cfFoldStart, cfCollapsedFold] =
[cfHideStart, cfFoldStart, cfCollapsedFold]
then
Result := True;
if cfSingleLineHide in tmp then
Result := True;
end;
procedure TSynGutterCodeFolding.InitPopUpImageList(const APPI: Integer);
var
img: TBitmap;
R: TRect;
procedure NewImg;
begin
img := TBitmap.Create;
img.SetSize(FPopUpImageList.Width, FPopUpImageList.Height);
img.Canvas.Brush.Color := clWhite;
img.Canvas.FillRect(img.Canvas.ClipRect);
img.Canvas.Pen.Color := clBlack;
img.Canvas.Pen.Width := 1;
end;
begin
FPopUpImageList.DrawingStyle := dsTransparent;
FPopUpImageList.Clear;
FPopUpImageList.Width := MulDiv(16, APPI, 96);
FPopUpImageList.Height := FPopUpImageList.Width;
FPopUpImageList.InitPPI := APPI;
R.Left := MulDiv(3, APPI, 96);
R.Top := R.Left;
R.Right := MulDiv(14, APPI, 96);
R.Bottom := R.Right;
NewImg;
DrawNodeSymbol(img.Canvas, R, cfFoldStart, []); // [-]
FPopUpImageList.AddMasked(img, img.TransparentColor);
img.Free;
NewImg;
DrawNodeSymbol(img.Canvas, R, cfCollapsedFold, []); // [+]
FPopUpImageList.AddMasked(img, img.TransparentColor);
img.Free;
NewImg;
DrawNodeSymbol(img.Canvas, R, cfHideStart, []); // [.]
FPopUpImageList.AddMasked(img, img.TransparentColor);
img.Free;
NewImg;
DrawNodeSymbol(img.Canvas, R, cfCollapsedHide, []); // [v]
FPopUpImageList.AddMasked(img, img.TransparentColor);
img.Free;
end;
procedure TSynGutterCodeFolding.CreatePopUpMenuEntries(var APopUp: TPopupMenu;
ALine: Integer);
function AddPopUpItem(const ACaption: String): TMenuItem;
begin
Result := TMenuItem.Create(APopUp);
Result.OnClick := @PopClicked;
Result.Caption := ACaption;
Result.GlyphShowMode := gsmAlways;
if FReversePopMenuOrder then
APopUp.Items.Add(Result)
else
APopUp.Items.Insert(0, Result);
end;
var
c, i: Integer;
inf: TFoldViewNodeInfo;
m: TMenuItem;
s, s2: String;
begin
if APopUp = nil then begin
if not assigned(GlobalPopUpImageList) then begin
// Todo: Add a flag, when using global list, or make list ref-counted
// See Destroy
GlobalPopUpImageList := TSynGutterImageList.Create(nil);
FPopUpImageList := GlobalPopUpImageList;
end
else
FPopUpImageList := GlobalPopUpImageList;
APopUp := TPopupMenu.Create(nil);
APopUp.Images := FPopUpImageList;
APopUp.OnPopup := @FPopUpOnPopup;
end
else
APopUp.Items.Clear;
c := Min(100, FoldView.OpenFoldCount(ALine-1));
if c > 0 then begin
SetLength(FMenuInf,c);
for i := c-1 downto 0 do begin
inf := FoldView.OpenFoldInfo(ALine-1, i);
if sfaInvalid in inf.HNode.FoldAction then
continue;
FMenuInf[i] := inf;
if (i < c-1) and (FMenuInf[i+1].LineNum = ALine) and (inf.LineNum <> ALine)
then begin
m := AddPopUpItem(cLineCaption);
m.Tag := -1;
end;
s := copy(inf.Text, 1, inf.HNode.LogXStart-1);
if length(s) > 30 then s := copy(s,1,15) + '...' + copy(s, inf.HNode.LogXStart-11,10);
s := s + copy(inf.Text, inf.HNode.LogXStart, 30 + (30 - length(s)));
s2 := '';
if inf.OpenCount > 1 then
s2 := format(' (%d/%d)', [inf.ColIndex+1, inf.OpenCount]);
if inf.IsFold then begin
m := AddPopUpItem(format('%4d %s '#9'%s', [ inf.LineNum, inf.Keyword+s2+':', s]));
m.Tag := i;
if inf.IsHide then
m.ImageIndex := 3
else
m.ImageIndex := 1;
end
else begin
if sfaFoldFold in inf.HNode.FoldAction then begin
m := AddPopUpItem(format('%4d %s '#9'%s', [ inf.LineNum, inf.Keyword+s2+':', s]));
m.Tag := i;
m.ImageIndex := 0;
end;
if sfaFoldHide in inf.HNode.FoldAction then begin
if sfaFoldFold in inf.HNode.FoldAction then
m := AddPopUpItem(format('%4d %s ', [ inf.LineNum, inf.Keyword+s2 ]))
else
m := AddPopUpItem(format('%4d %s '#9'%s', [ inf.LineNum, inf.Keyword+s2+':', s]));
m.Tag := i;
m.ImageIndex := 2;
end;
end;
end;
end;
end;
constructor TSynGutterCodeFolding.Create(AOwner: TComponent);
begin
FPpiPenWidth := 1;
FReversePopMenuOrder := true;
FMouseActionsExpanded := TSynEditMouseActionsGutterFoldExpanded.Create(self);
FMouseActionsCollapsed := TSynEditMouseActionsGutterFoldCollapsed.Create(self);
FMarkupInfoCurrentFold := TSynSelectedColor.Create;
FMarkupInfoCurrentFoldInternal := TSynSelectedColor.Create;
FInnerFoldCaretY := -1;
FInnerFoldStart := -1;
inherited Create(AOwner);
MarkupInfo.Background := clNone;
MarkupInfo.Foreground := clDkGray;
MarkupInfo.FrameColor := clNone;
CaretObj.AddChangeHandler(@CaretChanged);
ViewedTextBuffer.AddChangeHandler(senrHighlightChanged, @DoHighlightChanged);
ViewedTextBuffer.AddNotifyHandler(senrBeforeDecPaintLock, @DoIncPaintLock);
ViewedTextBuffer.AddNotifyHandler(senrAfterDecPaintLock, @DoDecPaintLock);
FMarkupInfoCurrentFold.OnChange := @ColorChanged;
UpdateInternalColors;
end;
destructor TSynGutterCodeFolding.Destroy;
begin
CaretObj.RemoveChangeHandler(@CaretChanged);
ViewedTextBuffer.RemoveHandlers(self);
FreeAndNil(FMarkupInfoCurrentFold);
FreeAndNil(FMarkupInfoCurrentFoldInternal);
FreeAndNil(FMouseActionsCollapsed);
FreeAndNil(FMouseActionsExpanded);
FreeAndNil(FPopUp);
// Todo: Currently only the global list is used. No Free is ever needed.
// See: CreatePopUpMenuEntries
// SynEdit could be destroyed, after finalization of this unit, then the condition would fail
//if FPopUpImageList <> GlobalPopUpImageList then
// FreeAndNil(FPopUpImageList);
inherited Destroy;
end;
procedure TSynGutterCodeFolding.ScalePPI(const AScaleFactor: Double);
begin
inherited ScalePPI(AScaleFactor);
FPpiPenWidth := Max(1, Scale96ToFont(1));
end;
procedure TSynGutterCodeFolding.PopClicked(Sender: TObject);
var
inf: TFoldViewNodeInfo;
begin
inf := FMenuInf[(Sender as TMenuItem).tag];
if inf.LineNum < 0 then exit;
case (Sender as TMenuItem).ImageIndex of
0: FoldView.FoldAtTextIndex(inf.LineNum-1, inf.ColIndex, 1, False);
1: FoldView.UnFoldAtTextIndex(inf.LineNum-1, inf.ColIndex, 1, False);
2: FoldView.FoldAtTextIndex(inf.LineNum-1, inf.ColIndex, 1, False, 0);
3: FoldView.UnFoldAtTextIndex(inf.LineNum-1, inf.ColIndex, 1, False, 0);
end;
end;
function TSynGutterCodeFolding.CreateMouseActions: TSynEditMouseInternalActions;
begin
Result := TSynEditMouseActionsGutterFold.Create(self);
end;
procedure TSynGutterCodeFolding.SetWidth(const AValue: integer);
begin
if (Width=AValue) or (AutoSize) then exit;
inherited SetWidth(AValue);
FPpiPenWidth := Max(1, Scale96ToFont(1));
end;
procedure TSynGutterCodeFolding.DoOnGutterClick(X, Y : integer);
begin
// Do Nothing
end;
function TSynGutterCodeFolding.MaybeHandleMouseAction(var AnInfo: TSynEditMouseActionInfo;
HandleActionProc: TSynEditMouseActionHandler): Boolean;
var
tmp: TSynEditFoldLineCapability;
ScrLine: Integer;
begin
Result := False;
ScrLine := ToIdx(AnInfo.NewCaret.ViewedLinePos) - ToIdx(GutterArea.TextArea.TopLine);
tmp := FoldTypeForLine(ScrLine);
case tmp of
cfCollapsedFold, cfCollapsedHide:
Result := HandleActionProc(FMouseActionsCollapsed.GetActionsForOptions(SynEdit.MouseOptions), AnInfo);
cfFoldStart, cfHideStart:
Result := HandleActionProc(FMouseActionsExpanded.GetActionsForOptions(SynEdit.MouseOptions), AnInfo);
end;
if not Result then
Result := inherited MaybeHandleMouseAction(AnInfo, HandleActionProc);
end;
function TSynGutterCodeFolding.DoHandleMouseAction(AnAction: TSynEditMouseAction;
var AnInfo: TSynEditMouseActionInfo): Boolean;
var
i, line, ScrLine: Integer;
ACommand: Word;
KeepVisible: Integer;
begin
Result := False;
if AnAction = nil then exit;
ACommand := AnAction.Command;
if (ACommand = emcNone) then exit;
line := AnInfo.NewCaret.LinePos;
ScrLine := ToIdx(AnInfo.NewCaret.ViewedLinePos) - ToIdx(GutterArea.TextArea.TopLine);
// TODO: Keepvisible is incorrect, if the line can fold AND unfold, and the action does not match the symbol
KeepVisible := 1;
if (FoldTypeForLine(ScrLine) = cfHideStart) and (ACommand <> emcCodeFoldExpand) then
KeepVisible := 0;
if (FoldTypeForLine(ScrLine) = cfCollapsedHide) then begin
if IsFoldHidePreviousLine(ScrLine) then
line := ToPos(ViewedTextBuffer.DisplayView.ViewToTextIndex(ScrLine - 1 + ToIdx(GutterArea.TextArea.TopLine)));
inc(line);
KeepVisible := 0;
end
else
if IsFoldHidePreviousLine(ScrLine) then dec(line);
Result := True;
case ACommand of
emcCodeFoldCollaps:
begin
case AnAction.Option of
emcoCodeFoldCollapsOne:
begin
FoldView.FoldAtTextIndex(Line-1, -1, 1, True, KeepVisible);
end;
emcoCodeFoldCollapsAll:
begin
FoldView.FoldAtTextIndex(Line-1, -1, 0, False, KeepVisible);
end;
emcoCodeFoldCollapsAtCaret:
// Keyword at mouseclick/caret position
begin
i := FoldView.LogicalPosToNodeIndex(Line-1, AnInfo.NewCaret.BytePos, False);
if i >= 0 then
FoldView.FoldAtTextIndex(Line-1, i, 1, False, KeepVisible)
else
Result := False;
end;
emcoCodeFoldCollapsPreCaret:
// mouseclick/caret position anywhere inside the fold
begin
i := FoldView.LogicalPosToNodeIndex(Line-1, AnInfo.NewCaret.BytePos, True);
if i >= 0 then
FoldView.FoldAtTextIndex(Line-1, i, 1, False, KeepVisible)
else begin
i := FoldView.ExpandedLineForBlockAtLine(Line);
if i > 0 then
FoldView.FoldAtTextIndex(i-1, -1, 1, True, KeepVisible);
end;
end;
end;
end;
emcCodeFoldExpand:
begin
case AnAction.Option of
emcoCodeFoldExpandOne:
FoldView.UnFoldAtTextIndex(line-1, 0, 1, True, KeepVisible);
emcoCodeFoldExpandAll:
FoldView.UnFoldAtTextIndex(line-1, -1, 0, False, KeepVisible);
end;
end;
emcCodeFoldContextMenu:
begin
CreatePopUpMenuEntries(FPopUp, line);
AnInfo.ActionResult.PopUpMenu := FPopUp;
end;
else
Result := False;
end;
end;
procedure TSynGutterCodeFolding.ResetMouseActions;
begin
inherited;
FMouseActionsExpanded.Options := SynEdit.MouseOptions;
FMouseActionsExpanded.ResetUserActions;
FMouseActionsCollapsed.Options := SynEdit.MouseOptions;
FMouseActionsCollapsed.ResetUserActions;
end;
procedure TSynGutterCodeFolding.DrawNodeSymbol(Canvas: TCanvas; Rect: TRect;
NodeType: TSynEditFoldLineCapability; SubType: TDrawNodeSymbolOptions);
var
Points: Array [0..3] of TPoint;
X, Y, LineBorder, c, LineBorderEnd: Integer;
AliasMode: TAntialiasingMode;
OdlCosmetic: Boolean;
begin
AliasMode := Canvas.AntialiasingMode;
Canvas.AntialiasingMode:=amOff;
OdlCosmetic := Canvas.Pen.Cosmetic;
if nsoLostHl in SubType then begin
Canvas.Pen.Style := psDot;
Canvas.Pen.Cosmetic := False;
end;
if nsoBlockSel in SubType then begin
Canvas.Pen.Style := psDash;
Canvas.Pen.Cosmetic := False;
end;
Canvas.Pen.JoinStyle := pjsMiter;
Canvas.Rectangle(Rect);
Canvas.Pen.Style := psSolid;
Canvas.Pen.Cosmetic := OdlCosmetic;
c := Canvas.Pen.Width div 2;
LineBorder := Round((Rect.Right-Rect.Left) / 5) + c;
LineBorderEnd := LineBorder + c;
X := (Rect.Left - 1 + Rect.Right) div 2;
Y := (Rect.Top - 1 + Rect.Bottom) div 2;
case NodeType of
cfFoldStart:
begin
// [-]
Canvas.MoveTo(Rect.Left + LineBorder, Y);
Canvas.LineTo(Rect.Right - LineBorderEnd, Y);
end;
cfHideStart:
begin
// [.]
Canvas.MoveTo(X, Y);
Canvas.LineTo(X + 1, Y);
end;
cfCollapsedFold:
begin
// [+]
Canvas.MoveTo(Rect.Left + LineBorder, Y);
Canvas.LineTo(Rect.Right - LineBorderEnd, Y);
Canvas.MoveTo(X, Rect.Top + LineBorder);
Canvas.LineTo(X, Rect.Bottom - LineBorderEnd);
end;
cfCollapsedHide:
begin
case nsoSubtype in SubType of
false: begin
// [v]
Points[0].X := X;
Points[0].y := Rect.Bottom - LineBorder - 1;
Points[1].X := Rect.Left + LineBorder;
Points[1].y := Y;
Points[2].X := Rect.Right - LineBorder - 1;
Points[2].y := Y;
Points[3] := Points[0];
end;
true: begin
// [v]
Points[0].X := X;
Points[0].y := Rect.Top + LineBorder;
Points[1].X := Rect.Left + LineBorder;
Points[1].y := Y;
Points[2].X := Rect.Right - LineBorder - 1;
Points[2].y := Y;
Points[3] := Points[0];
end;
end;
Canvas.Polygon(Points);
end;
end;
Canvas.AntialiasingMode := AliasMode;
end;
procedure TSynGutterCodeFolding.UpdateInnerFoldRange;
var
hl: TSynCustomFoldHighlighter;
y, x, lvl, s, e, ndMin, ndCur, y2, i, c, mlvl: Integer;
ndList: TLazSynFoldNodeInfoList;
nd: TSynFoldNodeInfo;
act: TSynFoldActions;
HasBefore, HasAfter: Boolean;
begin
FNeedInnerFoldRange := FPaintLock > 0;
if FNeedInnerFoldRange then
exit;
if not (SynEdit.Highlighter is TSynCustomFoldHighlighter) then
exit;
hl := TSynCustomFoldHighlighter(SynEdit.Highlighter);
hl.CurrentLines := ViewedTextBuffer;
if hl.NeedScan then
exit;
if not FMarkupInfoCurrentFold.IsEnabled then begin
FFirstInvalidLine := -1;
FInnerFoldStart := -1;
exit;
end;
y := ToIdx(SynEdit.CaretY);
if (FInnerFoldStart >= 0) and
(FLastInvalidLine < FInnerFoldStart) or (FFirstInvalidLine > FInnerFoldEnd) and
(FInnerFoldCaretY = y)
then begin
FFirstInvalidLine := -1;
exit;
end;
FInnerFoldCaretY := y;
lvl := hl.FoldBlockMinLevel(y, 1);
s := lvl;
if y > 0 then
s := hl.FoldBlockEndLevel(y-1, 1);
e := hl.FoldBlockEndLevel(y, 1);
if (s > lvl) or (e > lvl) then begin
ndList := hl.FoldNodeInfo[y];
ndList.ActionFilter := []; //[sfaOpen, sfaClose];
ndList.GroupFilter := 1;
act := [];
ndCur := e;
ndMin := e;
mlvl := lvl;
x := ToIdx(SynEdit.LogicalCaretXY.X);
i := ndList.Count;
while i > 0 do begin
dec(i);
nd := ndList[i];
act := nd.FoldAction;
if act * [sfaInvalid, sfaOneLineOpen, sfaOneLineClose] <> [] then
continue;
if act * [sfaFold, sfaFoldFold, sfaFoldHide] = [] then
continue;
if (sfaCloseForNextLine in act) then begin
inc(ndCur);
break;
end;
if not ((nd.LogXEnd = 0) and (nd.LogXStart <> 0)) then
begin
//continue;
if sfaClose in nd.FoldAction then begin
if nd.LogXEnd < x then
break;
end
else
if nd.LogXEnd <= x then
break;
end;
ndCur := nd.FoldLvlEnd;
if ndCur < ndMin then
ndMin := ndCur;
if sfaClose in nd.FoldAction then begin
if nd.LogXEnd > 0 then begin
if nd.LogXEnd -1 < x then
break;
end
else
if nd.LogXStart < x then
break;
end
else
if nd.LogXStart <= x then
break;
ndCur := nd.FoldLvlStart;
if ndCur < ndMin then
ndMin := ndCur;
end;
lvl := ndCur;
HasBefore := (ndCur > ndMin) or (lvl = mlvl);
HasAfter := ((not HasBefore) or (lvl = mlvl));
end
else begin
HasBefore := True;
HasAfter := True;
end;
FFirstInvalidLine := -1;
if lvl = 0 then begin
if FInnerFoldStart >= 0 then
SynEdit.InvalidateGutterLines(ToPos(FInnerFoldStart), ToPos(FInnerFoldEnd));
FInnerFoldStart := -1;
FInnerFoldEnd := -1;
exit;
end;
y2 := y;
if HasBefore then begin
dec(y2);
while (y2 > 0) and (hl.FoldBlockMinLevel(y2, 1) >= lvl) do
dec(y2);
end;
if FInnerFoldStart <> y2 then begin
if y2 > FInnerFoldStart then
SynEdit.InvalidateGutterLines(ToPos(FInnerFoldStart), ToPos(y2))
else
SynEdit.InvalidateGutterLines(ToPos(y2), ToPos(FInnerFoldStart));
FInnerFoldStart := y2;
end;
y2 := y;
c := SynEdit.Lines.Count-1;
if HasAfter then begin
inc(y2);
while (y2 < c) and (hl.FoldBlockMinLevel(y2, 1) >= lvl) do
inc(y2);
end;
if FInnerFoldEnd <> y2 then begin
if y2 > FInnerFoldEnd then
SynEdit.InvalidateGutterLines(ToPos(FInnerFoldEnd), ToPos(y2))
else
SynEdit.InvalidateGutterLines(ToPos(y2), ToPos(FInnerFoldEnd));
FInnerFoldEnd := y2;
end;
end;
function TSynGutterCodeFolding.PreferedWidth: Integer;
const PrefFullWidth = 10;
begin
Result :=
Max(PrefFullWidth div 2, Min(PrefFullWidth, SynEdit.LineHeight - cNodeOffset));
end;
procedure TSynGutterCodeFolding.Paint(Canvas : TCanvas; AClip : TRect; FirstLine, LastLine : integer);
var
iLine: integer;
rcLine: TRect;
rcCodeFold: TRect;
tmp: TSynEditFoldLineCapability;
LineHeight, TextHeight, LineOffset, HalfBoxSize, aRow: Integer;
CurMarkUp: TSynSelectedColor;
procedure DrawNodeBox(rcCodeFold: TRect; NodeType: TSynEditFoldLineCapability);
var
rcNode: TRect;
ptCenter : TPoint;
isPrevLine: Boolean;
DrawOpts: TDrawNodeSymbolOptions;
c: Integer;
begin
isPrevLine := IsFoldHidePreviousLine(iLine);
LineOffset := 0;
DrawOpts := [];
if fncHighlighterEx in FoldView.FoldClasifications[iLine] then
include(DrawOpts, nsoLostHl)
else
if fncBlockSelection in FoldView.FoldClasifications[iLine] then
include(DrawOpts, nsoBlockSel);
//center of the draw area
ptCenter.X := (rcCodeFold.Left + rcCodeFold.Right) div 2;
ptCenter.Y := Max(HalfBoxSize,
(rcCodeFold.Top + Min(rcCodeFold.Top+TextHeight, rcCodeFold.Bottom)) div 2);
// If belongs to line above, draw at very top
if isPrevLine then
ptCenter.Y := rcCodeFold.Top + (HalfBoxSize) - 1;
c := Canvas.Pen.Width div 2;
//area of drawbox
rcNode.Left := ptCenter.X - (HalfBoxSize) + 1 + c;
rcNode.Right := ptCenter.X + (HalfBoxSize) - c;
rcNode.Top := ptCenter.Y - (HalfBoxSize) + 1 + c;
rcNode.Bottom := ptCenter.Y + (HalfBoxSize) - c;
Canvas.Brush.Style := bsClear;
Canvas.Pen.Color := CurMarkUp.Foreground;
//draw Paragraph end
if isPrevLine and (cfFoldEnd in FoldView.FoldType[iLine]) and
(rcCodeFold.Bottom-1 > rcNode.Bottom)
then begin
Canvas.MoveTo(ptCenter.X, rcNode.Bottom);
Canvas.LineTo(ptCenter.X, rcCodeFold.Bottom-1);
Canvas.LineTo(rcCodeFold.Right, rcCodeFold.Bottom-1);
LineOffset := min(2, (rcCodeFold.Top + rcCodeFold.Bottom) div 2);
end
else
//draw bottom handle to paragraph line
if (cfFoldBody in FoldView.FoldType[iLine + 1]) and
(not IsSingleLineHide(iLine))
then begin
Canvas.MoveTo(ptCenter.X, rcNode.Bottom);
Canvas.LineTo(ptCenter.X, rcCodeFold.Bottom);
end;
if (NodeType in [cfCollapsedFold, cfCollapsedHide]) and
(CurMarkUp.FrameColor <> clNone)
then
Canvas.Pen.Color := CurMarkUp.FrameColor;
if isPrevLine and (NodeType = cfCollapsedHide) then
include(DrawOpts, nsoSubtype);
DrawNodeSymbol(Canvas, rcNode, NodeType, DrawOpts);
Canvas.Pen.Color := CurMarkUp.Foreground;
Canvas.Brush.Style := bsSolid;
end;
procedure DrawParagraphContinue(rcCodeFold: TRect);
var
iCenter : integer;
begin
//center of the draw area
iCenter := (rcCodeFold.Left + rcCodeFold.Right) div 2;
Canvas.Pen.Color := CurMarkUp.Foreground;
Canvas.MoveTo(iCenter, rcCodeFold.Top + LineOffset);
Canvas.LineTo(iCenter, rcCodeFold.Bottom);
LineOffset := 0;
end;
procedure DrawParagraphEnd(rcCodeFold: TRect);
var
X : Integer;
begin
//center of the draw area
X := (rcCodeFold.Left + rcCodeFold.Right) div 2;
Canvas.Pen.Color := CurMarkUp.Foreground;
Canvas.MoveTo(X, rcCodeFold.Top + LineOffset);
Canvas.LineTo(X, rcCodeFold.Bottom - 1);
Canvas.LineTo(rcCodeFold.Right, rcCodeFold.Bottom - 1);
LineOffset := min(2, (rcCodeFold.Top + rcCodeFold.Bottom) div 2);
end;
begin
if not Visible then exit;
LineHeight := SynEdit.LineHeight;
TextHeight := LineHeight - Max(0, SynEdit.ExtraLineSpacing);
LineOffset := 0;
if (FirstLine > 0) and
(FoldView.FoldType[FirstLine-1] - [cfFoldBody] = [cfFoldEnd]) then
LineOffset := 2;
HalfBoxSize := Min(Width, LineHeight - cNodeOffset*2) div 2;
PaintBackground(Canvas, AClip);
with Canvas do
begin
Pen.Color := MarkupInfo.Foreground;
Pen.EndCap := pecSquare;
Pen.Width := Min(Max(1, Min(Width, HalfBoxSize*2 - cNodeOffset*2) div 5), FPpiPenWidth);
rcLine.Bottom := AClip.Top;
for iLine := FirstLine to LastLine do
begin
if FInnerFoldStart >= 0 then begin
aRow := ToIdx(SynEdit.ScreenXYToTextXY(Point(1, ToPos(iLine))).Y);
if (aRow >= FInnerFoldStart) and (aRow <= FInnerFoldEnd) then
CurMarkUp := FMarkupInfoCurrentFoldInternal
else
CurMarkUp := MarkupInfo;
end
else
CurMarkUp := MarkupInfo;
// next line rect
rcLine.Top := rcLine.Bottom;
Inc(rcLine.Bottom, LineHeight);
rcCodeFold.Left := AClip.Left;
rcCodeFold.Right := AClip.Left + self.Width;
rcCodeFold.Top := rcLine.Top;
rcCodeFold.Bottom := rcLine.Bottom;
tmp := FoldTypeForLine(iLine);
case tmp of
cfFoldStart, cfHideStart, cfCollapsedFold, cfCollapsedHide:
DrawNodeBox(rcCodeFold, tmp);
cfFoldBody:
DrawParagraphContinue(rcCodeFold);
cfFoldEnd:
DrawParagraphEnd(rcCodeFold);
else
LineOffset := 0;
end;
end;
end;
end;
{ TSynEditMouseActionsGutterFold }
procedure TSynEditMouseActionsGutterFold.InitForOptions(AnOptions: TSynEditorMouseOptions);
var
rmc: Boolean;
begin
Clear;
rmc := (emRightMouseMovesCursor in AnOptions);
AddCommand(emcNone, False, mbXLeft, ccAny, cdDown, [], []);
AddCommand(emcCodeFoldCollaps, False, mbXMiddle, ccAny, cdDown, [], [ssShift], emcoCodeFoldCollapsOne);
AddCommand(emcCodeFoldCollaps, False, mbXMiddle, ccAny, cdDown, [ssShift], [ssShift], emcoCodeFoldCollapsAll);
AddCommand(emcCodeFoldContextMenu, rmc, mbXRight, ccSingle, cdUp, [], []);
end;
{ TSynEditMouseActionsGutterFoldExpanded }
procedure TSynEditMouseActionsGutterFoldExpanded.InitForOptions(AnOptions: TSynEditorMouseOptions);
begin
Clear;
AddCommand(emcCodeFoldCollaps, False, mbXLeft, ccAny, cdDown, [], [], emcoCodeFoldCollapsOne);
end;
{ TSynEditMouseActionsGutterFoldCollapsed }
procedure TSynEditMouseActionsGutterFoldCollapsed.InitForOptions(AnOptions: TSynEditorMouseOptions);
begin
Clear;
AddCommand(emcCodeFoldExpand, False, mbXLeft, ccAny, cdDown, [ssCtrl], [ssCtrl], emcoCodeFoldExpandOne);
AddCommand(emcCodeFoldExpand, False, mbXLeft, ccAny, cdDown, [], [ssCtrl], emcoCodeFoldExpandAll);
end;
finalization
FreeAndNil(GlobalPopUpImageList);
end.
|