File: editor_indent_options.lfm

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (932 lines) | stat: -rw-r--r-- 26,424 bytes parent folder | download
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
object EditorIndentOptionsFrame: TEditorIndentOptionsFrame
  Left = 0
  Height = 499
  Top = 0
  Width = 433
  ClientHeight = 499
  ClientWidth = 433
  TabOrder = 0
  Visible = False
  DesignLeft = 664
  DesignTop = 211
  object BlockIndentLabel: TLabel
    AnchorSideLeft.Control = BlockIndentComboBox
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = BlockIndentComboBox
    AnchorSideTop.Side = asrCenter
    Left = 322
    Height = 15
    Top = 156
    Width = 91
    BorderSpacing.Around = 6
    Caption = 'BlockIndentLabel'
    ParentColor = False
  end
  object TabWidthsLabel: TLabel
    AnchorSideLeft.Control = TabWidthsComboBox
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = TabWidthsComboBox
    AnchorSideTop.Side = asrCenter
    Left = 322
    Height = 15
    Top = 31
    Width = 83
    BorderSpacing.Around = 6
    Caption = 'TabWidthsLabel'
    ParentColor = False
  end
  object AutoIndentTypeLabel: TLabel
    AnchorSideLeft.Control = BlockIndentTypeComboBox
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = BlockIndentTypeComboBox
    AnchorSideTop.Side = asrCenter
    Left = 322
    Height = 15
    Top = 109
    Width = 112
    BorderSpacing.Around = 6
    Caption = 'AutoIndentTypeLabel'
    ParentColor = False
  end
  object BlockIndentComboBox: TComboBox
    AnchorSideLeft.Control = CenterLabel1
    AnchorSideTop.Control = lblBlockIndentKeys
    AnchorSideBottom.Control = TabWidthsComboBox
    Left = 216
    Height = 23
    Top = 152
    Width = 100
    BorderSpacing.Top = 3
    ItemHeight = 15
    Items.Strings = (
      '0'
      '1'
      '2'
      '4'
      '8'
    )
    OnChange = ComboboxOnChange
    OnExit = ComboBoxOnExit
    OnKeyDown = ComboboxOnKeyDown
    TabOrder = 5
  end
  object TabWidthsComboBox: TComboBox
    AnchorSideLeft.Control = CenterLabel1
    AnchorSideTop.Control = TabsGroupDivider
    AnchorSideTop.Side = asrBottom
    AnchorSideBottom.Control = Owner
    AnchorSideBottom.Side = asrBottom
    Left = 216
    Height = 23
    Top = 27
    Width = 100
    BorderSpacing.Top = 6
    ItemHeight = 15
    Items.Strings = (
      '1'
      '2'
      '4'
      '8'
    )
    OnChange = ComboboxOnChange
    OnExit = ComboBoxOnExit
    OnKeyDown = ComboboxOnKeyDown
    TabOrder = 1
  end
  object AutoIndentCheckBox: TCheckBox
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = IndentsGroupDivider
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = CenterLabel1
    AnchorSideRight.Side = asrBottom
    Left = 6
    Height = 19
    Top = 105
    Width = 201
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Left = 6
    BorderSpacing.Right = 10
    Caption = 'AutoIndentCheckBox'
    OnChange = AutoIndentCheckBoxChange
    TabOrder = 3
  end
  object TabIndentBlocksCheckBox: TCheckBox
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = lblBlockIndentShortcut
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = CenterLabel1
    AnchorSideRight.Side = asrBottom
    Left = 6
    Height = 19
    Top = 185
    Width = 201
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Left = 6
    BorderSpacing.Top = 3
    BorderSpacing.Right = 10
    Caption = 'TabIndentBlocksCheckBox'
    OnChange = TabIndentBlocksCheckBoxChange
    TabOrder = 6
  end
  object SmartTabsCheckBox: TCheckBox
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = TabsToSpacesCheckBox
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = CenterLabel1
    AnchorSideRight.Side = asrBottom
    Left = 6
    Height = 19
    Top = 46
    Width = 201
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Left = 6
    BorderSpacing.Right = 10
    Caption = 'SmartTabsCheckBox'
    OnChange = SmartTabsCheckBoxChange
    TabOrder = 2
  end
  object TabsToSpacesCheckBox: TCheckBox
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = TabsGroupDivider
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = CenterLabel1
    AnchorSideRight.Side = asrBottom
    Left = 6
    Height = 19
    Top = 27
    Width = 201
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Left = 6
    BorderSpacing.Top = 6
    BorderSpacing.Right = 10
    Caption = 'TabsToSpacesCheckBox'
    OnChange = TabsToSpacesCheckBoxChange
    TabOrder = 0
  end
  object BlockIndentTypeComboBox: TComboBox
    AnchorSideLeft.Control = CenterLabel1
    AnchorSideTop.Control = AutoIndentCheckBox
    AnchorSideBottom.Control = TabWidthsComboBox
    Left = 216
    Height = 23
    Top = 105
    Width = 100
    ItemHeight = 15
    ItemWidth = 200
    OnChange = ComboboxOnChange
    OnExit = ComboBoxOnExit
    OnKeyDown = ComboboxOnKeyDown
    Style = csDropDownList
    TabOrder = 4
  end
  object AutoIndentLink: TLabel
    AnchorSideLeft.Control = AutoIndentCheckBox
    AnchorSideTop.Control = AutoIndentCheckBox
    AnchorSideTop.Side = asrBottom
    Cursor = crHandPoint
    Left = 24
    Height = 15
    Top = 124
    Width = 82
    BorderSpacing.Left = 18
    Caption = 'AutoIndentLink'
    Font.Color = clBlue
    ParentColor = False
    ParentFont = False
    OnClick = AutoIndentLinkClick
    OnMouseEnter = AutoIndentLinkMouseEnter
    OnMouseLeave = AutoIndentLinkMouseLeave
  end
  object CenterLabel: TLabel
    AnchorSideLeft.Control = Owner
    AnchorSideLeft.Side = asrCenter
    Left = 216
    Height = 1
    Top = -513
    Width = 1
    ParentColor = False
  end
  object TabsGroupDivider: TDividerBevel
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = Owner
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    Left = 0
    Height = 15
    Top = 6
    Width = 433
    Caption = 'TabsGroupDivider'
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Top = 6
    Font.Style = [fsBold]
    ParentFont = False
  end
  object BlockTabIndentComboBox: TComboBox
    AnchorSideLeft.Control = CenterLabel1
    AnchorSideTop.Control = BlockIndentComboBox
    AnchorSideTop.Side = asrBottom
    AnchorSideBottom.Control = TabWidthsComboBox
    Left = 216
    Height = 23
    Top = 178
    Width = 100
    BorderSpacing.Top = 3
    ItemHeight = 15
    Items.Strings = (
      '0'
      '1'
      '2'
    )
    OnChange = ComboboxOnChange
    OnExit = ComboBoxOnExit
    OnKeyDown = ComboboxOnKeyDown
    TabOrder = 7
  end
  object BlockTabIndentLabel: TLabel
    AnchorSideLeft.Control = BlockTabIndentComboBox
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = BlockTabIndentComboBox
    AnchorSideTop.Side = asrCenter
    Left = 322
    Height = 15
    Top = 182
    Width = 91
    BorderSpacing.Around = 6
    Caption = 'BlockIndentLabel'
    ParentColor = False
  end
  object BlockIndentLink: TLabel
    AnchorSideLeft.Control = lblBlockIndentKeys
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = lblBlockIndentKeys
    Cursor = crHandPoint
    Left = 112
    Height = 15
    Top = 149
    Width = 85
    BorderSpacing.Left = 6
    Caption = 'BlockIndentLink'
    Font.Color = clBlue
    ParentColor = False
    ParentFont = False
    OnClick = BlockIndentLinkClick
    OnMouseEnter = AutoIndentLinkMouseEnter
    OnMouseLeave = AutoIndentLinkMouseLeave
  end
  object lblBlockIndentKeys: TLabel
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = AutoIndentLink
    AnchorSideTop.Side = asrBottom
    Left = 6
    Height = 15
    Top = 149
    Width = 100
    BorderSpacing.Left = 6
    BorderSpacing.Top = 10
    Caption = 'lblBlockIndentKeys'
    ParentColor = False
  end
  object IndentsGroupDivider: TDividerBevel
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = chkElasticTabs
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    Left = 0
    Height = 15
    Top = 90
    Width = 433
    Caption = 'IndentsGroupDivider'
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Top = 6
    Font.Style = [fsBold]
    ParentFont = False
  end
  object lblBlockIndentShortcut: TLabel
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = lblBlockIndentKeys
    AnchorSideTop.Side = asrBottom
    Left = 6
    Height = 15
    Top = 167
    Width = 121
    BorderSpacing.Left = 6
    BorderSpacing.Top = 3
    Caption = 'lblBlockIndentShortcut'
    ParentColor = False
  end
  object CommentsGroupDivider: TDividerBevel
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = TabIndentBlocksCheckBox
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    Left = 0
    Height = 15
    Top = 210
    Width = 433
    Caption = 'CommentsGroupDivider'
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Top = 6
    Font.Style = [fsBold]
    ParentFont = False
  end
  object CenterLabel1: TLabel
    AnchorSideLeft.Control = Owner
    AnchorSideLeft.Side = asrCenter
    Left = 216
    Height = 1
    Top = 0
    Width = 1
    ParentColor = False
  end
  object CommentsPageControl: TPageControl
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = CommentsGroupDivider
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Control = Owner
    AnchorSideBottom.Side = asrBottom
    Left = 0
    Height = 268
    Top = 231
    Width = 433
    ActivePage = tbAnsi
    Anchors = [akTop, akLeft, akRight, akBottom]
    BorderSpacing.Top = 6
    TabIndex = 0
    TabOrder = 8
    object tbAnsi: TTabSheet
      Caption = 'tbAnsi'
      ClientHeight = 240
      ClientWidth = 425
      object cbAnsiEnableAutoContinue: TCheckBox
        AnchorSideLeft.Control = tbAnsi
        AnchorSideTop.Control = tbAnsi
        AnchorSideRight.Side = asrBottom
        Left = 6
        Height = 19
        Top = 3
        Width = 164
        BorderSpacing.Left = 6
        BorderSpacing.Top = 3
        Caption = 'cbAnsiEnableAutoContinue'
        OnChange = cbAnsiEnableAutoContinueChange
        TabOrder = 0
      end
      object lbAnsiMatch: TLabel
        AnchorSideLeft.Control = tbAnsi
        AnchorSideTop.Control = edAnsiMatch
        AnchorSideTop.Side = asrCenter
        Left = 6
        Height = 15
        Top = 36
        Width = 67
        BorderSpacing.Left = 6
        Caption = 'lbAnsiMatch'
        ParentColor = False
      end
      object edAnsiMatch: TEdit
        AnchorSideLeft.Control = lbAnsiMatch
        AnchorSideLeft.Side = asrBottom
        AnchorSideTop.Control = cbAnsiEnableAutoContinue
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Control = tbAnsi
        AnchorSideRight.Side = asrBottom
        Left = 79
        Height = 23
        Top = 32
        Width = 336
        Anchors = [akTop, akLeft, akRight]
        BorderSpacing.Left = 6
        BorderSpacing.Top = 10
        BorderSpacing.Right = 10
        Constraints.MinWidth = 50
        TabOrder = 1
      end
      object lbAnsiPrefix: TLabel
        AnchorSideLeft.Control = tbAnsi
        AnchorSideTop.Control = edAnsiPrefix
        AnchorSideTop.Side = asrCenter
        Left = 6
        Height = 15
        Top = 104
        Width = 63
        BorderSpacing.Left = 6
        Caption = 'lbAnsiPrefix'
        ParentColor = False
      end
      object edAnsiPrefix: TEdit
        AnchorSideLeft.Control = lbAnsiPrefix
        AnchorSideLeft.Side = asrBottom
        AnchorSideTop.Control = cbAnsiMatchMode
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Control = tbAnsi
        AnchorSideRight.Side = asrBottom
        Left = 75
        Height = 23
        Top = 100
        Width = 340
        Anchors = [akTop, akLeft, akRight]
        BorderSpacing.Left = 6
        BorderSpacing.Top = 16
        BorderSpacing.Right = 10
        Constraints.MinWidth = 50
        TabOrder = 2
      end
      object cbAnsiMatchMode: TComboBox
        AnchorSideLeft.Control = edAnsiMatch
        AnchorSideTop.Control = edAnsiMatch
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Control = tbAnsi
        AnchorSideRight.Side = asrBottom
        Left = 79
        Height = 23
        Top = 61
        Width = 336
        Anchors = [akTop, akLeft, akRight]
        BorderSpacing.Top = 6
        BorderSpacing.Right = 10
        ItemHeight = 15
        Style = csDropDownList
        TabOrder = 3
      end
      object cbAnsiIndentMode: TComboBox
        AnchorSideLeft.Control = edAnsiPrefix
        AnchorSideTop.Control = edAnsiPrefix
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Control = tbAnsi
        AnchorSideRight.Side = asrBottom
        Left = 75
        Height = 23
        Top = 129
        Width = 340
        Anchors = [akTop, akLeft, akRight]
        BorderSpacing.Top = 6
        BorderSpacing.Right = 10
        ItemHeight = 15
        OnChange = cbAnsiIndentModeChange
        Style = csDropDownList
        TabOrder = 4
      end
      object edAnsiAlignMax: TSpinEdit
        AnchorSideLeft.Control = tbAnsi
        AnchorSideTop.Control = lbAnsiAlignMax
        AnchorSideTop.Side = asrBottom
        AnchorSideBottom.Side = asrBottom
        Left = 6
        Height = 23
        Top = 180
        Width = 100
        BorderSpacing.Left = 6
        BorderSpacing.Top = 3
        MaxValue = 999
        TabOrder = 5
      end
      object lbAnsiAlignMax: TLabel
        AnchorSideLeft.Control = tbAnsi
        AnchorSideTop.Control = cbAnsiIndentMode
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Side = asrBottom
        Left = 6
        Height = 15
        Top = 162
        Width = 84
        BorderSpacing.Left = 6
        BorderSpacing.Top = 10
        Caption = 'lbAnsiAlignMax'
        ParentColor = False
        WordWrap = True
      end
    end
    object tbCurly: TTabSheet
      Caption = 'tbCurly'
      ClientHeight = 240
      ClientWidth = 425
      object cbCurlyEnableAutoContinue: TCheckBox
        AnchorSideLeft.Control = tbCurly
        AnchorSideTop.Control = tbCurly
        AnchorSideRight.Side = asrBottom
        Left = 6
        Height = 19
        Top = 3
        Width = 169
        BorderSpacing.Left = 6
        BorderSpacing.Top = 3
        Caption = 'cbCurlyEnableAutoContinue'
        OnChange = cbCurlyEnableAutoContinueChange
        TabOrder = 0
      end
      object lbCurlyMatch: TLabel
        AnchorSideLeft.Control = tbCurly
        AnchorSideTop.Control = edCurlyMatch
        AnchorSideTop.Side = asrCenter
        Left = 6
        Height = 15
        Top = 36
        Width = 72
        BorderSpacing.Left = 6
        Caption = 'lbCurlyMatch'
        ParentColor = False
      end
      object edCurlyMatch: TEdit
        AnchorSideLeft.Control = lbCurlyMatch
        AnchorSideLeft.Side = asrBottom
        AnchorSideTop.Control = cbCurlyEnableAutoContinue
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Control = tbCurly
        AnchorSideRight.Side = asrBottom
        Left = 84
        Height = 23
        Top = 32
        Width = 331
        Anchors = [akTop, akLeft, akRight]
        BorderSpacing.Left = 6
        BorderSpacing.Top = 10
        BorderSpacing.Right = 10
        TabOrder = 1
      end
      object lbCurlyPrefix: TLabel
        AnchorSideLeft.Control = tbCurly
        AnchorSideTop.Control = edCurlyPrefix
        AnchorSideTop.Side = asrCenter
        Left = 6
        Height = 15
        Top = 104
        Width = 68
        BorderSpacing.Left = 6
        Caption = 'lbCurlyPrefix'
        ParentColor = False
      end
      object edCurlyPrefix: TEdit
        AnchorSideLeft.Control = lbCurlyPrefix
        AnchorSideLeft.Side = asrBottom
        AnchorSideTop.Control = cbCurlyMatchMode
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Control = tbCurly
        AnchorSideRight.Side = asrBottom
        Left = 80
        Height = 23
        Top = 100
        Width = 335
        Anchors = [akTop, akLeft, akRight]
        BorderSpacing.Left = 6
        BorderSpacing.Top = 16
        BorderSpacing.Right = 10
        TabOrder = 2
      end
      object cbCurlyMatchMode: TComboBox
        AnchorSideLeft.Control = edCurlyMatch
        AnchorSideTop.Control = edCurlyMatch
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Control = tbCurly
        AnchorSideRight.Side = asrBottom
        Left = 84
        Height = 23
        Top = 61
        Width = 331
        Anchors = [akTop, akLeft, akRight]
        BorderSpacing.Top = 6
        BorderSpacing.Right = 10
        ItemHeight = 15
        Style = csDropDownList
        TabOrder = 3
      end
      object cbCurlyIndentMode: TComboBox
        AnchorSideLeft.Control = edCurlyPrefix
        AnchorSideTop.Control = edCurlyPrefix
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Control = tbCurly
        AnchorSideRight.Side = asrBottom
        Left = 80
        Height = 23
        Top = 129
        Width = 335
        Anchors = [akTop, akLeft, akRight]
        BorderSpacing.Top = 6
        BorderSpacing.Right = 10
        ItemHeight = 15
        OnChange = cbCurlyIndentModeChange
        Style = csDropDownList
        TabOrder = 4
      end
      object edCurlyAlignMax: TSpinEdit
        AnchorSideLeft.Control = tbCurly
        AnchorSideTop.Control = lbCurlyAlignMax
        AnchorSideTop.Side = asrBottom
        AnchorSideBottom.Side = asrBottom
        Left = 6
        Height = 23
        Top = 180
        Width = 100
        BorderSpacing.Left = 6
        BorderSpacing.Top = 3
        MaxValue = 999
        TabOrder = 5
      end
      object lbCurlyAlignMax: TLabel
        AnchorSideLeft.Control = tbCurly
        AnchorSideTop.Control = cbCurlyIndentMode
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Side = asrBottom
        Left = 6
        Height = 15
        Top = 162
        Width = 89
        BorderSpacing.Left = 6
        BorderSpacing.Top = 10
        Caption = 'lbCurlyAlignMax'
        ParentColor = False
        WordWrap = True
      end
    end
    object tbShlash: TTabSheet
      Caption = 'tbShlash'
      ClientHeight = 240
      ClientWidth = 425
      object cbSlashEnableAutoContinue: TCheckBox
        AnchorSideLeft.Control = tbShlash
        AnchorSideTop.Control = tbShlash
        AnchorSideRight.Side = asrBottom
        Left = 6
        Height = 19
        Top = 3
        Width = 168
        BorderSpacing.Left = 6
        BorderSpacing.Top = 3
        Caption = 'cbSlashEnableAutoContinue'
        OnChange = cbSlashEnableAutoContinueChange
        TabOrder = 0
      end
      object lbSlashMatch: TLabel
        AnchorSideLeft.Control = tbShlash
        AnchorSideTop.Control = edSlashMatch
        AnchorSideTop.Side = asrCenter
        Left = 6
        Height = 15
        Top = 68
        Width = 71
        BorderSpacing.Left = 6
        Caption = 'lbSlashMatch'
        ParentColor = False
      end
      object edSlashMatch: TEdit
        AnchorSideLeft.Control = lbSlashMatch
        AnchorSideLeft.Side = asrBottom
        AnchorSideTop.Control = cbSlashExtend
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Control = tbShlash
        AnchorSideRight.Side = asrBottom
        Left = 83
        Height = 23
        Top = 64
        Width = 332
        Anchors = [akTop, akLeft, akRight]
        BorderSpacing.Left = 6
        BorderSpacing.Top = 16
        BorderSpacing.Right = 10
        TabOrder = 1
      end
      object lbSlashPrefix: TLabel
        AnchorSideLeft.Control = tbShlash
        AnchorSideTop.Control = edSlashPrefix
        AnchorSideTop.Side = asrCenter
        Left = 6
        Height = 15
        Top = 136
        Width = 67
        BorderSpacing.Left = 6
        Caption = 'lbSlashPrefix'
        ParentColor = False
      end
      object edSlashPrefix: TEdit
        AnchorSideLeft.Control = lbSlashPrefix
        AnchorSideLeft.Side = asrBottom
        AnchorSideTop.Control = cbSlashMatchMode
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Control = tbShlash
        AnchorSideRight.Side = asrBottom
        Left = 79
        Height = 23
        Top = 132
        Width = 336
        Anchors = [akTop, akLeft, akRight]
        BorderSpacing.Left = 6
        BorderSpacing.Top = 16
        BorderSpacing.Right = 10
        TabOrder = 2
      end
      object cbSlashMatchMode: TComboBox
        AnchorSideLeft.Control = edSlashMatch
        AnchorSideTop.Control = edSlashMatch
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Control = tbShlash
        AnchorSideRight.Side = asrBottom
        Left = 83
        Height = 23
        Top = 93
        Width = 332
        Anchors = [akTop, akLeft, akRight]
        BorderSpacing.Top = 6
        BorderSpacing.Right = 10
        ItemHeight = 15
        Style = csDropDownList
        TabOrder = 3
      end
      object cbSlashIndentMode: TComboBox
        AnchorSideLeft.Control = edSlashPrefix
        AnchorSideTop.Control = edSlashPrefix
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Control = tbShlash
        AnchorSideRight.Side = asrBottom
        Left = 79
        Height = 23
        Top = 161
        Width = 336
        Anchors = [akTop, akLeft, akRight]
        BorderSpacing.Top = 6
        BorderSpacing.Right = 10
        ItemHeight = 15
        OnChange = cbSlashIndentModeChange
        Style = csDropDownList
        TabOrder = 4
      end
      object cbSlashExtend: TComboBox
        AnchorSideLeft.Control = tbShlash
        AnchorSideTop.Control = cbSlashEnableAutoContinue
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Control = tbShlash
        AnchorSideRight.Side = asrBottom
        Left = 0
        Height = 23
        Top = 25
        Width = 415
        Anchors = [akTop, akLeft, akRight]
        BorderSpacing.Top = 3
        BorderSpacing.Right = 10
        ItemHeight = 15
        Style = csDropDownList
        TabOrder = 5
      end
      object edSlashAlignMax: TSpinEdit
        AnchorSideLeft.Control = tbShlash
        AnchorSideTop.Control = lbSlashAlignMax
        AnchorSideTop.Side = asrBottom
        AnchorSideBottom.Side = asrBottom
        Left = 6
        Height = 23
        Top = 212
        Width = 100
        BorderSpacing.Left = 6
        BorderSpacing.Top = 3
        MaxValue = 999
        TabOrder = 6
      end
      object lbSlashAlignMax: TLabel
        AnchorSideLeft.Control = tbShlash
        AnchorSideTop.Control = cbSlashIndentMode
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Side = asrBottom
        Left = 6
        Height = 15
        Top = 194
        Width = 88
        BorderSpacing.Left = 6
        BorderSpacing.Top = 10
        Caption = 'lbSlashAlignMax'
        ParentColor = False
        WordWrap = True
      end
    end
    object tbString: TTabSheet
      Caption = 'tbString'
      ClientHeight = 240
      ClientWidth = 425
      object cbStringEnableAutoContinue: TCheckBox
        AnchorSideLeft.Control = tbString
        AnchorSideTop.Control = tbString
        Left = 6
        Height = 19
        Top = 3
        Width = 172
        BorderSpacing.Left = 6
        BorderSpacing.Top = 3
        Caption = 'cbStringEnableAutoContinue'
        OnChange = cbStringEnableAutoContinueChange
        TabOrder = 0
      end
      object lbStringAutoAppend: TLabel
        AnchorSideLeft.Control = tbString
        AnchorSideTop.Control = edStringAutoAppend
        AnchorSideTop.Side = asrCenter
        Left = 6
        Height = 15
        Top = 32
        Width = 109
        BorderSpacing.Left = 6
        Caption = 'lbStringAutoAppend'
        ParentColor = False
      end
      object lbStringAutoPrefix: TLabel
        AnchorSideLeft.Control = tbString
        AnchorSideTop.Control = edStringAutoPrefix
        AnchorSideTop.Side = asrCenter
        Left = 6
        Height = 15
        Top = 61
        Width = 97
        BorderSpacing.Left = 6
        Caption = 'lbStringAutoPrefix'
        ParentColor = False
      end
      object edStringAutoAppend: TEdit
        AnchorSideLeft.Control = lbStringAutoAppend
        AnchorSideLeft.Side = asrBottom
        AnchorSideTop.Control = cbStringEnableAutoContinue
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Control = tbString
        AnchorSideRight.Side = asrBottom
        Left = 121
        Height = 23
        Top = 28
        Width = 298
        Anchors = [akTop, akLeft, akRight]
        BorderSpacing.Left = 6
        BorderSpacing.Top = 6
        BorderSpacing.Right = 6
        TabOrder = 1
      end
      object edStringAutoPrefix: TEdit
        AnchorSideLeft.Control = lbStringAutoPrefix
        AnchorSideLeft.Side = asrBottom
        AnchorSideTop.Control = edStringAutoAppend
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Control = tbString
        AnchorSideRight.Side = asrBottom
        Left = 109
        Height = 23
        Top = 57
        Width = 310
        Anchors = [akTop, akLeft, akRight]
        BorderSpacing.Left = 6
        BorderSpacing.Top = 6
        BorderSpacing.Right = 6
        TabOrder = 2
      end
    end
  end
  object chkElasticTabs: TCheckBox
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = SmartTabsCheckBox
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = CenterLabel
    AnchorSideRight.Side = asrBottom
    Left = 6
    Height = 19
    Top = 65
    Width = 201
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Left = 6
    BorderSpacing.Right = 10
    Caption = 'chkElasticTabs'
    OnChange = chkElasticTabsChange
    TabOrder = 9
  end
  object ElastTabMinWidthsComboBox: TComboBox
    AnchorSideLeft.Control = CenterLabel1
    AnchorSideTop.Control = TabWidthsComboBox
    AnchorSideTop.Side = asrBottom
    AnchorSideBottom.Control = Owner
    AnchorSideBottom.Side = asrBottom
    Left = 216
    Height = 23
    Top = 56
    Width = 100
    BorderSpacing.Top = 6
    ItemHeight = 15
    Items.Strings = (
      '1'
      '2'
      '4'
      '8'
    )
    OnChange = ComboboxOnChange
    OnExit = ComboBoxOnExit
    OnKeyDown = ComboboxOnKeyDown
    TabOrder = 10
  end
  object ElastTabMinWidthsLabel: TLabel
    AnchorSideLeft.Control = ElastTabMinWidthsComboBox
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = ElastTabMinWidthsComboBox
    AnchorSideTop.Side = asrCenter
    Left = 322
    Height = 15
    Top = 60
    Width = 128
    BorderSpacing.Around = 6
    Caption = 'ElastTabMinWidthsLabel'
    ParentColor = False
  end
end