-
Notifications
You must be signed in to change notification settings - Fork 1
/
FileSelectFrm.dfm
88 lines (88 loc) · 1.77 KB
/
FileSelectFrm.dfm
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
object frmFileSelect: TfrmFileSelect
Left = 0
Top = 0
BorderIcons = [biSystemMenu, biMaximize]
Caption = 'Master/Plugin Selection'
ClientHeight = 615
ClientWidth = 332
Color = clBtnFace
ParentFont = True
KeyPreview = True
OldCreateOrder = False
Position = poMainFormCenter
OnCreate = FormCreate
OnKeyDown = FormKeyDown
DesignSize = (
332
615)
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 8
Top = 11
Width = 33
Height = 13
Caption = 'Search'
end
object CheckListBox1: TCheckListBox
AlignWithMargins = True
Left = 3
Top = 40
Width = 326
Height = 535
Margins.Top = 40
Margins.Bottom = 40
Align = alClient
ItemHeight = 13
PopupMenu = PopupMenu1
TabOrder = 0
OnDblClick = CheckListBox1DblClick
end
object edSearch: TEdit
Left = 47
Top = 8
Width = 282
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 1
OnChange = edSearchChange
end
object cbBackup: TCheckBox
Left = 8
Top = 582
Width = 113
Height = 17
Anchors = [akLeft, akBottom]
Caption = 'Backup plugins'
Checked = True
State = cbChecked
TabOrder = 2
Visible = False
end
object btnOK: TButton
Left = 249
Top = 582
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Caption = 'OK'
ModalResult = 1
TabOrder = 3
end
object PopupMenu1: TPopupMenu
Left = 128
Top = 184
object SelectAll1: TMenuItem
Caption = 'Select All'
OnClick = SelectAll1Click
end
object SelectNone1: TMenuItem
Caption = 'Select None'
OnClick = SelectNone1Click
end
object InvertSelection1: TMenuItem
Caption = 'Invert Selection'
OnClick = InvertSelection1Click
end
end
end