-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.lfm
246 lines (246 loc) · 5.05 KB
/
main.lfm
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
object ScreenRec: TScreenRec
Left = 263
Height = 326
Top = 233
Width = 412
Caption = 'Kevin''s Screen Recorder'
ClientHeight = 326
ClientWidth = 412
DesignTimePPI = 94
OnCreate = FormCreate
LCLVersion = '2.0.8.0'
object PageControl1: TPageControl
Left = 0
Height = 269
Top = 48
Width = 402
ActivePage = RecTab
TabIndex = 0
TabOrder = 0
object RecTab: TTabSheet
Caption = 'Recording'
ClientHeight = 239
ClientWidth = 392
object Label3: TLabel
Left = 16
Height = 18
Top = 8
Width = 37
Caption = 'Top X:'
ParentColor = False
end
object Label4: TLabel
Left = 17
Height = 18
Top = 44
Width = 36
Caption = 'Top Y:'
ParentColor = False
end
object RecX: TEdit
Left = 56
Height = 30
Top = 8
Width = 78
MaxLength = 4
NumbersOnly = True
TabOrder = 0
end
object RecY: TEdit
Left = 56
Height = 30
Top = 40
Width = 78
MaxLength = 4
NumbersOnly = True
TabOrder = 1
end
object CopyYBtn: TButton
Left = 136
Height = 24
Top = 44
Width = 73
Caption = 'Copy Y'
OnClick = CopyYBtnClick
TabOrder = 2
end
object Label5: TLabel
Left = 16
Height = 18
Top = 80
Width = 90
Caption = 'Recording size:'
ParentColor = False
end
object RecSize: TComboBox
Left = 112
Height = 30
Top = 72
Width = 169
ItemHeight = 0
Items.Strings = (
'800x600'
'1024x768'
'1280x720'
'1200x900'
)
TabOrder = 3
Text = '800x600'
end
object Label6: TLabel
Left = 17
Height = 18
Top = 112
Width = 58
Caption = 'Filename:'
ParentColor = False
end
object FLVFile: TEdit
Left = 80
Height = 30
Top = 104
Width = 272
TabOrder = 4
Text = '/tmp/test.flv'
end
object RecBtn: TButton
Left = 16
Height = 24
Top = 196
Width = 73
Caption = 'Start'
OnClick = RecBtnClick
TabOrder = 5
end
object StopBtn: TButton
Left = 104
Height = 24
Top = 196
Width = 73
Caption = 'Stop'
OnClick = StopBtnClick
TabOrder = 6
end
object KillBtn: TButton
Left = 192
Height = 24
Top = 196
Width = 73
Caption = 'Kill'
OnClick = KillBtnClick
TabOrder = 7
end
object PlayBtn: TButton
Left = 279
Height = 24
Top = 196
Width = 73
Caption = 'Play'
Enabled = False
OnClick = PlayBtnClick
TabOrder = 8
end
object Minute: TLabel
Left = 119
Height = 19
Top = 156
Width = 11
Caption = '0'
Font.Height = -16
Font.Name = 'Sans'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object Label7: TLabel
Left = 136
Height = 19
Top = 156
Width = 6
Caption = ':'
Font.Height = -16
Font.Name = 'Sans'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object Second: TLabel
Left = 144
Height = 19
Top = 156
Width = 22
Caption = '00'
Font.Height = -16
Font.Name = 'Sans'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
end
object VBoxTab: TTabSheet
Caption = 'VBox Y Calc'
ClientHeight = 239
ClientWidth = 392
object Label1: TLabel
Left = 8
Height = 18
Top = 8
Width = 131
Caption = 'Y position of window: '
ParentColor = False
end
object VBoxY: TEdit
Left = 144
Height = 30
Top = 0
Width = 78
MaxLength = 4
NumbersOnly = True
TabOrder = 0
end
object VCButton: TButton
Left = 8
Height = 24
Top = 43
Width = 73
Caption = 'Calculate'
OnClick = VCButtonClick
TabOrder = 1
end
end
end
object Label2: TLabel
Left = 8
Height = 33
Top = 8
Width = 259
Caption = 'Kevin''s Screen Recorder'
Font.Height = -26
Font.Name = 'Impact'
ParentColor = False
ParentFont = False
end
object Proc: TProcess
Active = False
Options = []
Priority = ppNormal
StartupOptions = []
ShowWindow = swoShow
WindowColumns = 0
WindowHeight = 0
WindowLeft = 0
WindowRows = 0
WindowTop = 0
WindowWidth = 0
FillAttribute = 0
XTermProgram = '/usr/bin/xterm'
left = 368
top = 280
end
object Timer: TTimer
Enabled = False
OnTimer = TimerTimer
left = 362
top = 15
end
end