-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathextrasettings.lfm
1003 lines (1003 loc) · 27.9 KB
/
extrasettings.lfm
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
object Form2: TForm2
Left = 180
Height = 660
Top = 139
Width = 782
Caption = 'Advanced settings'
ClientHeight = 660
ClientWidth = 782
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
LCLVersion = '2.3.0.0'
object GroupBox1: TGroupBox
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
AnchorSideRight.Control = GroupBoxCompileOptions
Left = 8
Height = 124
Top = 8
Width = 387
Anchors = [akTop, akLeft, akRight]
AutoSize = True
BorderSpacing.Left = 8
BorderSpacing.Top = 8
BorderSpacing.Right = 8
BorderSpacing.Bottom = 8
BorderSpacing.InnerBorder = 4
Caption = 'Proxy settings'
ClientHeight = 104
ClientWidth = 383
ParentFont = False
TabOrder = 0
object Label1: TLabel
AnchorSideLeft.Control = GroupBox1
AnchorSideTop.Control = GroupBox1
Left = 4
Height = 15
Top = 4
Width = 88
BorderSpacing.Left = 4
BorderSpacing.Top = 4
Caption = 'HTTP proxy URL:'
ParentFont = False
end
object EditHTTPProxyHost: TEdit
AnchorSideLeft.Control = GroupBox1
AnchorSideTop.Control = Label1
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = EditHTTPProxyPort
AnchorSideBottom.Control = Label1
Left = 4
Height = 23
Top = 23
Width = 274
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 4
BorderSpacing.Top = 4
BorderSpacing.Right = 12
OnDblClick = EditDblClickDelete
ParentFont = False
TabOrder = 0
end
object Label2: TLabel
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Label1
AnchorSideRight.Control = GroupBox1
AnchorSideRight.Side = asrBottom
Left = 290
Height = 15
Top = 4
Width = 89
Anchors = [akTop, akRight]
BorderSpacing.Left = 10
BorderSpacing.Right = 4
Caption = 'HTTP proxy port:'
ParentFont = False
end
object EditHTTPProxyPort: TEdit
AnchorSideLeft.Control = Label2
AnchorSideTop.Control = EditHTTPProxyHost
AnchorSideRight.Control = Label2
AnchorSideRight.Side = asrBottom
Left = 290
Height = 23
Top = 23
Width = 89
Anchors = [akTop, akLeft, akRight]
NumbersOnly = True
OnDblClick = EditDblClickDelete
ParentFont = False
TabOrder = 1
end
object Label3: TLabel
AnchorSideLeft.Control = GroupBox1
AnchorSideTop.Control = EditHTTPProxyHost
AnchorSideTop.Side = asrBottom
Left = 4
Height = 15
Top = 54
Width = 119
BorderSpacing.Left = 4
BorderSpacing.Top = 8
Caption = 'HTTP proxy username:'
ParentFont = False
end
object EditHTTPProxyUser: TEdit
AnchorSideLeft.Control = Label3
AnchorSideTop.Control = Label3
AnchorSideTop.Side = asrBottom
Left = 4
Height = 23
Top = 73
Width = 140
BorderSpacing.Top = 4
OnDblClick = EditDblClickDelete
ParentFont = False
TabOrder = 2
end
object Label4: TLabel
AnchorSideLeft.Control = Label3
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Label3
AnchorSideRight.Control = GroupBox1
AnchorSideRight.Side = asrBottom
Left = 262
Height = 15
Top = 54
Width = 117
Anchors = [akTop, akRight]
BorderSpacing.Right = 4
Caption = 'HTTP proxy password:'
ParentFont = False
end
object EditHTTPProxyPassword: TEdit
AnchorSideLeft.Control = Label4
AnchorSideTop.Control = EditHTTPProxyUser
AnchorSideRight.Control = Label4
AnchorSideRight.Side = asrBottom
Left = 262
Height = 23
Top = 73
Width = 117
Anchors = [akTop, akLeft, akRight]
EchoMode = emPassword
OnDblClick = EditDblClickDelete
ParentFont = False
PasswordChar = '*'
TabOrder = 3
end
end
object GroupBox2: TGroupBox
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = GroupBox1
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = ScrollBox1
AnchorSideBottom.Control = btnAddFPCPatch
Left = 8
Height = 430
Top = 140
Width = 392
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Left = 8
BorderSpacing.Top = 8
BorderSpacing.Right = 8
BorderSpacing.Bottom = 12
Caption = 'Miscellaneous settings'
ClientHeight = 410
ClientWidth = 388
ParentFont = False
TabOrder = 3
object MiscellaneousCheckListBox: TCheckListBox
Left = 4
Height = 402
Top = 4
Width = 380
Align = alClient
BorderSpacing.Left = 4
BorderSpacing.Top = 4
BorderSpacing.Right = 4
BorderSpacing.Bottom = 4
ExtendedSelect = False
ItemHeight = 0
ParentFont = False
TabOrder = 0
end
end
object ScrollBox1: TScrollBox
AnchorSideLeft.Control = GroupBox2
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = GroupBox2
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = ButtonPanel
Left = 408
Height = 419
Top = 140
Width = 366
HorzScrollBar.Page = 223
VertScrollBar.Page = 398
Anchors = [akTop, akRight, akBottom]
BorderSpacing.Left = 8
BorderSpacing.Right = 8
BorderSpacing.Bottom = 4
ClientHeight = 415
ClientWidth = 362
ParentFont = False
TabOrder = 4
object EditLibLocation: TEdit
AnchorSideLeft.Control = ScrollBox1
AnchorSideTop.Control = rgrpSearchOptions
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = btnSelectLibDir
Left = 4
Height = 23
Hint = 'Double click to clear'
Top = 185
Width = 260
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 4
BorderSpacing.Top = 8
BorderSpacing.Right = 12
Enabled = False
OnDblClick = EditDblClickDelete
ParentFont = False
ParentShowHint = False
ReadOnly = True
ShowHint = True
TabOrder = 0
end
object EditBinLocation: TEdit
AnchorSideLeft.Control = ScrollBox1
AnchorSideTop.Control = EditLibLocation
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = btnSelectBinDir
Left = 4
Height = 23
Hint = 'Double click to clear'
Top = 214
Width = 260
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 4
BorderSpacing.Top = 6
BorderSpacing.Right = 12
Enabled = False
OnDblClick = EditDblClickDelete
ParentFont = False
ParentShowHint = False
ReadOnly = True
ShowHint = True
TabOrder = 2
end
object btnSelectLibDir: TButton
AnchorSideLeft.Control = EditLibLocation
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = EditLibLocation
AnchorSideRight.Control = ScrollBox1
AnchorSideRight.Side = asrBottom
Left = 276
Height = 25
Top = 185
Width = 80
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Left = 8
BorderSpacing.Right = 6
Caption = 'Libraries'
Constraints.MinWidth = 80
Enabled = False
OnClick = OnDirectorySelect
ParentFont = False
TabOrder = 1
end
object btnSelectBinDir: TButton
AnchorSideLeft.Control = EditBinLocation
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = EditBinLocation
AnchorSideRight.Control = ScrollBox1
AnchorSideRight.Side = asrBottom
Left = 276
Height = 25
Top = 214
Width = 80
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Left = 8
BorderSpacing.Right = 6
Caption = 'Tools'
Constraints.MinWidth = 80
Enabled = False
OnClick = OnDirectorySelect
ParentFont = False
TabOrder = 3
end
object EditCrossBuildOptions: TEdit
AnchorSideLeft.Control = ScrollBox1
AnchorSideTop.Control = LabelCrossBuildOptions
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = ScrollBox1
AnchorSideRight.Side = asrBottom
Left = 4
Height = 23
Top = 268
Width = 344
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 4
BorderSpacing.Top = 4
BorderSpacing.Right = 14
Enabled = False
OnDblClick = EditDblClickDelete
OnEditingDone = EditCrossBuildOptionsEditingDone
ParentFont = False
TabOrder = 4
end
object LabelCrossBuildOptions: TLabel
AnchorSideLeft.Control = ScrollBox1
AnchorSideTop.Control = EditBinLocation
AnchorSideTop.Side = asrBottom
Left = 4
Height = 15
Top = 249
Width = 219
BorderSpacing.Left = 4
BorderSpacing.Top = 12
Caption = 'Cross Build Options Override (i.e. -CfSoft)'
ParentFont = False
end
object EditCompilerOverride: TEdit
AnchorSideLeft.Control = ScrollBox1
AnchorSideTop.Control = LabelCompilerOverride
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = btnSelectLibDir
Left = 4
Height = 23
Hint = 'Double click to clear'
Top = 316
Width = 260
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 4
BorderSpacing.Top = 4
BorderSpacing.Right = 12
Enabled = False
OnDblClick = EditDblClickDelete
ParentFont = False
ParentShowHint = False
ReadOnly = True
ShowHint = True
TabOrder = 5
end
object btnSelectCompiler: TButton
AnchorSideLeft.Control = EditLibLocation
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = EditCompilerOverride
AnchorSideRight.Control = ScrollBox1
AnchorSideRight.Side = asrBottom
Left = 276
Height = 25
Top = 316
Width = 80
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Left = 8
BorderSpacing.Right = 6
Caption = 'Compiler'
Constraints.MinWidth = 80
Enabled = False
OnClick = btnSelectFile
ParentFont = False
TabOrder = 6
end
object LabelCompilerOverride: TLabel
AnchorSideLeft.Control = ScrollBox1
AnchorSideTop.Control = EditCrossBuildOptions
AnchorSideTop.Side = asrBottom
Left = 4
Height = 15
Top = 297
Width = 97
BorderSpacing.Left = 4
BorderSpacing.Top = 6
Caption = 'Compiler Override'
ParentFont = False
end
object RadioGroupARMArch: TRadioGroup
AnchorSideLeft.Control = ScrollBox1
AnchorSideTop.Control = EditCompilerOverride
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = ScrollBox1
AnchorSideRight.Side = asrBottom
Left = 4
Height = 51
Top = 347
Width = 344
Anchors = [akTop, akLeft, akRight]
AutoFill = True
BorderSpacing.Left = 4
BorderSpacing.Top = 8
BorderSpacing.Right = 14
Caption = 'ARM target'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 4
Columns = 4
Enabled = False
OnSelectionChanged = RadioGroupARMArchSelectionChanged
ParentFont = False
TabOrder = 7
end
object PageControl1: TPageControl
AnchorSideLeft.Control = ScrollBox1
AnchorSideTop.Control = ScrollBox1
AnchorSideRight.Control = ScrollBox1
AnchorSideRight.Side = asrBottom
Left = 4
Height = 128
Top = 6
Width = 352
ActivePage = tsCPUOS
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 4
BorderSpacing.Top = 6
BorderSpacing.Right = 6
TabIndex = 0
TabOrder = 8
object tsCPUOS: TTabSheet
Caption = 'CPU/OS'
ClientHeight = 100
ClientWidth = 344
object LabelCPU: TLabel
AnchorSideLeft.Control = tsCPUOS
AnchorSideTop.Control = tsCPUOS
Left = 4
Height = 15
Top = 12
Width = 57
BorderSpacing.Left = 4
BorderSpacing.Top = 12
Caption = 'Select CPU'
ParentFont = False
end
object LabelOS: TLabel
AnchorSideLeft.Control = ComboBoxOS
AnchorSideTop.Control = LabelCPU
Left = 96
Height = 15
Top = 12
Width = 49
Caption = 'Select OS'
ParentFont = False
end
object ComboBoxCPU: TComboBox
AnchorSideLeft.Control = tsCPUOS
AnchorSideTop.Control = LabelCPU
AnchorSideTop.Side = asrBottom
Left = 4
Height = 23
Top = 35
Width = 84
BorderSpacing.Left = 4
BorderSpacing.Top = 8
ItemHeight = 15
OnChange = ComboBoxCPUOSChange
ParentFont = False
ParentShowHint = False
Style = csDropDownList
TabOrder = 0
end
object ComboBoxOS: TComboBox
AnchorSideLeft.Control = ComboBoxCPU
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = ComboBoxCPU
AnchorSideRight.Control = tsCPUOS
AnchorSideRight.Side = asrBottom
Left = 96
Height = 23
Top = 35
Width = 104
BorderSpacing.Left = 8
ItemHeight = 15
OnChange = ComboBoxCPUOSChange
ParentFont = False
Style = csDropDownList
TabOrder = 1
end
object btnListCustomOptions: TButton
AnchorSideTop.Control = ComboBoxOS
AnchorSideRight.Control = tsCPUOS
AnchorSideRight.Side = asrBottom
Left = 277
Height = 25
Top = 35
Width = 61
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Right = 6
Caption = 'List All'
OnClick = btnListCustomOptionsClick
ParentFont = False
TabOrder = 2
end
end
object tsSUBARCH: TTabSheet
Caption = 'Subarch'
ClientHeight = 100
ClientWidth = 344
object rgrpSubarch: TRadioGroup
AnchorSideLeft.Control = tsSUBARCH
AnchorSideTop.Control = tsSUBARCH
AnchorSideRight.Control = tsSUBARCH
AnchorSideRight.Side = asrBottom
Left = 4
Height = 60
Top = 8
Width = 334
Anchors = [akTop, akLeft, akRight]
AutoFill = True
AutoSize = True
BorderSpacing.Left = 4
BorderSpacing.Top = 8
BorderSpacing.Right = 6
Caption = 'Select subarch'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 4
Columns = 4
Constraints.MinHeight = 60
OnSelectionChanged = rgrpSubarchSelectionChanged
TabOrder = 0
end
end
end
object rgrpSearchOptions: TRadioGroup
AnchorSideLeft.Control = ScrollBox1
AnchorSideTop.Control = PageControl1
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = ScrollBox1
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Side = asrBottom
Left = 4
Height = 39
Top = 138
Width = 352
Anchors = [akTop, akLeft, akRight]
AutoFill = True
AutoSize = True
BorderSpacing.Left = 4
BorderSpacing.Top = 4
BorderSpacing.Right = 6
Caption = 'Search options'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 3
ClientHeight = 19
ClientWidth = 348
Columns = 3
Enabled = False
ItemIndex = 0
Items.Strings = (
'fpcup'
'full auto'
'custom'
)
OnSelectionChanged = rgrpSearchOptionsSelectionChanged
ParentFont = False
TabOrder = 9
end
end
object GroupBoxFPCLazBranchRevision: TGroupBox
AnchorSideLeft.Control = GroupBoxCompileOptions
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 574
Height = 124
Top = 8
Width = 200
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Left = 8
BorderSpacing.Top = 8
BorderSpacing.Right = 8
BorderSpacing.Bottom = 8
BorderSpacing.InnerBorder = 4
Caption = 'Branch and revision'
ClientHeight = 104
ClientWidth = 196
ParentFont = False
TabOrder = 2
object EditFPCBranch: TEdit
AnchorSideLeft.Control = GroupBoxFPCLazBranchRevision
AnchorSideTop.Control = LabelFPCbranch
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = EditFPCRevision
Left = 4
Height = 23
Top = 23
Width = 88
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 4
BorderSpacing.Top = 4
BorderSpacing.Right = 8
ParentFont = False
TabOrder = 0
end
object LabelFPCbranch: TLabel
AnchorSideLeft.Control = EditFPCBranch
AnchorSideTop.Control = GroupBoxFPCLazBranchRevision
Left = 8
Height = 15
Top = 4
Width = 61
BorderSpacing.Left = 4
BorderSpacing.Top = 4
Caption = 'FPC branch'
ParentFont = False
end
object EditFPCRevision: TEdit
AnchorSideLeft.Control = LabelFPCRevision
AnchorSideTop.Control = LabelFPCRevision
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = GroupBoxFPCLazBranchRevision
AnchorSideRight.Side = asrBottom
Left = 100
Height = 23
Top = 23
Width = 92
Anchors = [akTop, akRight]
BorderSpacing.Top = 4
BorderSpacing.Right = 4
ParentFont = False
TabOrder = 1
end
object LabelFPCRevision: TLabel
AnchorSideLeft.Control = EditFPCRevision
AnchorSideTop.Control = LabelFPCbranch
Left = 100
Height = 15
Top = 4
Width = 65
Caption = 'FPC revision'
ParentFont = False
end
object LabelLazarusbranch: TLabel
AnchorSideLeft.Control = EditLazarusBranch
AnchorSideTop.Control = EditFPCBranch
AnchorSideTop.Side = asrBottom
Left = 4
Height = 15
Top = 54
Width = 60
BorderSpacing.Top = 8
Caption = 'Laz. branch'
ParentFont = False
end
object EditLazarusBranch: TEdit
AnchorSideLeft.Control = GroupBoxFPCLazBranchRevision
AnchorSideTop.Control = LabelLazarusbranch
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = EditLazarusRevision
Left = 4
Height = 23
Top = 73
Width = 88
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 4
BorderSpacing.Top = 4
BorderSpacing.Right = 8
ParentFont = False
TabOrder = 2
end
object LabelLazarusRevision: TLabel
AnchorSideLeft.Control = EditLazarusRevision
AnchorSideTop.Control = LabelLazarusbranch
Left = 100
Height = 15
Top = 54
Width = 64
Caption = 'Laz. revision'
ParentFont = False
end
object EditLazarusRevision: TEdit
AnchorSideLeft.Control = LabelLazarusRevision
AnchorSideTop.Control = LabelLazarusRevision
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = GroupBoxFPCLazBranchRevision
AnchorSideRight.Side = asrBottom
Left = 100
Height = 23
Top = 73
Width = 92
Anchors = [akTop, akRight]
BorderSpacing.Top = 4
BorderSpacing.Right = 4
ParentFont = False
TabOrder = 3
end
end
object GroupBoxCompileOptions: TGroupBox
AnchorSideLeft.Control = GroupBox1
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Owner
AnchorSideRight.Control = GroupBoxFPCLazBranchRevision
Left = 403
Height = 124
Top = 8
Width = 163
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Left = 8
BorderSpacing.Top = 8
BorderSpacing.Right = 8
BorderSpacing.Bottom = 8
BorderSpacing.InnerBorder = 4
Caption = 'Options Override'
ClientHeight = 104
ClientWidth = 159
ParentFont = False
TabOrder = 1
object LabelFPCOptions: TLabel
AnchorSideTop.Control = GroupBoxCompileOptions
Left = 4
Height = 15
Top = 4
Width = 64
BorderSpacing.Left = 4
BorderSpacing.Top = 4
Caption = 'FPC options'
ParentFont = False
end
object EditFPCOptions: TEdit
AnchorSideLeft.Control = LabelFPCOptions
AnchorSideTop.Control = LabelFPCOptions
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = chkFPCDebug
Left = 4
Height = 23
Top = 23
Width = 88
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 4
OnDblClick = EditDblClickDelete
ParentFont = False
TabOrder = 0
end
object LabelLazarusOptions: TLabel
AnchorSideTop.Control = EditFPCOptions
AnchorSideTop.Side = asrBottom
Left = 4
Height = 15
Top = 54
Width = 63
BorderSpacing.Top = 8
Caption = 'Laz. options'
ParentFont = False
end
object EditLazarusOptions: TEdit
AnchorSideLeft.Control = LabelLazarusOptions
AnchorSideTop.Control = LabelLazarusOptions
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = chkLazarusDebug
Left = 4
Height = 23
Top = 73
Width = 88
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 4
OnDblClick = EditDblClickDelete
ParentFont = False
TabOrder = 1
end
object chkFPCDebug: TCheckBox
AnchorSideLeft.Control = EditFPCOptions
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = EditFPCOptions
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = GroupBoxCompileOptions
AnchorSideRight.Side = asrBottom
Left = 104
Height = 19
Top = 25
Width = 55
Anchors = [akTop, akRight]
BorderSpacing.Left = 12
Caption = 'Debug'
TabOrder = 2
end
object chkLazarusDebug: TCheckBox
AnchorSideLeft.Control = EditLazarusOptions
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = EditLazarusOptions
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = GroupBoxCompileOptions
AnchorSideRight.Side = asrBottom
Left = 104
Height = 19
Top = 75
Width = 55
Anchors = [akTop, akRight]
BorderSpacing.Left = 12
Caption = 'Debug'
TabOrder = 3
end
end
object ListBoxFPCPatch: TListBox
AnchorSideLeft.Control = btnRemFPCPatch
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = btnAddFPCPatch
AnchorSideBottom.Control = btnRemFPCPatch
AnchorSideBottom.Side = asrBottom
Left = 134
Height = 70
Top = 582
Width = 170
Anchors = [akTop, akLeft, akBottom]
BorderSpacing.Left = 8
ClickOnSelChange = False
ExtendedSelect = False
ItemHeight = 0
ParentFont = False
TabOrder = 5
end
object btnAddFPCPatch: TButton
AnchorSideLeft.Control = btnRemFPCPatch
AnchorSideBottom.Control = btnRemFPCPatch
Left = 6
Height = 25
Top = 582
Width = 120
Anchors = [akLeft, akBottom]
AutoSize = True
BorderSpacing.Bottom = 20
Caption = 'Add FPC patch'
Constraints.MinHeight = 24
Constraints.MinWidth = 120
OnClick = btnAddPatchClick
ParentFont = False
TabOrder = 6
end
object btnRemFPCPatch: TButton
AnchorSideLeft.Control = Owner
AnchorSideBottom.Control = Owner
AnchorSideBottom.Side = asrBottom
Left = 6
Height = 25
Top = 627
Width = 120
Anchors = [akLeft, akBottom]
AutoSize = True
BorderSpacing.Left = 6
BorderSpacing.Bottom = 8
Caption = 'Rem. FPC patch'
Constraints.MinHeight = 24
Constraints.MinWidth = 120
OnClick = btnRemPatchClick
ParentFont = False
TabOrder = 7
end
object ListBoxLazPatch: TListBox
AnchorSideLeft.Control = btnRemLazPatch
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = btnAddFPCPatch
AnchorSideBottom.Control = btnRemFPCPatch
AnchorSideBottom.Side = asrBottom
Left = 450
Height = 70
Top = 582
Width = 170
Anchors = [akTop, akLeft, akBottom]
BorderSpacing.Left = 6
ClickOnSelChange = False
ExtendedSelect = False
ItemHeight = 0
ParentFont = False
TabOrder = 8
end
object btnAddLazPatch: TButton
AnchorSideLeft.Control = btnRemLazPatch
AnchorSideTop.Control = btnAddFPCPatch
AnchorSideBottom.Control = btnRemLazPatch
Left = 324
Height = 25
Top = 582
Width = 120
AutoSize = True
Caption = 'Add Laz. patch'
Constraints.MinHeight = 24
Constraints.MinWidth = 120
OnClick = btnAddPatchClick
ParentFont = False
TabOrder = 9
end
object btnRemLazPatch: TButton
AnchorSideLeft.Control = ListBoxFPCPatch
AnchorSideLeft.Side = asrBottom
AnchorSideBottom.Control = btnRemFPCPatch
AnchorSideBottom.Side = asrBottom
Left = 324
Height = 25
Top = 627
Width = 120
Anchors = [akLeft, akBottom]
AutoSize = True
BorderSpacing.Left = 20
Caption = 'Rem. Laz. patch'
Constraints.MinHeight = 24
Constraints.MinWidth = 120
OnClick = btnRemPatchClick
ParentFont = False
TabOrder = 10
end
object ButtonPanel: TPanel
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = Owner
AnchorSideBottom.Side = asrBottom
Left = 676
Height = 89
Top = 563
Width = 98
Anchors = [akRight, akBottom]
BorderSpacing.Right = 8
BorderSpacing.Bottom = 8
ClientHeight = 89
ClientWidth = 98
ParentFont = False
TabOrder = 11
object BitBtn1: TBitBtn
AnchorSideLeft.Control = ButtonPanel
AnchorSideTop.Control = ButtonPanel
AnchorSideRight.Control = ButtonPanel
AnchorSideRight.Side = asrBottom
Left = 5
Height = 35
Top = 5
Width = 88
Anchors = [akTop, akLeft, akRight, akBottom]
AutoSize = True
BorderSpacing.Left = 4
BorderSpacing.Top = 4
BorderSpacing.Right = 4
Constraints.MinHeight = 35
Default = True
DefaultCaption = True
Kind = bkOK
ModalResult = 1
ParentFont = False
TabOrder = 0
end
object BitBtn2: TBitBtn
AnchorSideLeft.Control = ButtonPanel
AnchorSideRight.Control = ButtonPanel
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = ButtonPanel
AnchorSideBottom.Side = asrBottom
Left = 5
Height = 35
Top = 49
Width = 88
Anchors = [akLeft, akRight, akBottom]
AutoSize = True
BorderSpacing.Left = 4
BorderSpacing.Right = 4
BorderSpacing.Bottom = 4
Cancel = True
Constraints.MinHeight = 35
DefaultCaption = True
Kind = bkCancel
ModalResult = 2
ParentFont = False
TabOrder = 1
end
end
object SelectDirectoryDialog1: TSelectDirectoryDialog
Options = [ofPathMustExist, ofFileMustExist, ofEnableSizing, ofViewDetail]
Left = 80
Top = 264
end
object OpenDialog1: TOpenDialog
Filter = 'Patch|*.patch|Diff|*.diff|All|*.*'
Options = [ofFileMustExist, ofNoNetworkButton, ofEnableSizing, ofViewDetail, ofAutoPreview]
Left = 80
Top = 352
end
object IniPropStorageSettings: TIniPropStorage
StoredValues = <>
OnSavingProperties = IniPropStorageSettingsSavingProperties
OnRestoringProperties = IniPropStorageSettingsRestoringProperties
Left = 80