-
Notifications
You must be signed in to change notification settings - Fork 2
/
FPlaybackMode.dfm
170 lines (170 loc) · 4.1 KB
/
FPlaybackMode.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
object FPlaybackMode: TFPlaybackMode
Left = 0
Top = 0
BorderIcons = [biSystemMenu]
BorderStyle = bsSingle
Caption = 'Playback Mode'
ClientHeight = 334
ClientWidth = 421
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 13
object lblSelectedFolder: TLabel
Left = 57
Top = 167
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 lblPlaybackCancelHotkey: TLabel
Left = 176
Top = 229
Width = 138
Height = 13
Hint =
'Press this hotkey at any time during playback to cancel playback' +
' mode.'#13#10'This hotkey can be changed in Settings > Configure Hotke' +
'ys.'
Caption = 'Playback Cancel Hotkey:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
end
object lblWelcome: TLabel
Left = 33
Top = 55
Width = 352
Height = 52
Alignment = taCenter
Caption =
'Welcome to Playback Mode!'#13#10'This feature automatically plays thro' +
'ugh all replays in the selected folder.'#13#10#13#10'To begin, choose a fo' +
'lder of replays to be played back.'
end
object btnBrowse: TButton
Left = 153
Top = 126
Width = 105
Height = 31
Caption = 'Browse'
TabOrder = 0
OnClick = btnBrowseClick
end
object stSelectedFolder: TStaticText
Left = 157
Top = 167
Width = 212
Height = 17
Caption = '(Click Browse to choose a folder of replays)'
TabOrder = 1
end
object rgPlaybackOrder: TRadioGroup
Left = 50
Top = 196
Width = 97
Height = 96
Hint =
'This setting orders the replays into a playlist.'#13#10#13#10'By Replay: P' +
'lays the replays in the order that they appear in the folder.'#13#10'B' +
'y Level: Plays the replays in the order that the levels appear i' +
'n the selected pack.'#13#10'Random: Randomizes playback.'
Caption = 'Playback Order'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Items.Strings = (
'By Replay'
'By Level'
'Random')
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 2
end
object cbAutoskip: TCheckBox
Left = 176
Top = 196
Width = 209
Height = 17
Hint =
'Check this to automatically skip past preview and postview scree' +
'ns during playback.'
Caption = 'Auto-skip Preview && Postview Screens'
ParentShowHint = False
ShowHint = True
TabOrder = 3
end
object stPlaybackCancelHotkey: TStaticText
Left = 324
Top = 229
Width = 45
Height = 17
Hint =
'Press this hotkey at any time during playback to cancel playback' +
' mode.'#13#10'This hotkey can be changed in Settings > Configure Hotke' +
'ys.'
Caption = '(hotkey)'
ParentShowHint = False
ShowHint = True
TabOrder = 4
end
object btnBeginPlayback: TButton
Left = 102
Top = 300
Width = 123
Height = 25
Caption = 'Begin Playback'
ModalResult = 1
TabOrder = 5
OnClick = btnBeginPlaybackClick
end
object btnCancel: TButton
Left = 231
Top = 300
Width = 96
Height = 25
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 6
end
object stPackName: TStaticText
AlignWithMargins = True
Left = 0
Top = 15
Width = 409
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 = 7
end
end