forked from abc874/ca2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResultingTimes.dfm
216 lines (216 loc) · 4.65 KB
/
ResultingTimes.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
object FResultingTimes: TFResultingTimes
Left = 373
Top = 377
ActiveControl = cmdClose
Caption = 'Check cuts after cutting'
ClientHeight = 396
ClientWidth = 592
Color = clBtnFace
Constraints.MinHeight = 430
Constraints.MinWidth = 600
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Microsoft Sans Serif'
Font.Pitch = fpVariable
Font.Style = []
OldCreateOrder = False
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object lvTimeList: TListView
Left = 360
Top = 0
Width = 232
Height = 352
Align = alRight
Columns = <
item
Caption = 'Part'
Width = 33
end
item
Caption = 'From'
Width = 65
end
item
Caption = 'To'
Width = 65
end
item
AutoSize = True
Caption = 'Duration'
end>
GridLines = True
HideSelection = False
ReadOnly = True
RowSelect = True
SortType = stText
TabOrder = 1
ViewStyle = vsReport
OnDblClick = lvTimeListDblClick
end
object pnlMovieControl: TPanel
Left = 0
Top = 352
Width = 592
Height = 44
Align = alBottom
BevelOuter = bvNone
Constraints.MinWidth = 360
TabOrder = 2
DesignSize = (
592
44)
object lblDuration: TLabel
Left = 364
Top = 9
Width = 38
Height = 26
Hint =
'Double click entry in list to jump <x> seconds before end of par' +
't.'
Alignment = taRightJustify
Anchors = [akTop, akRight]
Caption = 'Check duration'
WordWrap = True
end
object Label8: TLabel
Left = 219
Top = 10
Width = 35
Height = 13
Alignment = taRightJustify
Anchors = [akTop, akRight]
Caption = 'Volume'
end
object lblPosition: TLabel
Left = 77
Top = 10
Width = 21
Height = 13
Alignment = taRightJustify
Caption = 'Pos.'
end
object lblSeconds: TLabel
Left = 454
Top = 16
Width = 20
Height = 13
Alignment = taRightJustify
Anchors = [akTop, akRight]
Caption = 'sec.'
end
object cmdClose: TButton
Left = 492
Top = 13
Width = 95
Height = 25
Anchors = [akTop, akRight]
Caption = 'Close'
ModalResult = 1
TabOrder = 6
OnClick = cmdCloseClick
end
object tbVolume: TTrackBar
Left = 256
Top = 7
Width = 99
Height = 26
Anchors = [akTop, akRight]
Max = 10000
Frequency = 1000
Position = 5000
TabOrder = 3
OnChange = tbVolumeChange
end
object cmdPause: TButton
Left = 41
Top = 7
Width = 27
Height = 26
Hint = 'Pause'
Caption = 'II'
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnClick = cmdPauseClick
end
object cmdPlay: TButton
Left = 9
Top = 7
Width = 27
Height = 26
Hint = 'Play'
Caption = '>'
ParentShowHint = False
ShowHint = True
TabOrder = 0
OnClick = cmdPlayClick
end
object tbPosition: TDSTrackBar
Left = 98
Top = 7
Width = 112
Height = 26
Anchors = [akLeft, akTop, akRight]
Frequency = 300
TabOrder = 2
FilterGraph = FilterGraph
end
object edtDuration: TEdit
Left = 412
Top = 12
Width = 23
Height = 21
Anchors = [akTop, akRight]
ReadOnly = True
TabOrder = 4
Text = '0'
end
object udDuration: TUpDown
Left = 435
Top = 12
Width = 15
Height = 21
Anchors = [akTop, akRight]
Associate = edtDuration
Max = 99
TabOrder = 5
OnChanging = udDurationChanging
end
end
object pnlVideoWindow: TPanel
Left = 0
Top = 0
Width = 360
Height = 352
Align = alClient
BevelOuter = bvNone
TabOrder = 0
OnResize = pnlVideoWindowResize
DesignSize = (
360
352)
object VideoWindow: TVideoWindow
Left = 0
Top = 0
Width = 355
Height = 262
FilterGraph = FilterGraph
VMROptions.Mode = vmrWindowless
Color = clBlack
Anchors = [akLeft, akTop, akRight, akBottom]
end
end
object FilterGraph: TFilterGraph
GraphEdit = True
LinearVolume = True
OnSelectedFilter = FilterGraphSelectedFilter
Left = 144
Top = 160
end
end