-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathOptions.dfm
179 lines (179 loc) · 3.88 KB
/
Options.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
167
168
169
170
171
172
173
174
175
176
177
178
179
object frmOptions: TfrmOptions
Left = 465
Top = 306
BorderIcons = []
BorderStyle = bsDialog
Caption = 'Options'
ClientHeight = 233
ClientWidth = 281
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poOwnerFormCenter
OnClose = FormClose
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object Label2: TLabel
Left = 0
Top = 0
Width = 99
Height = 13
Caption = 'Default App List Font'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
Visible = False
end
object Label3: TLabel
Left = 132
Top = 0
Width = 112
Height = 13
Caption = 'Default CD Key List'
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
Visible = False
end
object Label4: TLabel
Left = 8
Top = 172
Width = 70
Height = 13
Caption = 'CSV Delimiter: '
end
object Button3: TButton
Left = 198
Top = 205
Width = 75
Height = 25
Caption = '&Close'
TabOrder = 0
OnClick = Button3Click
end
object EdtCSV1: TEdit
Left = 84
Top = 169
Width = 29
Height = 21
TabOrder = 1
Text = ','
end
object OptChkBxErrLog: TCheckBox
Left = 8
Top = 114
Width = 91
Height = 17
Caption = '&Error Logging'
Enabled = False
TabOrder = 2
OnClick = OptChkBxErrLogClick
end
object OptFontBox1: TGroupBox
Left = 8
Top = 8
Width = 265
Height = 89
Caption = 'Change Fonts'
TabOrder = 3
object LblAppList: TLabel
Left = 86
Top = 18
Width = 100
Height = 25
Caption = 'Application List'
Constraints.MinHeight = 25
Constraints.MinWidth = 100
Layout = tlCenter
WordWrap = True
end
object LblKeyDisp: TLabel
Left = 86
Top = 55
Width = 100
Height = 25
Caption = 'Key Display'
Constraints.MinHeight = 25
Constraints.MinWidth = 100
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
Layout = tlCenter
WordWrap = True
end
object Button2: TButton
Left = 16
Top = 55
Width = 54
Height = 25
Caption = 'F&ont...'
Constraints.MinHeight = 25
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 0
OnClick = Button2Click
end
object Button1: TButton
Left = 16
Top = 18
Width = 54
Height = 25
Caption = '&Font...'
Constraints.MinHeight = 25
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 1
OnClick = Button1Click
end
end
object Button5: TButton
Left = 198
Top = 110
Width = 75
Height = 25
Caption = '&Browse...'
Enabled = False
TabOrder = 4
OnClick = Button5Click
end
object EdtLogPath: TEdit
Left = 8
Top = 137
Width = 266
Height = 21
Enabled = False
TabOrder = 5
Text = 'EdtLogPath'
end
object OptUnstableUpdates: TCheckBox
Left = 132
Top = 171
Width = 141
Height = 17
Caption = 'Allow Unstable Updates'
TabOrder = 6
OnClick = OptUnstableUpdatesClick
end
end