-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUFormPluginsOptions.dfm
166 lines (166 loc) · 3.32 KB
/
UFormPluginsOptions.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
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
object FormPluginsOptions: TFormPluginsOptions
Left = 200
Top = 172
ActiveControl = List
BorderStyle = bsDialog
Caption = 'Plugins configuration'
ClientHeight = 397
ClientWidth = 522
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
KeyPreview = True
OldCreateOrder = False
Position = poScreenCenter
OnKeyDown = FormKeyDown
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object btnCancel: TButton
Left = 424
Top = 368
Width = 89
Height = 23
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 4
end
object btnOK: TButton
Left = 232
Top = 368
Width = 89
Height = 23
Cancel = True
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 2
end
object boxPlugins: TGroupBox
Left = 8
Top = 4
Width = 505
Height = 281
Caption = 'Plugins installed'
TabOrder = 0
object List: TListView
Left = 8
Top = 16
Width = 489
Height = 221
Checkboxes = True
Columns = <
item
Caption = 'Name'
Width = 200
end
item
Caption = 'Detect string'
Width = 0
end
item
Caption = 'Filename'
Width = 500
end>
ColumnClick = False
GridLines = True
HideSelection = False
ReadOnly = True
RowSelect = True
TabOrder = 0
ViewStyle = vsReport
OnDblClick = btnConfigClick
OnSelectItem = ListSelectItem
end
object btnAdd: TButton
Left = 8
Top = 246
Width = 89
Height = 23
Caption = '&Add...'
TabOrder = 1
OnClick = btnAddClick
end
object btnRemove: TButton
Left = 104
Top = 246
Width = 89
Height = 23
Caption = '&Remove'
TabOrder = 2
OnClick = btnRemoveClick
end
object btnConfig: TButton
Left = 200
Top = 246
Width = 89
Height = 23
Caption = '&Configure...'
TabOrder = 3
OnClick = btnConfigClick
end
object btnUp: TButton
Left = 296
Top = 246
Width = 89
Height = 23
Caption = '&Up'
TabOrder = 4
OnClick = btnUpClick
end
object btnDown: TButton
Left = 392
Top = 246
Width = 89
Height = 23
Caption = '&Down'
TabOrder = 5
OnClick = btnDownClick
end
end
object boxOptions: TGroupBox
Left = 8
Top = 288
Width = 505
Height = 73
Caption = 'Options'
TabOrder = 1
object chkPriority: TCheckBox
Left = 9
Top = 16
Width = 488
Height = 17
Caption = 'Plugins have higher priority than internal viewers'
TabOrder = 0
end
object chkTCVar: TCheckBox
Left = 9
Top = 48
Width = 488
Height = 17
Caption = 'Save filenames with %Commander_Path% variable'
TabOrder = 2
end
object chkHideKeys: TCheckBox
Left = 9
Top = 32
Width = 488
Height = 17
Caption = 'Add the '#39'Alt'#39' key to shortcuts when Plugins mode is active'
TabOrder = 1
end
end
object btnHelp: TButton
Left = 328
Top = 368
Width = 89
Height = 23
Caption = 'Help'
TabOrder = 3
OnClick = btnHelpClick
end
end