-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFReplayManager.dfm
332 lines (332 loc) · 7.48 KB
/
FReplayManager.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
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
object FReplayManager: TFReplayManager
Left = 0
Top = 0
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Replay Manager'
ClientHeight = 542
ClientWidth = 571
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poOwnerFormCenter
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object lblSelectedFolder: TLabel
Left = 189
Top = 137
Width = 90
Height = 13
Caption = 'Selected Folder:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object lblWelcome: TLabel
Left = 96
Top = 50
Width = 377
Height = 65
Alignment = taCenter
Caption =
'Welcome to Replay Manager!'#13#10'This feature performs a mass replay ' +
'check on all replays in the selected folder.'#13#10'You can choose how' +
' to rename the replays based on the result of the check.'#13#10#13#10'To b' +
'egin, choose a folder of replays for checking.'
end
object rgReplayKind: TRadioGroup
Left = 8
Top = 173
Width = 129
Height = 329
Caption = 'Replay Kind'
ItemIndex = 0
Items.Strings = (
'All'
'All Passed'
'All Failed'
'Passed'
'Passed (Talisman)'
'Undetermined'
'Failed'
'Level Not Found'
'Other Error')
TabOrder = 0
OnClick = rgReplayKindClick
end
object gbAction: TGroupBox
Left = 143
Top = 173
Width = 420
Height = 177
Caption = 'Action for _______'
TabOrder = 1
object rbDoNothing: TRadioButton
Left = 16
Top = 24
Width = 145
Height = 17
Caption = 'Keep Existing Filename'
Checked = True
TabOrder = 0
TabStop = True
OnClick = rbReplayActionClick
end
object rbDeleteFile: TRadioButton
Left = 16
Top = 47
Width = 113
Height = 17
Caption = 'Delete File'
TabOrder = 1
OnClick = rbReplayActionClick
end
object rbCopyTo: TRadioButton
Left = 152
Top = 70
Width = 145
Height = 17
Caption = 'Rename New Copy As:'
TabOrder = 2
OnClick = rbReplayActionClick
end
object rbMoveTo: TRadioButton
Left = 16
Top = 70
Width = 113
Height = 17
Caption = 'Rename As:'
TabOrder = 3
OnClick = rbReplayActionClick
end
object cbNamingScheme: TComboBox
Left = 12
Top = 95
Width = 389
Height = 21
TabOrder = 4
OnChange = cbNamingSchemeChange
OnEnter = cbNamingSchemeEnter
Items.Strings = (
'Position + Timestamp'
'Title + Timestamp'
'Position + Title + Timestamp'
'Username + Position + Timestamp'
'Username + Title + Timestamp'
'Username + Position + Title + Timestamp')
end
object cbUpdateVersion: TCheckBox
Left = 16
Top = 145
Width = 289
Height = 17
Caption = 'Update version number if Passed'
TabOrder = 5
OnClick = cbUpdateVersionClick
end
object cbAppendResult: TCheckBox
Left = 16
Top = 122
Width = 185
Height = 17
Caption = 'Append replay result to filename'
TabOrder = 6
OnClick = cbAppendResultClick
end
end
object btnRunReplayCheck: TButton
Left = 143
Top = 508
Width = 216
Height = 25
Caption = 'Run Replay Check'
TabOrder = 2
OnClick = btnRunReplayCheckClick
end
object btnCancel: TButton
Left = 365
Top = 508
Width = 84
Height = 25
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 3
end
object gbActionsList: TGroupBox
Left = 143
Top = 356
Width = 420
Height = 146
Caption = 'Actions List'
TabOrder = 4
object lblDoForPassed: TLabel
Left = 130
Top = 23
Width = 266
Height = 13
Caption = 'Keep Existing Filename, Append Result, Update Version'
end
object lblDoForTalisman: TLabel
Left = 130
Top = 42
Width = 109
Height = 13
Caption = 'Keep Existing Filename'
end
object lblDoForUndetermined: TLabel
Left = 130
Top = 61
Width = 109
Height = 13
Caption = 'Keep Existing Filename'
end
object lblDoForFailed: TLabel
Left = 130
Top = 80
Width = 109
Height = 13
Caption = 'Keep Existing Filename'
end
object lblDoForLevelNotFound: TLabel
Left = 130
Top = 99
Width = 109
Height = 13
Caption = 'Keep Existing Filename'
end
object lblDoForError: TLabel
Left = 130
Top = 118
Width = 109
Height = 13
Caption = 'Keep Existing Filename'
end
object stDoForPassed: TStaticText
Left = 16
Top = 23
Width = 47
Height = 17
Caption = 'Passed:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
end
object stDoForTalisman: TStaticText
Left = 16
Top = 42
Width = 111
Height = 17
Caption = 'Passed (Talisman):'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 1
end
object stDoForUndetermined: TStaticText
Left = 16
Top = 61
Width = 88
Height = 17
Caption = 'Undetermined:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 2
end
object stDoForFailed: TStaticText
Left = 16
Top = 80
Width = 40
Height = 17
Caption = 'Failed:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 3
end
object stDoForLevelNotFound: TStaticText
Left = 16
Top = 99
Width = 96
Height = 17
Caption = 'Level Not Found:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 4
end
object stDoForError: TStaticText
Left = 16
Top = 118
Width = 35
Height = 17
Caption = 'Error:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 5
end
end
object stPackName: TStaticText
AlignWithMargins = True
Left = 0
Top = 14
Width = 577
Height = 24
Alignment = taCenter
AutoSize = False
Caption = '(pack name)'
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -21
Font.Name = 'Hobo Std'
Font.Style = []
ParentFont = False
TabOrder = 5
end
object stSelectedFolder: TStaticText
Left = 289
Top = 137
Width = 212
Height = 17
Caption = '(Click Browse to choose a folder of replays)'
TabOrder = 6
end
object btnBrowse: TButton
Left = 82
Top = 132
Width = 98
Height = 25
Caption = 'Browse'
TabOrder = 7
OnClick = btnBrowseClick
end
end