-
Notifications
You must be signed in to change notification settings - Fork 0
/
UConfigDialog.dfm
159 lines (159 loc) · 3.59 KB
/
UConfigDialog.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
object ConfigDialog: TConfigDialog
Left = 206
Top = 173
BorderStyle = bsDialog
Caption = 'Settings'
ClientHeight = 231
ClientWidth = 361
Color = clBtnFace
ParentFont = True
OldCreateOrder = True
PopupMode = pmAuto
Position = poMainFormCenter
DesignSize = (
361
231)
PixelsPerInch = 96
TextHeight = 13
object OKBtn: TButton
Left = 282
Top = 200
Width = 75
Height = 26
Anchors = [akRight, akBottom]
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 2
OnClick = OKBtnClick
end
object CancelBtn: TButton
Left = 201
Top = 200
Width = 75
Height = 26
Anchors = [akRight, akBottom]
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 3
OnClick = CancelBtnClick
end
object AutoSaveGroup: TGroupBox
Left = 1
Top = 1
Width = 357
Height = 146
Anchors = [akLeft, akTop, akRight]
Caption = 'Auto-Save'
TabOrder = 0
DesignSize = (
357
146)
object ASFileMaskLabel: TLabel
Left = 7
Top = 68
Width = 47
Height = 13
Caption = 'File Mask:'
FocusControl = ASFileMaskEdit
end
object ASDirectoryLabel: TLabel
Left = 6
Top = 41
Width = 48
Height = 13
Caption = 'Directory:'
FocusControl = ASDirectoryEdit
end
object ASCurrentFileDisplay: TLabel
Left = 7
Top = 92
Width = 346
Height = 13
AutoSize = False
Caption = 'Current Filename: '
EllipsisPosition = epPathEllipsis
Visible = False
end
object ASHelpText: TLabel
Left = 7
Top = 114
Width = 339
Height = 26
Anchors = [akLeft, akTop, akRight]
Caption =
'Text in braces {} will be substituted for the current date using' +
' Delphi'#39's DateTimeToString routine - e.g. "Hours {yyyy-mm-dd}.tx' +
't"'
WordWrap = True
end
object ASFileMaskEdit: TEdit
Left = 57
Top = 65
Width = 121
Height = 21
Enabled = False
TabOrder = 2
Text = 'ASFileMaskEdit'
OnChange = ASFileMaskEditChange
end
object ASDirectoryEdit: TEdit
Left = 57
Top = 38
Width = 288
Height = 21
Anchors = [akLeft, akTop, akRight]
Enabled = False
TabOrder = 1
Text = 'ASDirectoryEdit'
OnChange = ASDirectoryEditChange
end
object ASEnabledCheck: TCheckBox
Left = 7
Top = 18
Width = 340
Height = 17
Anchors = [akLeft, akTop, akRight]
Caption = 'Start saving automatically when R3T3 launches'
TabOrder = 0
OnClick = ASEnabledCheckClick
end
object ASDirectoryBrowseButton: TButton
Left = 271
Top = 65
Width = 75
Height = 21
Anchors = [akLeft, akTop, akRight]
Caption = 'Browse...'
Enabled = False
TabOrder = 3
OnClick = ASDirectoryBrowseButtonClick
end
end
object TrayIconGroup: TGroupBox
Left = 1
Top = 147
Width = 357
Height = 49
Anchors = [akLeft, akTop, akRight]
Caption = 'Tray Icon'
TabOrder = 1
DesignSize = (
357
49)
object TrayIconEnabledCheck: TCheckBox
Left = 7
Top = 18
Width = 340
Height = 17
Anchors = [akLeft, akTop, akRight]
Caption = 'Show icon in Notification Area ("System Tray")'
TabOrder = 0
end
end
object ASDirectoryDialog: TSaveDialog
Left = 384
Top = 104
end
end