File: opkman_optionsfrm.lfm

package info (click to toggle)
lazarus 2.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 214,460 kB
  • sloc: pascal: 1,862,622; xml: 265,709; cpp: 56,595; sh: 3,008; java: 609; makefile: 535; perl: 297; sql: 222; ansic: 137
file content (896 lines) | stat: -rw-r--r-- 28,093 bytes parent folder | download | duplicates (2)
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
object OptionsFrm: TOptionsFrm
  Left = 338
  Height = 556
  Top = 131
  Width = 635
  BorderIcons = [biSystemMenu]
  Caption = 'Options'
  ClientHeight = 556
  ClientWidth = 635
  Constraints.MinHeight = 300
  Constraints.MinWidth = 475
  KeyPreview = True
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  OnKeyPress = FormKeyPress
  PopupMode = pmExplicit
  Position = poOwnerFormCenter
  LCLVersion = '1.9.0.0'
  object pnBottom: TPanel
    Left = 0
    Height = 46
    Top = 510
    Width = 635
    Align = alBottom
    AutoSize = True
    BevelOuter = bvNone
    ClientHeight = 46
    ClientWidth = 635
    TabOrder = 1
    object bpOptions: TButtonPanel
      Left = 6
      Height = 34
      Top = 6
      Width = 623
      OKButton.Name = 'OKButton'
      OKButton.DefaultCaption = True
      OKButton.OnClick = OKButtonClick
      HelpButton.Name = 'HelpButton'
      HelpButton.Caption = '&Restore defaults'
      HelpButton.DefaultCaption = False
      HelpButton.OnClick = HelpButtonClick
      CloseButton.Name = 'CloseButton'
      CloseButton.DefaultCaption = True
      CancelButton.Name = 'CancelButton'
      CancelButton.DefaultCaption = True
      TabOrder = 0
      ShowButtons = [pbOK, pbCancel, pbHelp]
    end
  end
  object pgOptions: TPageControl
    Left = 6
    Height = 498
    Top = 6
    Width = 623
    ActivePage = tsFolders
    Align = alClient
    BorderSpacing.Around = 6
    TabIndex = 2
    TabOrder = 0
    object tsGeneral: TTabSheet
      Caption = 'General'
      ClientHeight = 470
      ClientWidth = 615
      object pnGeneral: TPanel
        Left = 0
        Height = 470
        Top = 0
        Width = 615
        Align = alClient
        BevelOuter = bvNone
        ClientHeight = 470
        ClientWidth = 615
        ParentColor = False
        TabOrder = 0
        object lbRemoteRepository: TLabel
          AnchorSideLeft.Control = pnGeneral
          Left = 6
          Height = 15
          Top = 8
          Width = 100
          BorderSpacing.Left = 6
          Caption = 'Remote repository:'
          ParentColor = False
        end
        object cbForceDownloadExtract: TCheckBox
          AnchorSideLeft.Control = lbRemoteRepository
          AnchorSideTop.Control = pnRepositories
          AnchorSideTop.Side = asrBottom
          Left = 6
          Height = 19
          Top = 56
          Width = 235
          BorderSpacing.Top = 6
          Caption = ' Force download and extract of packages'
          ParentShowHint = False
          ShowHint = True
          TabOrder = 1
        end
        object cbDeleteZipAfterInstall: TCheckBox
          AnchorSideLeft.Control = lbRemoteRepository
          AnchorSideTop.Control = cbForceDownloadExtract
          AnchorSideTop.Side = asrBottom
          Left = 6
          Height = 19
          Top = 77
          Width = 294
          BorderSpacing.Top = 2
          Caption = 'Delete downloaded zip files after installation/update'
          ParentShowHint = False
          ShowHint = True
          TabOrder = 2
        end
        object lbUpdates: TLabel
          AnchorSideLeft.Control = lbRemoteRepository
          AnchorSideTop.Control = Bevel1
          Left = 6
          Height = 15
          Top = 157
          Width = 146
          BorderSpacing.Top = 5
          Caption = 'Check for package updates:'
          ParentColor = False
        end
        object cbCheckForUpdates: TComboBox
          AnchorSideLeft.Control = lbRemoteRepository
          AnchorSideTop.Control = lbUpdates
          AnchorSideTop.Side = asrBottom
          Left = 6
          Height = 23
          Top = 178
          Width = 209
          BorderSpacing.Top = 6
          ItemHeight = 15
          ItemIndex = 0
          Items.Strings = (
            'Every few minutes'
            'Every hour    '
            'Once per day'
            'Weekly'
            'Montly'
            'Never'
          )
          Style = csDropDownList
          TabOrder = 4
          Text = 'Every few minutes'
        end
        object lbLastUpdate: TLabel
          AnchorSideLeft.Control = cbCheckForUpdates
          AnchorSideLeft.Side = asrBottom
          AnchorSideTop.Control = cbCheckForUpdates
          AnchorSideTop.Side = asrCenter
          Left = 230
          Height = 15
          Top = 182
          Width = 64
          BorderSpacing.Left = 15
          Caption = 'Last update:'
          ParentColor = False
        end
        object pnRepositories: TPanel
          AnchorSideLeft.Control = lbRemoteRepository
          AnchorSideTop.Control = lbRemoteRepository
          AnchorSideTop.Side = asrBottom
          AnchorSideRight.Control = pnGeneral
          AnchorSideRight.Side = asrBottom
          Left = 6
          Height = 23
          Top = 27
          Width = 603
          Anchors = [akTop, akLeft, akRight]
          AutoSize = True
          BorderSpacing.Top = 4
          BorderSpacing.Right = 6
          BevelOuter = bvNone
          ClientHeight = 23
          ClientWidth = 603
          TabOrder = 0
          object cbRemoteRepository: TComboBox
            AnchorSideLeft.Control = pnRepositories
            AnchorSideTop.Control = pnRepositories
            AnchorSideRight.Control = bOpen
            Left = 0
            Height = 23
            Top = 0
            Width = 540
            Anchors = [akTop, akLeft, akRight]
            BorderSpacing.Right = 2
            ItemHeight = 15
            Style = csDropDownList
            TabOrder = 0
          end
          object bOpen: TButton
            AnchorSideLeft.Control = cbRemoteRepository
            AnchorSideLeft.Side = asrBottom
            AnchorSideTop.Control = cbRemoteRepository
            AnchorSideRight.Control = pnRepositories
            AnchorSideRight.Side = asrBottom
            AnchorSideBottom.Control = cbRemoteRepository
            AnchorSideBottom.Side = asrBottom
            Left = 542
            Height = 23
            Top = 0
            Width = 61
            Anchors = [akTop, akRight, akBottom]
            Caption = '...'
            OnClick = bOpenClick
            TabOrder = 1
          end
        end
        object lbDaysToShowNewPackages: TLabel
          AnchorSideLeft.Control = lbRemoteRepository
          AnchorSideTop.Control = cbCheckForUpdates
          AnchorSideTop.Side = asrBottom
          Left = 6
          Height = 15
          Top = 216
          Width = 204
          BorderSpacing.Top = 15
          Caption = 'Show newly added packages for(days):'
          ParentColor = False
        end
        object spDaysToShowNewPackages: TSpinEdit
          AnchorSideLeft.Control = lbDaysToShowNewPackages
          AnchorSideLeft.Side = asrBottom
          AnchorSideTop.Control = lbDaysToShowNewPackages
          AnchorSideTop.Side = asrCenter
          Left = 216
          Height = 23
          Top = 212
          Width = 76
          BorderSpacing.Left = 6
          MaxValue = 365
          TabOrder = 5
          Value = 31
        end
        object cbRegularIcons: TCheckBox
          AnchorSideLeft.Control = lbDaysToShowNewPackages
          AnchorSideTop.Control = lbDaysToShowNewPackages
          AnchorSideTop.Side = asrBottom
          Left = 6
          Height = 19
          Top = 241
          Width = 232
          BorderSpacing.Top = 10
          Caption = 'Show regular icon for installed packages'
          TabOrder = 6
        end
        object cbUseDefaultTheme: TCheckBox
          AnchorSideLeft.Control = lbDaysToShowNewPackages
          AnchorSideTop.Control = Bevel3
          AnchorSideTop.Side = asrBottom
          Left = 6
          Height = 19
          Top = 399
          Width = 116
          BorderSpacing.Top = 7
          Caption = 'Use default theme'
          TabOrder = 8
        end
        object Bevel1: TBevel
          AnchorSideTop.Control = lbConTimeOut
          AnchorSideTop.Side = asrBottom
          Left = 0
          Height = 2
          Top = 152
          Width = 611
          Anchors = [akTop, akLeft, akRight]
          BorderSpacing.Top = 25
        end
        object Bevel2: TBevel
          AnchorSideTop.Control = cbRegularIcons
          AnchorSideTop.Side = asrBottom
          Left = 4
          Height = 2
          Top = 285
          Width = 611
          Anchors = [akTop, akLeft, akRight]
          BorderSpacing.Top = 25
        end
        object lbConTimeOut: TLabel
          AnchorSideLeft.Control = lbRemoteRepository
          AnchorSideTop.Control = cbDeleteZipAfterInstall
          AnchorSideTop.Side = asrBottom
          Left = 6
          Height = 15
          Top = 112
          Width = 164
          BorderSpacing.Top = 16
          Caption = 'Connection timeout(seconds): '
          ParentColor = False
          ParentShowHint = False
          ShowHint = True
        end
        object spConTimeOut: TSpinEdit
          AnchorSideLeft.Control = lbConTimeOut
          AnchorSideLeft.Side = asrBottom
          AnchorSideTop.Control = lbConTimeOut
          AnchorSideTop.Side = asrCenter
          Left = 176
          Height = 23
          Top = 108
          Width = 55
          BorderSpacing.Left = 6
          MinValue = 1
          TabOrder = 3
          Value = 10
        end
        object Bevel3: TBevel
          AnchorSideTop.Control = rbHintFormOptions
          AnchorSideTop.Side = asrBottom
          Left = 4
          Height = 2
          Top = 390
          Width = 611
          Anchors = [akTop, akLeft, akRight]
          BorderSpacing.Top = 10
        end
        object rbHintFormOptions: TRadioGroup
          AnchorSideTop.Control = Bevel2
          AnchorSideTop.Side = asrBottom
          AnchorSideRight.Control = pnGeneral
          AnchorSideRight.Side = asrBottom
          Left = 6
          Height = 88
          Top = 292
          Width = 599
          Anchors = [akTop, akLeft, akRight]
          AutoFill = True
          BorderSpacing.Top = 5
          BorderSpacing.Right = 10
          Caption = 'Options'
          ChildSizing.LeftRightSpacing = 6
          ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
          ChildSizing.EnlargeVertical = crsHomogenousChildResize
          ChildSizing.ShrinkHorizontal = crsScaleChilds
          ChildSizing.ShrinkVertical = crsScaleChilds
          ChildSizing.Layout = cclLeftToRightThenTopToBottom
          ChildSizing.ControlsPerLine = 1
          ClientHeight = 68
          ClientWidth = 595
          ItemIndex = 0
          Items.Strings = (
            'Behaves like a regular hint window'
            'It''s triggered by SHIFT, moves with the mouse'
            'Off'
          )
          TabOrder = 7
          object bColors: TButton
            AnchorSideTop.Control = rbHintFormOptions
            AnchorSideRight.Control = rbHintFormOptions
            AnchorSideRight.Side = asrBottom
            AnchorSideBottom.Control = rbHintFormOptions
            AnchorSideBottom.Side = asrBottom
            Left = 480
            Height = 26
            Top = 21
            Width = 105
            Anchors = [akTop, akRight, akBottom]
            BorderSpacing.Top = 21
            BorderSpacing.Right = 10
            BorderSpacing.Bottom = 21
            Caption = 'Colors'
            OnClick = bColorsClick
            TabOrder = 3
          end
        end
      end
    end
    object tsProxy: TTabSheet
      Caption = 'Proxy'
      ClientHeight = 484
      ClientWidth = 570
      object pnProxy: TPanel
        Left = 0
        Height = 484
        Top = 0
        Width = 570
        Align = alClient
        BevelOuter = bvNone
        ClientHeight = 484
        ClientWidth = 570
        ParentColor = False
        TabOrder = 0
        object cbProxy: TCheckBox
          Left = 8
          Height = 19
          Top = 15
          Width = 71
          Caption = 'Use Proxy'
          OnChange = cbProxyChange
          TabOrder = 0
        end
        object gbProxySettings: TGroupBox
          AnchorSideLeft.Control = cbProxy
          AnchorSideTop.Control = cbProxy
          AnchorSideTop.Side = asrBottom
          Left = 8
          Height = 144
          Top = 40
          Width = 411
          BorderSpacing.Top = 6
          Caption = 'Proxy Settings'
          ClientHeight = 124
          ClientWidth = 407
          TabOrder = 1
          object edProxyServer: TEdit
            AnchorSideLeft.Control = lbServer
            AnchorSideTop.Control = lbServer
            AnchorSideTop.Side = asrBottom
            Left = 8
            Height = 23
            Top = 22
            Width = 304
            BorderSpacing.Top = 4
            OnKeyPress = edRemoteRepositoryKeyPress
            TabOrder = 0
            Text = 'http://localhost/packages/'
          end
          object lbServer: TLabel
            Left = 8
            Height = 15
            Top = 3
            Width = 32
            Caption = 'Server'
            ParentColor = False
          end
          object lbUserName: TLabel
            AnchorSideLeft.Control = lbServer
            AnchorSideTop.Control = edProxyServer
            AnchorSideTop.Side = asrBottom
            Left = 8
            Height = 15
            Top = 51
            Width = 53
            BorderSpacing.Top = 6
            Caption = 'Username'
            ParentColor = False
          end
          object edProxyUser: TEdit
            AnchorSideLeft.Control = lbUserName
            AnchorSideTop.Control = lbUserName
            AnchorSideTop.Side = asrBottom
            Left = 8
            Height = 23
            Top = 70
            Width = 186
            BorderSpacing.Top = 4
            OnKeyPress = edRemoteRepositoryKeyPress
            TabOrder = 2
            Text = 'username'
          end
          object lbPort: TLabel
            AnchorSideLeft.Control = seProxyPort
            AnchorSideTop.Control = lbServer
            Left = 318
            Height = 15
            Top = 3
            Width = 22
            Caption = 'Port'
            ParentColor = False
          end
          object lbPassword: TLabel
            AnchorSideLeft.Control = edProxyUser
            AnchorSideLeft.Side = asrBottom
            AnchorSideTop.Control = lbUserName
            Left = 200
            Height = 15
            Top = 51
            Width = 50
            BorderSpacing.Left = 6
            Caption = 'Password'
            ParentColor = False
          end
          object edProxyPassword: TEdit
            AnchorSideLeft.Control = lbPassword
            AnchorSideTop.Control = edProxyUser
            AnchorSideRight.Control = seProxyPort
            AnchorSideRight.Side = asrBottom
            Left = 200
            Height = 23
            Top = 70
            Width = 193
            Anchors = [akTop, akLeft, akRight]
            EchoMode = emPassword
            OnKeyPress = edRemoteRepositoryKeyPress
            PasswordChar = '*'
            TabOrder = 3
            Text = 'password'
          end
          object seProxyPort: TSpinEdit
            AnchorSideLeft.Control = edProxyServer
            AnchorSideLeft.Side = asrBottom
            AnchorSideTop.Control = edProxyServer
            Left = 318
            Height = 23
            Top = 22
            Width = 75
            BorderSpacing.Left = 6
            MaxValue = 65635
            TabOrder = 1
          end
        end
      end
    end
    object tsFolders: TTabSheet
      Caption = 'Folders'
      ClientHeight = 470
      ClientWidth = 615
      object pnFolders: TPanel
        Left = 0
        Height = 470
        Top = 0
        Width = 615
        Align = alClient
        BevelOuter = bvNone
        ClientHeight = 470
        ClientWidth = 615
        ParentColor = False
        TabOrder = 0
        object lbLocalRepositoryPackages: TLabel
          Left = 8
          Height = 15
          Top = 16
          Width = 84
          Caption = 'Local repository'
          ParentColor = False
          ParentShowHint = False
        end
        object lbLocalRepositoryArchive: TLabel
          AnchorSideLeft.Control = lbLocalRepositoryPackages
          AnchorSideTop.Control = edLocalRepositoryPackages
          AnchorSideTop.Side = asrBottom
          Left = 8
          Height = 15
          Top = 70
          Width = 125
          BorderSpacing.Top = 12
          Caption = 'Local repository archive'
          ParentColor = False
          ParentShowHint = False
        end
        object lbLocalRepositoryUpdate: TLabel
          AnchorSideLeft.Control = lbLocalRepositoryPackages
          AnchorSideTop.Control = edLocalRepositoryArchive
          AnchorSideTop.Side = asrBottom
          Left = 8
          Height = 15
          Top = 124
          Width = 124
          BorderSpacing.Top = 12
          Caption = 'Local repository update'
          ParentColor = False
          ParentShowHint = False
        end
        object edLocalRepositoryPackages: TDirectoryEdit
          AnchorSideLeft.Control = lbLocalRepositoryPackages
          AnchorSideTop.Control = lbLocalRepositoryPackages
          AnchorSideTop.Side = asrBottom
          AnchorSideRight.Control = pnFolders
          AnchorSideRight.Side = asrBottom
          Left = 8
          Height = 23
          Top = 35
          Width = 601
          Directory = 'edLocalRepositoryPackages'
          ShowHidden = False
          ButtonWidth = 50
          NumGlyphs = 1
          Anchors = [akTop, akLeft, akRight]
          BorderSpacing.Top = 4
          BorderSpacing.Right = 6
          MaxLength = 0
          ParentShowHint = False
          ShowHint = True
          TabOrder = 0
          OnButtonClick = edLocalRepositoryPackagesButtonClick
          Text = 'edLocalRepositoryPackages'
        end
        object edLocalRepositoryArchive: TDirectoryEdit
          Tag = 1
          AnchorSideLeft.Control = lbLocalRepositoryArchive
          AnchorSideTop.Control = lbLocalRepositoryArchive
          AnchorSideTop.Side = asrBottom
          AnchorSideRight.Control = edLocalRepositoryPackages
          AnchorSideRight.Side = asrBottom
          Left = 8
          Height = 23
          Top = 89
          Width = 601
          ShowHidden = False
          ButtonWidth = 50
          NumGlyphs = 1
          Anchors = [akTop, akLeft, akRight]
          BorderSpacing.Top = 4
          MaxLength = 0
          ParentShowHint = False
          ShowHint = True
          TabOrder = 1
          OnButtonClick = edLocalRepositoryPackagesButtonClick
        end
        object edLocalRepositoryUpdate: TDirectoryEdit
          Tag = 2
          AnchorSideLeft.Control = lbLocalRepositoryUpdate
          AnchorSideTop.Control = lbLocalRepositoryUpdate
          AnchorSideTop.Side = asrBottom
          AnchorSideRight.Control = edLocalRepositoryArchive
          AnchorSideRight.Side = asrBottom
          Left = 8
          Height = 23
          Top = 143
          Width = 601
          ShowHidden = False
          ButtonWidth = 50
          NumGlyphs = 1
          Anchors = [akTop, akLeft, akRight]
          BorderSpacing.Top = 4
          MaxLength = 0
          ParentShowHint = False
          ShowHint = True
          TabOrder = 2
          OnButtonClick = edLocalRepositoryPackagesButtonClick
        end
      end
    end
    object tsProfiles: TTabSheet
      Caption = 'Profiles'
      ClientHeight = 484
      ClientWidth = 570
      object pnProfiles: TPanel
        Left = 0
        Height = 484
        Top = 0
        Width = 570
        Align = alClient
        BevelOuter = bvNone
        ClientHeight = 484
        ClientWidth = 570
        ParentColor = False
        TabOrder = 0
        object pnProfilesTop: TPanel
          Left = 0
          Height = 48
          Top = 0
          Width = 570
          Align = alTop
          BevelOuter = bvNone
          ClientHeight = 48
          ClientWidth = 570
          TabOrder = 0
          OnResize = pnProfilesTopResize
          object lbSelectProfile: TLabel
            Left = 8
            Height = 15
            Top = 15
            Width = 68
            Caption = 'Select profile'
            ParentColor = False
          end
          object cbSelectProfile: TComboBox
            AnchorSideLeft.Control = lbSelectProfile
            AnchorSideLeft.Side = asrBottom
            AnchorSideTop.Control = lbSelectProfile
            AnchorSideTop.Side = asrCenter
            Left = 82
            Height = 23
            Top = 11
            Width = 192
            BorderSpacing.Left = 6
            ItemHeight = 15
            ItemIndex = 0
            Items.Strings = (
              'Regular user'
              'Package maintainer'
            )
            OnChange = cbSelectProfileChange
            ParentShowHint = False
            ShowHint = True
            Style = csDropDownList
            TabOrder = 0
            Text = 'Regular user'
          end
        end
        object pnProfilesMain: TPanel
          Left = 0
          Height = 436
          Top = 48
          Width = 570
          Align = alClient
          BevelOuter = bvNone
          ClientHeight = 436
          ClientWidth = 570
          TabOrder = 1
          OnResize = pnProfilesMainResize
          object pnProfilesLeft: TPanel
            AnchorSideLeft.Control = pnProfilesMain
            AnchorSideTop.Control = pnProfilesMain
            Left = 0
            Height = 436
            Top = 0
            Width = 282
            Align = alLeft
            BevelOuter = bvNone
            ClientHeight = 436
            ClientWidth = 282
            TabOrder = 0
            object lbExcludeFiles: TListBox
              AnchorSideLeft.Control = lbFilterFiles
              AnchorSideTop.Control = lbFilterFiles
              AnchorSideTop.Side = asrBottom
              AnchorSideRight.Control = bFilesAdd
              AnchorSideBottom.Control = pnProfilesLeft
              AnchorSideBottom.Side = asrBottom
              Left = 6
              Height = 407
              Top = 23
              Width = 190
              Anchors = [akTop, akLeft, akRight, akBottom]
              BorderSpacing.Top = 4
              BorderSpacing.Right = 6
              BorderSpacing.Bottom = 6
              ItemHeight = 0
              ParentShowHint = False
              ScrollWidth = 151
              ShowHint = True
              Sorted = True
              TabOrder = 0
            end
            object lbFilterFiles: TLabel
              AnchorSideLeft.Control = pnProfilesLeft
              AnchorSideTop.Control = pnProfilesLeft
              Left = 6
              Height = 15
              Top = 4
              Width = 117
              BorderSpacing.Left = 6
              BorderSpacing.Top = 4
              Caption = 'Exclude file extensions'
              ParentColor = False
            end
            object bFilesAdd: TButton
              AnchorSideTop.Control = lbExcludeFiles
              AnchorSideRight.Control = pnProfilesLeft
              AnchorSideRight.Side = asrBottom
              Left = 202
              Height = 25
              Top = 23
              Width = 80
              Anchors = [akTop, akRight]
              AutoSize = True
              Caption = 'Add'
              Constraints.MinWidth = 80
              OnClick = bFilesAddClick
              TabOrder = 1
            end
            object bFilesEdit: TButton
              AnchorSideLeft.Control = bFilesAdd
              AnchorSideTop.Control = bFilesAdd
              AnchorSideTop.Side = asrBottom
              AnchorSideRight.Control = pnProfilesLeft
              AnchorSideRight.Side = asrBottom
              Left = 202
              Height = 25
              Top = 52
              Width = 80
              Anchors = [akTop, akLeft, akRight]
              AutoSize = True
              BorderSpacing.Top = 4
              Caption = 'Edit'
              OnClick = bFilesEditClick
              TabOrder = 2
            end
            object bFilesDelete: TButton
              AnchorSideLeft.Control = bFilesAdd
              AnchorSideTop.Control = bFilesEdit
              AnchorSideTop.Side = asrBottom
              AnchorSideRight.Control = pnProfilesLeft
              AnchorSideRight.Side = asrBottom
              Left = 202
              Height = 25
              Top = 81
              Width = 80
              Anchors = [akTop, akLeft, akRight]
              AutoSize = True
              BorderSpacing.Top = 4
              Caption = 'Delete'
              OnClick = bFilesDeleteClick
              TabOrder = 3
            end
          end
          object pnProfilesRight: TPanel
            Left = 282
            Height = 436
            Top = 0
            Width = 282
            Align = alClient
            BorderSpacing.Right = 6
            BevelOuter = bvNone
            ClientHeight = 436
            ClientWidth = 282
            TabOrder = 1
            object lbExcludeFolders: TListBox
              AnchorSideLeft.Control = lbFilterDirs
              AnchorSideTop.Control = lbFilterDirs
              AnchorSideTop.Side = asrBottom
              AnchorSideRight.Control = bFoldersAdd
              AnchorSideBottom.Control = pnProfilesRight
              AnchorSideBottom.Side = asrBottom
              Left = 6
              Height = 407
              Top = 23
              Width = 190
              Anchors = [akTop, akLeft, akRight, akBottom]
              BorderSpacing.Top = 4
              BorderSpacing.Right = 6
              BorderSpacing.Bottom = 6
              ItemHeight = 0
              ParentShowHint = False
              ScrollWidth = 160
              ShowHint = True
              Sorted = True
              TabOrder = 0
            end
            object lbFilterDirs: TLabel
              AnchorSideLeft.Control = pnProfilesRight
              AnchorSideTop.Control = pnProfilesRight
              Left = 6
              Height = 15
              Top = 4
              Width = 79
              BorderSpacing.Left = 6
              BorderSpacing.Top = 4
              Caption = 'Exclude folders'
              ParentColor = False
            end
            object bFoldersAdd: TButton
              Tag = 1
              AnchorSideTop.Control = lbExcludeFolders
              AnchorSideRight.Control = pnProfilesRight
              AnchorSideRight.Side = asrBottom
              Left = 202
              Height = 25
              Top = 23
              Width = 80
              Anchors = [akTop, akRight]
              AutoSize = True
              Caption = 'Add'
              Constraints.MinWidth = 80
              OnClick = bFilesAddClick
              TabOrder = 1
            end
            object bFoldersEdit: TButton
              Tag = 1
              AnchorSideLeft.Control = bFoldersAdd
              AnchorSideTop.Control = bFoldersAdd
              AnchorSideTop.Side = asrBottom
              AnchorSideRight.Control = pnProfilesRight
              AnchorSideRight.Side = asrBottom
              Left = 202
              Height = 25
              Top = 52
              Width = 80
              Anchors = [akTop, akLeft, akRight]
              AutoSize = True
              BorderSpacing.Top = 4
              Caption = 'Edit'
              OnClick = bFilesEditClick
              TabOrder = 2
            end
            object bFoldersDelete: TButton
              Tag = 1
              AnchorSideLeft.Control = bFoldersAdd
              AnchorSideTop.Control = bFoldersEdit
              AnchorSideTop.Side = asrBottom
              AnchorSideRight.Control = pnProfilesRight
              AnchorSideRight.Side = asrBottom
              Left = 202
              Height = 25
              Top = 81
              Width = 80
              Anchors = [akTop, akLeft, akRight]
              AutoSize = True
              BorderSpacing.Top = 4
              Caption = 'Delete'
              OnClick = bFilesDeleteClick
              TabOrder = 3
            end
          end
        end
      end
    end
  end
  object SDD: TSelectDirectoryDialog
    left = 448
    top = 280
  end
end