Menu

[r4761]: / branches / parsnip / Src / Lib / SynEdit / SynEditMiscClasses.pas  Maximize  Restore  History

Download this file

1545 lines (1375 with data), 41.4 kB

   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
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
{-------------------------------------------------------------------------------
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.
The Original Code is: SynEditMiscClasses.pas, released 2000-04-07.
The Original Code is based on the mwSupportClasses.pas file from the
mwEdit component suite by Martin Waldenburg and other developers, the Initial
Author of this file is Michael Hieke.
Unicode translation by Maël Hörz.
All Rights Reserved.
Contributors to the SynEdit and mwEdit projects are listed in the
Contributors.txt file.
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.
$Id: SynEditMiscClasses.pas,v 1.35.2.9 2008/09/17 13:59:12 maelh Exp $
You may retrieve the latest version of this file at the SynEdit home page,
located at http://SynEdit.SourceForge.net
Known Issues:
-------------------------------------------------------------------------------}
{$IFNDEF QSYNEDITMISCCLASSES}
unit SynEditMiscClasses;
{$ENDIF}
{$I SynEdit.inc}
interface
uses
{$IFDEF SYN_CLX}
{$IFDEF SYN_LINUX}
Xlib,
{$ENDIF}
Types,
Qt,
QConsts,
QGraphics,
QControls,
QImgList,
QStdCtrls,
QMenus,
kTextDrawer,
QSynEditTypes,
QSynEditKeyConst,
QSynUnicode,
{$ELSE}
Consts,
Windows,
Messages,
Graphics,
Controls,
Forms,
StdCtrls,
Menus,
Registry,
SynEditTypes,
SynEditKeyConst,
SynUnicode,
{$ENDIF}
{$IFDEF SYN_COMPILER_4_UP}
Math,
{$ENDIF}
Classes,
SysUtils;
type
TSynSelectedColor = class(TPersistent)
private
fBG: TColor;
fFG: TColor;
fOnChange: TNotifyEvent;
procedure SetBG(Value: TColor);
procedure SetFG(Value: TColor);
public
constructor Create;
procedure Assign(Source: TPersistent); override;
published
property Background: TColor read fBG write SetBG default clHighLight;
property Foreground: TColor read fFG write SetFG default clHighLightText;
property OnChange: TNotifyEvent read fOnChange write fOnChange;
end;
TSynGutterBorderStyle = (gbsNone, gbsMiddle, gbsRight);
TSynGutter = class(TPersistent)
private
fFont: TFont;
fColor: TColor;
fBorderColor: TColor;
fWidth: integer;
fShowLineNumbers: boolean;
fDigitCount: integer;
fLeadingZeros: boolean;
fZeroStart: boolean;
fLeftOffset: integer;
fRightOffset: integer;
fOnChange: TNotifyEvent;
fCursor: TCursor;
fVisible: boolean;
fUseFontStyle: boolean;
fAutoSize: boolean;
fAutoSizeDigitCount: integer;
fBorderStyle: TSynGutterBorderStyle;
fLineNumberStart: Integer;
fGradient: Boolean;
fGradientStartColor: TColor;
fGradientEndColor: TColor;
fGradientSteps: Integer;
procedure SetAutoSize(const Value: boolean);
procedure SetBorderColor(const Value: TColor);
procedure SetColor(const Value: TColor);
procedure SetDigitCount(Value: integer);
procedure SetLeadingZeros(const Value: boolean);
procedure SetLeftOffset(Value: integer);
procedure SetRightOffset(Value: integer);
procedure SetShowLineNumbers(const Value: boolean);
procedure SetUseFontStyle(Value: boolean);
procedure SetVisible(Value: boolean);
procedure SetWidth(Value: integer);
procedure SetZeroStart(const Value: boolean);
procedure SetFont(Value: TFont);
procedure OnFontChange(Sender: TObject);
procedure SetBorderStyle(const Value: TSynGutterBorderStyle);
procedure SetLineNumberStart(const Value: Integer);
procedure SetGradient(const Value: Boolean);
procedure SetGradientStartColor(const Value: TColor);
procedure SetGradientEndColor(const Value: TColor);
procedure SetGradientSteps(const Value: Integer);
function GetWidth: integer;
public
constructor Create;
destructor Destroy; override;
procedure Assign(Source: TPersistent); override;
procedure AutoSizeDigitCount(LinesCount: integer);
function FormatLineNumber(Line: integer): string;
function RealGutterWidth(CharWidth: integer): integer;
published
property AutoSize: boolean read fAutoSize write SetAutoSize default FALSE;
property BorderStyle: TSynGutterBorderStyle read fBorderStyle
write SetBorderStyle default gbsMiddle;
property Color: TColor read fColor write SetColor default clBtnFace;
property BorderColor: TColor read fBorderColor write SetBorderColor default clWindow;
property Cursor: TCursor read fCursor write fCursor default crDefault;
property DigitCount: integer read fDigitCount write SetDigitCount
default 4;
property Font: TFont read fFont write SetFont;
property LeadingZeros: boolean read fLeadingZeros write SetLeadingZeros
default FALSE;
property LeftOffset: integer read fLeftOffset write SetLeftOffset
default 16;
property RightOffset: integer read fRightOffset write SetRightOffset
default 2;
property ShowLineNumbers: boolean read fShowLineNumbers
write SetShowLineNumbers default FALSE;
property UseFontStyle: boolean read fUseFontStyle write SetUseFontStyle
default True;
property Visible: boolean read fVisible write SetVisible default TRUE;
property Width: integer read GetWidth write SetWidth default 30;
property ZeroStart: boolean read fZeroStart write SetZeroStart
default False;
property LineNumberStart: Integer read fLineNumberStart write SetLineNumberStart default 1;
property Gradient: Boolean read fGradient write SetGradient default False;
property GradientStartColor: TColor read fGradientStartColor write SetGradientStartColor default clWindow;
property GradientEndColor: TColor read fGradientEndColor write SetGradientEndColor default clBtnFace;
property GradientSteps: Integer read fGradientSteps write SetGradientSteps default 48;
property OnChange: TNotifyEvent read fOnChange write fOnChange;
end;
TSynBookMarkOpt = class(TPersistent)
private
fBookmarkImages: TImageList;
fDrawBookmarksFirst: boolean;
fEnableKeys: Boolean;
fGlyphsVisible: Boolean;
fLeftMargin: Integer;
fOwner: TComponent;
fXoffset: integer;
fOnChange: TNotifyEvent;
procedure SetBookmarkImages(const Value: TImageList);
procedure SetDrawBookmarksFirst(Value: boolean);
procedure SetGlyphsVisible(Value: Boolean);
procedure SetLeftMargin(Value: Integer);
procedure SetXOffset(Value: integer);
public
constructor Create(AOwner: TComponent);
procedure Assign(Source: TPersistent); override;
published
property BookmarkImages: TImageList
read fBookmarkImages write SetBookmarkImages;
property DrawBookmarksFirst: boolean read fDrawBookmarksFirst
write SetDrawBookmarksFirst default True;
property EnableKeys: Boolean
read fEnableKeys write fEnableKeys default True;
property GlyphsVisible: Boolean
read fGlyphsVisible write SetGlyphsVisible default True;
property LeftMargin: Integer read fLeftMargin write SetLeftMargin default 2;
property Xoffset: integer read fXoffset write SetXOffset default 12;
property OnChange: TNotifyEvent read fOnChange write fOnChange;
end;
TSynGlyph = class(TPersistent)
private
fVisible: boolean;
fInternalGlyph, fGlyph: TBitmap;
fInternalMaskColor, fMaskColor: TColor;
fOnChange: TNotifyEvent;
procedure SetGlyph(Value: TBitmap);
procedure GlyphChange(Sender: TObject);
procedure SetMaskColor(Value: TColor);
procedure SetVisible(Value: boolean);
function GetWidth : integer;
function GetHeight : integer;
public
constructor Create(aModule: THandle; const aName: string; aMaskColor: TColor);
destructor Destroy; override;
procedure Assign(aSource: TPersistent); override;
procedure Draw(aCanvas: TCanvas; aX, aY, aLineHeight: integer);
property Width : integer read GetWidth;
property Height : integer read GetHeight;
published
property Glyph: TBitmap read fGlyph write SetGlyph;
property MaskColor: TColor read fMaskColor write SetMaskColor default clNone;
property Visible: boolean read fVisible write SetVisible default True;
property OnChange: TNotifyEvent read fOnChange write fOnChange;
end;
{ TSynMethodChain }
ESynMethodChain = class(Exception);
TSynExceptionEvent = procedure (Sender: TObject; E: Exception;
var DoContinue: Boolean) of object;
TSynMethodChain = class(TObject)
private
FNotifyProcs: TList;
FExceptionHandler: TSynExceptionEvent;
protected
procedure DoFire(const AEvent: TMethod); virtual; abstract;
function DoHandleException(E: Exception): Boolean; virtual;
property ExceptionHandler: TSynExceptionEvent read FExceptionHandler
write FExceptionHandler;
public
constructor Create; virtual;
destructor Destroy; override;
procedure Add(AEvent: TMethod);
procedure Remove(AEvent: TMethod);
procedure Fire;
end;
{ TSynNotifyEventChain }
TSynNotifyEventChain = class(TSynMethodChain)
private
FSender: TObject;
protected
procedure DoFire(const AEvent: TMethod); override;
public
constructor CreateEx(ASender: TObject);
procedure Add(AEvent: TNotifyEvent);
procedure Remove(AEvent: TNotifyEvent);
property ExceptionHandler;
property Sender: TObject read FSender write FSender;
end;
{ TSynInternalImage }
TSynInternalImage = class(TObject)
private
fImages : TBitmap;
fWidth : Integer;
fHeight : Integer;
fCount : Integer;
function CreateBitmapFromInternalList(aModule: THandle; const Name: string): TBitmap;
procedure FreeBitmapFromInternalList;
public
constructor Create(aModule: THandle; const Name: string; Count: integer);
destructor Destroy; override;
procedure Draw(ACanvas: TCanvas; Number, X, Y, LineHeight: integer);
procedure DrawTransparent(ACanvas: TCanvas; Number, X, Y,
LineHeight: integer; TransparentColor: TColor);
end;
{ TSynHotKey }
const
{$IFDEF SYN_CLX}
BorderWidth = 2;
{$ELSE}
BorderWidth = 0;
{$ENDIF}
type
{$IFDEF SYN_CLX}
TSynBorderStyle = bsNone..bsSingle;
{$ELSE}
TSynBorderStyle = TBorderStyle;
{$ENDIF}
THKModifier = (hkShift, hkCtrl, hkAlt);
THKModifiers = set of THKModifier;
THKInvalidKey = (hcNone, hcShift, hcCtrl, hcAlt, hcShiftCtrl,
hcShiftAlt, hcCtrlAlt, hcShiftCtrlAlt);
THKInvalidKeys = set of THKInvalidKey;
TSynHotKey = class(TCustomControl)
private
FBorderStyle: TSynBorderStyle;
FHotKey: TShortCut;
FInvalidKeys: THKInvalidKeys;
FModifiers: THKModifiers;
FPressedOnlyModifiers: Boolean;
procedure SetBorderStyle(const Value: TSynBorderStyle);
procedure SetHotKey(const Value: TShortCut);
procedure SetInvalidKeys(const Value: THKInvalidKeys);
procedure SetModifiers(const Value: THKModifiers);
{$IFNDEF SYN_CLX}
procedure WMGetDlgCode(var Message: TMessage); message WM_GETDLGCODE;
procedure WMKillFocus(var Msg: TWMKillFocus); message WM_KILLFOCUS;
procedure WMSetFocus(var Msg: TWMSetFocus); message WM_SETFOCUS;
{$ENDIF}
protected
{$IFNDEF SYN_CLX}
procedure CreateParams(var Params: TCreateParams); override;
{$ENDIF}
{$IFDEF SYN_CLX}
function EventFilter(Sender: QObjectH; Event: QEventH): Boolean; override;
{$ENDIF}
procedure DoExit; override;
procedure KeyDown(var Key: Word; Shift: TShiftState); override;
procedure KeyUp(var Key: Word; Shift: TShiftState); override;
procedure MouseDown(Button: TMouseButton; Shift: TShiftState; X, Y: Integer); override;
procedure Paint; override;
{$IFDEF SYN_CLX}
function WidgetFlags: Integer; override;
{$ENDIF}
public
constructor Create(AOwner: TComponent); override;
published
property BorderStyle: TSynBorderStyle read FBorderStyle write SetBorderStyle
default bsSingle;
property HotKey: TShortCut read FHotKey write SetHotKey default $0041; { Alt+A }
property InvalidKeys: THKInvalidKeys read FInvalidKeys write SetInvalidKeys default [hcNone, hcShift];
property Modifiers: THKModifiers read FModifiers write SetModifiers default [hkAlt];
end;
TSynEditSearchCustom = class(TComponent)
protected
function GetPattern: UnicodeString; virtual; abstract;
procedure SetPattern(const Value: UnicodeString); virtual; abstract;
function GetLength(Index: Integer): Integer; virtual; abstract;
function GetResult(Index: Integer): Integer; virtual; abstract;
function GetResultCount: Integer; virtual; abstract;
procedure SetOptions(const Value: TSynSearchOptions); virtual; abstract;
public
function FindAll(const NewText: UnicodeString): Integer; virtual; abstract;
function Replace(const aOccurrence, aReplacement: UnicodeString): UnicodeString; virtual; abstract;
property Pattern: UnicodeString read GetPattern write SetPattern;
property ResultCount: Integer read GetResultCount;
property Results[Index: Integer]: Integer read GetResult;
property Lengths[Index: Integer]: Integer read GetLength;
property Options: TSynSearchOptions write SetOptions;
end;
{$IFNDEF SYN_CLX}
{$IFNDEF SYN_COMPILER_4_UP}
TBetterRegistry = class(TRegistry)
function OpenKeyReadOnly(const Key: string): Boolean;
end;
{$ELSE}
TBetterRegistry = TRegistry;
{$ENDIF}
{$ENDIF}
implementation
uses
{$IFDEF SYN_CLX}
QSynEditMiscProcs;
{$ELSE}
SynEditMiscProcs;
{$ENDIF}
{ TSynSelectedColor }
constructor TSynSelectedColor.Create;
begin
inherited Create;
fBG := clHighLight;
fFG := clHighLightText;
end;
procedure TSynSelectedColor.Assign(Source: TPersistent);
var
Src: TSynSelectedColor;
begin
if (Source <> nil) and (Source is TSynSelectedColor) then begin
Src := TSynSelectedColor(Source);
fBG := Src.fBG;
fFG := Src.fFG;
if Assigned(fOnChange) then fOnChange(Self);
end else
inherited Assign(Source);
end;
procedure TSynSelectedColor.SetBG(Value: TColor);
begin
if (fBG <> Value) then begin
fBG := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynSelectedColor.SetFG(Value: TColor);
begin
if (fFG <> Value) then begin
fFG := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
{ TSynGutter }
constructor TSynGutter.Create;
begin
inherited Create;
fFont := TFont.Create;
fFont.Name := 'Courier New';
fFont.Size := 8;
fFont.Style := [];
fUseFontStyle := True;
fFont.OnChange := OnFontChange;
fColor := clBtnFace;
fVisible := TRUE;
fWidth := 30;
fLeftOffset := 16;
fDigitCount := 4;
fAutoSizeDigitCount := fDigitCount;
fRightOffset := 2;
fBorderColor := clWindow;
fBorderStyle := gbsMiddle;
fLineNumberStart := 1;
fZeroStart := False;
fGradient := False;
fGradientStartColor := clWindow;
fGradientEndColor := clBtnFace;
fGradientSteps := 48;
end;
destructor TSynGutter.Destroy;
begin
fFont.Free;
inherited Destroy;
end;
procedure TSynGutter.Assign(Source: TPersistent);
var
Src: TSynGutter;
begin
if Assigned(Source) and (Source is TSynGutter) then
begin
Src := TSynGutter(Source);
fFont.Assign(src.Font);
fUseFontStyle := src.fUseFontStyle;
fColor := Src.fColor;
fVisible := Src.fVisible;
fWidth := Src.fWidth;
fShowLineNumbers := Src.fShowLineNumbers;
fLeadingZeros := Src.fLeadingZeros;
fZeroStart := Src.fZeroStart;
fLeftOffset := Src.fLeftOffset;
fDigitCount := Src.fDigitCount;
fRightOffset := Src.fRightOffset;
fAutoSize := Src.fAutoSize;
fAutoSizeDigitCount := Src.fAutoSizeDigitCount;
fLineNumberStart := Src.fLineNumberStart;
fBorderColor := Src.fBorderColor;
fBorderStyle := Src.fBorderStyle;
fGradient := Src.fGradient;
fGradientStartColor := Src.fGradientStartColor;
fGradientEndColor := Src.fGradientEndColor;
fGradientSteps := Src.fGradientSteps;
if Assigned(fOnChange) then fOnChange(Self);
end
else
inherited;
end;
procedure TSynGutter.AutoSizeDigitCount(LinesCount: integer);
var
nDigits: integer;
begin
if fVisible and fAutoSize and fShowLineNumbers then
begin
if fZeroStart then
Dec(LinesCount)
else if fLineNumberStart > 1 then
Inc(LinesCount, fLineNumberStart - 1);
nDigits := Max(Length(IntToStr(LinesCount)), fDigitCount);
if fAutoSizeDigitCount <> nDigits then begin
fAutoSizeDigitCount := nDigits;
if Assigned(fOnChange) then fOnChange(Self);
end;
end else
fAutoSizeDigitCount := fDigitCount;
end;
function TSynGutter.FormatLineNumber(Line: integer): string;
var
i: integer;
begin
if fZeroStart then
Dec(Line)
else if fLineNumberStart > 1 then
Inc(Line, fLineNumberStart - 1);
Result := Format('%*d', [fAutoSizeDigitCount, Line]);
if fLeadingZeros then
for i := 1 to fAutoSizeDigitCount - 1 do begin
if (Result[i] <> ' ') then break;
Result[i] := '0';
end;
end;
function TSynGutter.RealGutterWidth(CharWidth: integer): integer;
begin
if not fVisible then
Result := 0
else if fShowLineNumbers then
Result := fLeftOffset + fRightOffset + fAutoSizeDigitCount * CharWidth + 2
else
Result := fWidth;
end;
procedure TSynGutter.SetAutoSize(const Value: boolean);
begin
if fAutoSize <> Value then begin
fAutoSize := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynGutter.SetColor(const Value: TColor);
begin
if fColor <> Value then begin
fColor := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynGutter.SetFont(Value: TFont);
begin
fFont.Assign(Value);
end;
procedure TSynGutter.OnFontChange(Sender: TObject);
begin
if Assigned(fOnChange) then fOnChange(Self);
end;
procedure TSynGutter.SetDigitCount(Value: integer);
begin
Value := MinMax(Value, 2, 12);
if fDigitCount <> Value then begin
fDigitCount := Value;
fAutoSizeDigitCount := fDigitCount;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynGutter.SetLeadingZeros(const Value: boolean);
begin
if fLeadingZeros <> Value then begin
fLeadingZeros := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynGutter.SetLeftOffset(Value: integer);
begin
Value := Max(0, Value);
if fLeftOffset <> Value then begin
fLeftOffset := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynGutter.SetRightOffset(Value: integer);
begin
Value := Max(0, Value);
if fRightOffset <> Value then begin
fRightOffset := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynGutter.SetShowLineNumbers(const Value: boolean);
begin
if fShowLineNumbers <> Value then begin
fShowLineNumbers := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynGutter.SetUseFontStyle(Value: boolean);
begin
if fUseFontStyle <> Value then begin
fUseFontStyle := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynGutter.SetVisible(Value: boolean);
begin
if fVisible <> Value then begin
fVisible := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynGutter.SetWidth(Value: integer);
begin
Value := Max(0, Value);
if fWidth <> Value then begin
fWidth := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynGutter.SetZeroStart(const Value: boolean);
begin
if fZeroStart <> Value then begin
fZeroStart := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynGutter.SetBorderStyle(const Value: TSynGutterBorderStyle);
begin
fBorderStyle := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
procedure TSynGutter.SetLineNumberStart(const Value: Integer);
begin
if Value <> fLineNumberStart then
begin
fLineNumberStart := Value;
if fLineNumberStart < 0 then
fLineNumberStart := 0;
if fLineNumberStart = 0 then
fZeroStart := True
else
fZeroStart := False;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynGutter.SetBorderColor(const Value: TColor);
begin
if fBorderColor <> Value then
begin
fBorderColor := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynGutter.SetGradient(const Value: Boolean);
begin
if Value <> fGradient then
begin
fGradient := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynGutter.SetGradientEndColor(const Value: TColor);
begin
if Value <> fGradientEndColor then
begin
fGradientEndColor := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynGutter.SetGradientStartColor(const Value: TColor);
begin
if Value <> fGradientStartColor then
begin
fGradientStartColor := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynGutter.SetGradientSteps(const Value: Integer);
begin
if Value <> fGradientSteps then
begin
fGradientSteps := Value;
if fGradientSteps < 2 then
fGradientSteps := 2;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
function TSynGutter.GetWidth: integer;
begin
if not Visible then
Result := 0
else
Result := fWidth;
end;
{ TSynBookMarkOpt }
constructor TSynBookMarkOpt.Create(AOwner: TComponent);
begin
inherited Create;
fDrawBookmarksFirst := TRUE;
fEnableKeys := True;
fGlyphsVisible := True;
fLeftMargin := 2;
fOwner := AOwner;
fXOffset := 12;
end;
procedure TSynBookMarkOpt.Assign(Source: TPersistent);
var
Src: TSynBookMarkOpt;
begin
if (Source <> nil) and (Source is TSynBookMarkOpt) then begin
Src := TSynBookMarkOpt(Source);
fBookmarkImages := Src.fBookmarkImages;
fDrawBookmarksFirst := Src.fDrawBookmarksFirst;
fEnableKeys := Src.fEnableKeys;
fGlyphsVisible := Src.fGlyphsVisible;
fLeftMargin := Src.fLeftMargin;
fXoffset := Src.fXoffset;
if Assigned(fOnChange) then fOnChange(Self);
end else
inherited Assign(Source);
end;
procedure TSynBookMarkOpt.SetBookmarkImages(const Value: TImageList);
begin
if fBookmarkImages <> Value then begin
fBookmarkImages := Value;
if Assigned(fBookmarkImages) then fBookmarkImages.FreeNotification(fOwner);
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynBookMarkOpt.SetDrawBookmarksFirst(Value: boolean);
begin
if Value <> fDrawBookmarksFirst then begin
fDrawBookmarksFirst := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynBookMarkOpt.SetGlyphsVisible(Value: Boolean);
begin
if fGlyphsVisible <> Value then begin
fGlyphsVisible := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynBookMarkOpt.SetLeftMargin(Value: Integer);
begin
if fLeftMargin <> Value then begin
fLeftMargin := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynBookMarkOpt.SetXOffset(Value: integer);
begin
if fXOffset <> Value then begin
fXOffset := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
{ TSynGlyph }
constructor TSynGlyph.Create(aModule: THandle; const aName: string; aMaskColor: TColor);
begin
inherited Create;
if aName <> '' then
begin
fInternalGlyph := TBitmap.Create;
fInternalGlyph.LoadFromResourceName(aModule, aName);
fInternalMaskColor := aMaskColor;
end
else
fInternalMaskColor := clNone;
fVisible := True;
fGlyph := TBitmap.Create;
fGlyph.OnChange := GlyphChange;
fMaskColor := clNone;
end;
destructor TSynGlyph.Destroy;
begin
if Assigned(fInternalGlyph) then
FreeAndNil(fInternalGlyph);
fGlyph.Free;
inherited Destroy;
end;
procedure TSynGlyph.Assign(aSource: TPersistent);
var
vSrc : TSynGlyph;
begin
if Assigned(aSource) and (aSource is TSynGlyph) then
begin
vSrc := TSynGlyph(aSource);
fInternalGlyph := vSrc.fInternalGlyph;
fInternalMaskColor := vSrc.fInternalMaskColor;
fVisible := vSrc.fVisible;
fGlyph := vSrc.fGlyph;
fMaskColor := vSrc.fMaskColor;
if Assigned(fOnChange) then fOnChange(Self);
end
else
inherited;
end;
procedure TSynGlyph.Draw(aCanvas: TCanvas; aX, aY, aLineHeight: integer);
var
rcSrc, rcDest : TRect;
vGlyph : TBitmap;
vMaskColor : TColor;
begin
if not fGlyph.Empty then
begin
vGlyph := fGlyph;
vMaskColor := fMaskColor;
end
else if Assigned(fInternalGlyph) then
begin
vGlyph := fInternalGlyph;
vMaskColor := fInternalMaskColor;
end
else
Exit;
if aLineHeight >= vGlyph.Height then
begin
rcSrc := Rect(0, 0, vGlyph.Width, vGlyph.Height);
Inc(aY, (aLineHeight - vGlyph.Height) div 2);
rcDest := Rect(aX, aY, aX + vGlyph.Width, aY + vGlyph.Height);
end
else
begin
rcDest := Rect(aX, aY, aX + vGlyph.Width, aY + aLineHeight);
aY := (vGlyph.Height - aLineHeight) div 2;
rcSrc := Rect(0, aY, vGlyph.Width, aY + aLineHeight);
end;
{$IFDEF SYN_CLX}
if vMaskColor = clNone then
vGlyph.Transparent := False
else begin
vGlyph.TransparentColor := vMaskColor;
vGlyph.Transparent := True;
end;
aCanvas.CopyRect(rcDest, vGlyph.Canvas, rcSrc);
{$ELSE}
aCanvas.BrushCopy(rcDest, vGlyph, rcSrc, vMaskColor);
{$ENDIF}
end;
procedure TSynGlyph.SetGlyph(Value: TBitmap);
begin
fGlyph.Assign(Value);
end;
procedure TSynGlyph.GlyphChange(Sender: TObject);
begin
if Assigned(fOnChange) then fOnChange(Self);
end;
procedure TSynGlyph.SetMaskColor(Value: TColor);
begin
if fMaskColor <> Value then
begin
fMaskColor := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
procedure TSynGlyph.SetVisible(Value: boolean);
begin
if fVisible <> Value then
begin
fVisible := Value;
if Assigned(fOnChange) then fOnChange(Self);
end;
end;
function TSynGlyph.GetWidth : integer;
begin
if not fGlyph.Empty then
Result := fGlyph.Width
else
if Assigned(fInternalGlyph) then
Result := fInternalGlyph.Width
else
Result := 0;
end;
function TSynGlyph.GetHeight : integer;
begin
if not fGlyph.Empty then
Result := fGlyph.Height
else
if Assigned(fInternalGlyph) then
Result := fInternalGlyph.Height
else
Result := 0;
end;
{ TSynMethodChain }
procedure TSynMethodChain.Add(AEvent: TMethod);
begin
if not Assigned(@AEvent) then
raise ESynMethodChain.CreateFmt(
'%s.Entry : the parameter `AEvent'' must be specified.', [ClassName]);
with FNotifyProcs, AEvent do
begin
Add(Code);
Add(Data);
end
end;
constructor TSynMethodChain.Create;
begin
inherited;
FNotifyProcs := TList.Create;
end;
destructor TSynMethodChain.Destroy;
begin
FNotifyProcs.Free;
inherited;
end;
function TSynMethodChain.DoHandleException(E: Exception): Boolean;
begin
if not Assigned(FExceptionHandler) then
raise E
else
try
Result := True;
FExceptionHandler(Self, E, Result);
except
raise ESynMethodChain.CreateFmt(
'%s.DoHandleException : MUST NOT occur any kind of exception in '+
'ExceptionHandler', [ClassName]);
end;
end;
procedure TSynMethodChain.Fire;
var
AMethod: TMethod;
i: Integer;
begin
i := 0;
with FNotifyProcs, AMethod do
while i < Count do
try
repeat
Code := Items[i];
Inc(i);
Data := Items[i];
Inc(i);
DoFire(AMethod)
until i >= Count;
except
on E: Exception do
if not DoHandleException(E) then
i := MaxInt;
end;
end;
procedure TSynMethodChain.Remove(AEvent: TMethod);
var
i: Integer;
begin
if not Assigned(@AEvent) then
raise ESynMethodChain.CreateFmt(
'%s.Remove: the parameter `AEvent'' must be specified.', [ClassName]);
with FNotifyProcs, AEvent do
begin
i := Count - 1;
while i > 0 do
if Items[i] <> Data then
Dec(i, 2)
else
begin
Dec(i);
if Items[i] = Code then
begin
Delete(i);
Delete(i);
end;
Dec(i);
end;
end;
end;
{ TSynNotifyEventChain }
procedure TSynNotifyEventChain.Add(AEvent: TNotifyEvent);
begin
inherited Add(TMethod(AEvent));
end;
constructor TSynNotifyEventChain.CreateEx(ASender: TObject);
begin
inherited Create;
FSender := ASender;
end;
procedure TSynNotifyEventChain.DoFire(const AEvent: TMethod);
begin
TNotifyEvent(AEvent)(FSender);
end;
procedure TSynNotifyEventChain.Remove(AEvent: TNotifyEvent);
begin
inherited Remove(TMethod(AEvent));
end;
{ TSynInternalImage }
type
TInternalResource = class (TObject)
public
UsageCount : Integer;
Name : string;
Bitmap : TBitmap;
end;
var
InternalResources: TList;
constructor TSynInternalImage.Create(aModule: THandle; const Name: string; Count: integer);
begin
inherited Create;
fImages := CreateBitmapFromInternalList( aModule, Name );
fWidth := (fImages.Width + Count shr 1) div Count;
fHeight := fImages.Height;
fCount := Count;
end;
destructor TSynInternalImage.Destroy;
begin
FreeBitmapFromInternalList;
inherited Destroy;
end;
function TSynInternalImage.CreateBitmapFromInternalList(aModule: THandle;
const Name: string): TBitmap;
var
idx: Integer;
newIntRes: TInternalResource;
begin
{ There is no list until now }
if (InternalResources = nil) then
InternalResources := TList.Create;
{ Search the list for the needed resource }
for idx := 0 to InternalResources.Count - 1 do
if (TInternalResource(InternalResources[idx]).Name = UpperCase(Name)) then
with TInternalResource(InternalResources[idx]) do begin
UsageCount := UsageCount + 1;
Result := Bitmap;
exit;
end;
{ There is no loaded resource in the list so let's create a new one }
Result := TBitmap.Create;
Result.LoadFromResourceName(aModule, Name);
{ Add the new resource to our list }
newIntRes:= TInternalResource.Create;
newIntRes.UsageCount := 1;
newIntRes.Name := UpperCase(Name);
newIntRes.Bitmap := Result;
InternalResources.Add(newIntRes);
end;
procedure TSynInternalImage.FreeBitmapFromInternalList;
var
idx: Integer;
intRes: TInternalResource;
function FindImageInList: Integer;
begin
for Result := 0 to InternalResources.Count - 1 do
if (TInternalResource (InternalResources[Result]).Bitmap = fImages) then
exit;
Result := -1;
end;
begin
{ Search the index of our resource in the list }
idx := FindImageInList;
{ Ey, what's this ???? }
if (idx = -1) then
exit;
{ Decrement the usagecount in the object. If there are no more users
remove the object from the list and free it }
intRes := TInternalResource (InternalResources[idx]);
with intRes do begin
UsageCount := UsageCount - 1;
if (UsageCount = 0) then begin
Bitmap.Free;
InternalResources.Delete (idx);
intRes.Free;
end;
end;
{ If there are no more entries in the list free it }
if (InternalResources.Count = 0) then begin
InternalResources.Free;
InternalResources := nil;
end;
end;
procedure TSynInternalImage.Draw(ACanvas: TCanvas;
Number, X, Y, LineHeight: integer);
var
rcSrc, rcDest: TRect;
begin
if (Number >= 0) and (Number < fCount) then
begin
if LineHeight >= fHeight then begin
rcSrc := Rect(Number * fWidth, 0, (Number + 1) * fWidth, fHeight);
Inc(Y, (LineHeight - fHeight) div 2);
rcDest := Rect(X, Y, X + fWidth, Y + fHeight);
end else begin
rcDest := Rect(X, Y, X + fWidth, Y + LineHeight);
Y := (fHeight - LineHeight) div 2;
rcSrc := Rect(Number * fWidth, Y, (Number + 1) * fWidth,
Y + LineHeight);
end;
ACanvas.CopyRect(rcDest, fImages.Canvas, rcSrc);
end;
end;
procedure TSynInternalImage.DrawTransparent(ACanvas: TCanvas; Number, X, Y,
LineHeight: integer; TransparentColor: TColor);
var
rcSrc, rcDest: TRect;
begin
if (Number >= 0) and (Number < fCount) then
begin
if LineHeight >= fHeight then begin
rcSrc := Rect(Number * fWidth, 0, (Number + 1) * fWidth, fHeight);
Inc(Y, (LineHeight - fHeight) div 2);
rcDest := Rect(X, Y, X + fWidth, Y + fHeight);
end else begin
rcDest := Rect(X, Y, X + fWidth, Y + LineHeight);
Y := (fHeight - LineHeight) div 2;
rcSrc := Rect(Number * fWidth, Y, (Number + 1) * fWidth,
Y + LineHeight);
end;
{$IFDEF SYN_CLX}
ACanvas.CopyMode := cmMergeCopy;
ACanvas.CopyRect(rcDest, fImages.Canvas, rcSrc);
{$ELSE}
ACanvas.BrushCopy(rcDest, fImages, rcSrc, TransparentColor);
{$ENDIF}
end;
end;
{ TSynHotKey }
function KeySameAsShiftState(Key: Word; Shift: TShiftState): Boolean;
begin
Result := (Key = SYNEDIT_SHIFT) and (ssShift in Shift) or
(Key = SYNEDIT_CONTROL) and (ssCtrl in Shift) or
(Key = SYNEDIT_MENU) and (ssAlt in Shift);
end;
function ModifiersToShiftState(Modifiers: THKModifiers): TShiftState;
begin
Result := [];
if hkShift in Modifiers then Include(Result, ssShift);
if hkCtrl in Modifiers then Include(Result, ssCtrl);
if hkAlt in Modifiers then Include(Result, ssAlt);
end;
function ShiftStateToTHKInvalidKey(Shift: TShiftState): THKInvalidKey;
begin
Shift := Shift * [ssShift, ssAlt, ssCtrl];
if Shift = [ssShift] then
Result := hcShift
else if Shift = [ssCtrl] then
Result := hcCtrl
else if Shift = [ssAlt] then
Result := hcAlt
else if Shift = [ssShift, ssCtrl] then
Result := hcShiftCtrl
else if Shift = [ssShift, ssAlt] then
Result := hcShiftAlt
else if Shift = [ssCtrl, ssAlt] then
Result := hcCtrlAlt
else if Shift = [ssShift, ssCtrl, ssAlt] then
Result := hcShiftCtrlAlt
else
Result := hcNone;
end;
function ShortCutToTextEx(Key: Word; Shift: TShiftState): UnicodeString;
begin
if ssCtrl in Shift then Result := SmkcCtrl;
if ssShift in Shift then Result := Result + SmkcShift;
if ssAlt in Shift then Result := Result + SmkcAlt;
{$IFDEF SYN_CLX}
if Lo(Key) > Ord('Z') then
Result := Result + Chr(Key)
else
{$ENDIF}
Result := Result + ShortCutToText(TShortCut(Key));
if Result = '' then
Result := srNone;
end;
constructor TSynHotKey.Create(AOwner: TComponent);
begin
inherited;
{$IFDEF SYN_CLX}
InputKeys := [ikAll];
{$ENDIF}
BorderStyle := bsSingle;
{$IFNDEF SYN_CLX}
{$IFDEF SYN_COMPILER_7_UP}
ControlStyle := ControlStyle + [csNeedsBorderPaint];
{$ENDIF}
{$ENDIF}
FInvalidKeys := [hcNone, hcShift];
FModifiers := [hkAlt];
SetHotKey($0041); { Alt+A }
ParentColor := False;
Color := clWindow;
TabStop := True;
end;
{$IFNDEF SYN_CLX}
procedure TSynHotKey.CreateParams(var Params: TCreateParams);
const
BorderStyles: array[TSynBorderStyle] of DWORD = (0, WS_BORDER);
ClassStylesOff = CS_VREDRAW or CS_HREDRAW;
begin
inherited CreateParams(Params);
with Params do
begin
WindowClass.Style := WindowClass.Style and not ClassStylesOff;
Style := Style or BorderStyles[fBorderStyle] or WS_CLIPCHILDREN;
if NewStyleControls and Ctl3D and (fBorderStyle = bsSingle) then
begin
Style := Style and not WS_BORDER;
ExStyle := ExStyle or WS_EX_CLIENTEDGE;
end;
end;
end;
{$ENDIF}
procedure TSynHotKey.DoExit;
begin
inherited;
if FPressedOnlyModifiers then
begin
Text := srNone;
Invalidate;
end;
end;
{$IFDEF SYN_CLX}
function TSynHotKey.EventFilter(Sender: QObjectH; Event: QEventH): Boolean;
begin
Result := inherited EventFilter(Sender, Event);
case QEvent_type(Event) of
QEventType_FocusIn:
begin
Canvas.Font := Font;
CreateCaret(Self, 0, 1, TextHeight(Canvas, 'x') + 2);
SetCaretPos(BorderWidth + 1 + TextWidth(Canvas, Text), BorderWidth + 1);
ShowCaret(Self);
end;
QEventType_FocusOut:
begin
DestroyCaret;
end;
end;
end;
{$ENDIF}
procedure TSynHotKey.KeyDown(var Key: Word; Shift: TShiftState);
var
MaybeInvalidKey: THKInvalidKey;
SavedKey: Word;
{$IFDEF SYN_LINUX}
Code: Byte;
{$ENDIF}
begin
{$IFDEF SYN_LINUX}
// uniform Keycode: key has the same value wether Shift is pressed or not
if Key <= 255 then
begin
Code := XKeysymToKeycode(Xlib.PDisplay(QtDisplay), Key);
Key := XKeycodeToKeysym(Xlib.PDisplay(QtDisplay), Code, 0);
if AnsiChar(Key) in ['a'..'z'] then Key := Ord(UpCase(AnsiChar(Key)));
end;
{$ENDIF}
SavedKey := Key;
FPressedOnlyModifiers := KeySameAsShiftState(Key, Shift);
MaybeInvalidKey := ShiftStateToTHKInvalidKey(Shift);
if MaybeInvalidKey in FInvalidKeys then
Shift := ModifiersToShiftState(FModifiers);
if not FPressedOnlyModifiers then
begin
{$IFDEF SYN_CLX}
if Lo(Key) > Ord('Z') then
Key := Lo(Key);
{$ENDIF}
FHotKey := ShortCut(Key, Shift)
end
else
begin
FHotKey := 0;
Key := 0;
end;
if Text <> ShortCutToTextEx(Key, Shift) then
begin
Text := ShortCutToTextEx(Key, Shift);
Invalidate;
SetCaretPos(BorderWidth + 1 + TextWidth(Canvas, Text), BorderWidth + 1);
end;
Key := SavedKey;
end;
procedure TSynHotKey.KeyUp(var Key: Word; Shift: TShiftState);
{$IFDEF SYN_LINUX}
var
Code: Byte;
{$ENDIF}
begin
{$IFDEF SYN_LINUX}
// uniform Keycode: key has the same value wether Shift is pressed or not
if Key <= 255 then
begin
Code := XKeysymToKeycode(Xlib.PDisplay(QtDisplay), Key);
Key := XKeycodeToKeysym(Xlib.PDisplay(QtDisplay), Code, 0);
if AnsiChar(Key) in ['a'..'z'] then Key := Ord(UpCase(AnsiChar(Key)));
end;
{$ENDIF}
if FPressedOnlyModifiers then
begin
Text := srNone;
Invalidate;
SetCaretPos(BorderWidth + 1 + TextWidth(Canvas, Text), BorderWidth + 1);
end;
end;
procedure TSynHotKey.MouseDown(Button: TMouseButton; Shift: TShiftState; X,
Y: Integer);
begin
inherited;
SetFocus;
end;
procedure TSynHotKey.Paint;
var
r: TRect;
begin
r := ClientRect;
{$IFDEF SYN_CLX}
QClxDrawUtil_DrawWinPanel(Canvas.Handle, @r, Palette.ColorGroup(cgActive), True,
QBrushH(0));
{$ENDIF}
Canvas.Brush.Style := bsSolid;
Canvas.Brush.Color := Color;
InflateRect(r, -BorderWidth, -BorderWidth);
Canvas.FillRect(r);
TextRect(Canvas, r, BorderWidth + 1, BorderWidth + 1, Text);
end;
procedure TSynHotKey.SetBorderStyle(const Value: TSynBorderStyle);
begin
if FBorderStyle <> Value then
begin
FBorderStyle := Value;
{$IFDEF SYN_CLX}
Resize;
Invalidate;
{$ELSE}
RecreateWnd;
{$ENDIF}
end;
end;
procedure TSynHotKey.SetHotKey(const Value: TShortCut);
var
Key: Word;
Shift: TShiftState;
MaybeInvalidKey: THKInvalidKey;
begin
ShortCutToKey(Value, Key, Shift);
MaybeInvalidKey := ShiftStateToTHKInvalidKey(Shift);
if MaybeInvalidKey in FInvalidKeys then
Shift := ModifiersToShiftState(FModifiers);
FHotKey := ShortCut(Key, Shift);
Text := ShortCutToTextEx(Key, Shift);
Invalidate;
if not Visible then
SetCaretPos(BorderWidth + 1 + TextWidth(Canvas, Text), BorderWidth + 1);
end;
procedure TSynHotKey.SetInvalidKeys(const Value: THKInvalidKeys);
begin
FInvalidKeys := Value;
SetHotKey(FHotKey);
end;
procedure TSynHotKey.SetModifiers(const Value: THKModifiers);
begin
FModifiers := Value;
SetHotKey(FHotKey);
end;
{$IFDEF SYN_CLX}
function TSynHotKey.WidgetFlags: Integer;
begin
Result := inherited WidgetFlags or Integer(WidgetFlags_WRepaintNoErase);
end;
{$ENDIF}
{$IFNDEF SYN_CLX}
procedure TSynHotKey.WMGetDlgCode(var Message: TMessage);
begin
Message.Result := DLGC_WANTTAB or DLGC_WANTARROWS;
end;
procedure TSynHotKey.WMKillFocus(var Msg: TWMKillFocus);
begin
DestroyCaret;
end;
procedure TSynHotKey.WMSetFocus(var Msg: TWMSetFocus);
begin
Canvas.Font := Font;
CreateCaret(Handle, 0, 1, -Canvas.Font.Height + 2);
SetCaretPos(BorderWidth + 1 + TextWidth(Canvas, Text), BorderWidth + 1);
ShowCaret(Handle);
end;
{$ENDIF}
{$IFNDEF SYN_CLX}
{$IFNDEF SYN_COMPILER_4_UP}
{ TBetterRegistry }
function TBetterRegistry.OpenKeyReadOnly(const Key: string): Boolean;
function IsRelative(const Value: string): Boolean;
begin
Result := not ((Value <> '') and (Value[1] = '\'));
end;
var
TempKey: HKey;
S: string;
Relative: Boolean;
begin
S := Key;
Relative := IsRelative(S);
if not Relative then Delete(S, 1, 1);
TempKey := 0;
Result := RegOpenKeyEx(GetBaseKey(Relative), PChar(S), 0,
KEY_READ, TempKey) = ERROR_SUCCESS;
if Result then
begin
if (CurrentKey <> 0) and Relative then S := CurrentPath + '\' + S;
ChangeKey(TempKey, S);
end;
end; { TBetterRegistry.OpenKeyReadOnly }
{$ENDIF SYN_COMPILER_4_UP}
{$ENDIF SYN_CLX}
begin
InternalResources := nil;
end.
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.