-
Notifications
You must be signed in to change notification settings - Fork 0
/
xCursor_PAS.dfm
391 lines (391 loc) · 9.74 KB
/
xCursor_PAS.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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
object formX: TformX
Left = 0
Top = 0
BorderIcons = [biSystemMenu, biMinimize]
Caption = 'xCursor :)'
ClientHeight = 433
ClientWidth = 632
Color = clWhite
Constraints.MaxHeight = 480
Constraints.MaxWidth = 640
Constraints.MinHeight = 480
Constraints.MinWidth = 640
DoubleBuffered = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
KeyPreview = True
Menu = Menu
OldCreateOrder = False
PopupMenu = Popup
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object BG: TImage
Left = 0
Top = 0
Width = 632
Height = 414
Align = alClient
ExplicitLeft = -48
ExplicitTop = 16
ExplicitHeight = 433
end
object ImgDrop: TImage
Left = 187
Top = 80
Width = 257
Height = 231
Stretch = True
OnMouseLeave = ImgDropMouseLeave
end
object LabelAbove: TLabel
Left = 16
Top = 328
Width = 608
Height = 89
Alignment = taCenter
AutoSize = False
Caption = 'DRAG YOUR CURSOR FILE TO THE BOX ABOVE!'
Color = clNone
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -32
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = False
ParentFont = False
Layout = tlCenter
WordWrap = True
end
object Status: TStatusBar
Left = 0
Top = 414
Width = 632
Height = 19
Panels = <>
SimplePanel = True
end
object Menu: TMainMenu
Left = 16
Top = 16
object MenuFile: TMenuItem
Caption = 'File'
OnClick = MenuFileClick
object SubOpen: TMenuItem
Caption = 'Open Cursor...'
ShortCut = 16463
OnClick = SubOpenClick
end
object SubChange: TMenuItem
Caption = 'Change Cursor...'
ShortCut = 16451
OnClick = SubChangeClick
end
object SubApply: TMenuItem
Caption = 'Apply Cursor'
Enabled = False
ShortCut = 16449
OnClick = SubApplyClick
end
object SubRestart: TMenuItem
Caption = 'Restart'
ShortCut = 16466
OnClick = SubRestartClick
end
object SubExit: TMenuItem
Caption = 'Exit'
ShortCut = 27
OnClick = SubExitClick
end
end
object MenuSearch: TMenuItem
Caption = 'Search On...'
object SubGoogle: TMenuItem
Caption = 'Google'
OnClick = SubGoogleClick
end
object SubTFC: TMenuItem
Caption = 'Totally Free Cursors'
OnClick = SubTFCClick
end
object SubMySpace: TMenuItem
Caption = 'MySpace Cursor'
OnClick = SubMySpaceClick
end
object Sub4U: TMenuItem
Caption = 'Cursors4U'
OnClick = Sub4UClick
end
end
object MenuExtras: TMenuItem
Caption = 'Extras'
OnClick = MenuExtrasClick
object Line1: TMenuItem
Caption = '-'
end
object SubSonar: TMenuItem
Caption = 'Mouse Sonar'
Hint = 'Show Location Of Mouse When I Press CTRL Key'
OnClick = SubSonarClick
object SubMSOn: TMenuItem
AutoCheck = True
Caption = 'On'
OnClick = SubMSOnClick
end
object SubMSOff: TMenuItem
AutoCheck = True
Caption = 'Off'
OnClick = SubMSOffClick
end
end
object SubReverse: TMenuItem
Caption = 'Reverse Mouse Buttons'
Hint = 'Reverse Mouse Buttons'
OnClick = SubReverseClick
object SubRMBOn: TMenuItem
AutoCheck = True
Caption = 'On'
OnClick = SubRMBOnClick
end
object SubRMBOff: TMenuItem
AutoCheck = True
Caption = 'Off'
OnClick = SubRMBOffClick
end
end
object SubClickLock: TMenuItem
Caption = 'Mouse ClickLock'
Hint =
'Enables You To Highlight Or Drag Without Holding Down The Mouse ' +
'Button'
OnClick = SubClickLockClick
object SubMCLOn: TMenuItem
Caption = 'On'
OnClick = SubMCLOnClick
end
object SubMCLOff: TMenuItem
Caption = 'Off'
OnClick = SubMCLOffClick
end
end
object Line2: TMenuItem
Caption = '-'
end
object SubRestore: TMenuItem
Caption = 'Restore To Default...'
object SubRestoreAll: TMenuItem
Caption = 'All Cursors'
OnClick = SubRestoreAllClick
end
object SubRestoreSingle: TMenuItem
Caption = 'Single'
object SubArrow: TMenuItem
Caption = 'Arrow'
end
object SubBG: TMenuItem
Caption = 'Working In Background'
end
object SubPreSelect: TMenuItem
Caption = 'Precision Select'
end
object SubHelpCur: TMenuItem
Caption = 'Help'
end
object SubTextSel: TMenuItem
Caption = 'Text Select'
end
object SubUn: TMenuItem
Caption = 'Unavailable'
end
object SubHandwriting: TMenuItem
Caption = 'Handwriting'
end
object SubMove: TMenuItem
Caption = 'Move'
end
object SubDiag1: TMenuItem
Caption = 'Diagonal Resize 1'
end
object SubDiag2: TMenuItem
Caption = 'Diagonal Resize 2'
end
object SubVert: TMenuItem
Caption = 'Vertical Resize'
end
object SubHorz: TMenuItem
Caption = 'Horizontal Resize'
end
object SubAltSel: TMenuItem
Caption = 'Alternate Select'
end
object SubWait: TMenuItem
Caption = 'Wait'
end
object SubHand: TMenuItem
Caption = 'Hand'
end
end
end
object Line3: TMenuItem
Caption = '-'
end
object SubGenerate: TMenuItem
Caption = 'Generate .xcur File'
object SubGenSingle: TMenuItem
Caption = 'Single Cursor'
ShortCut = 8275
OnClick = SubGenSingleClick
end
object SubGenMulti: TMenuItem
Caption = 'Multiple Cursors'
ShortCut = 8269
OnClick = SubGenMultiClick
end
end
object Line4: TMenuItem
Caption = '-'
end
end
object MenuConfig: TMenuItem
Caption = 'Config'
object SubLanguage: TMenuItem
Caption = 'Language'
object SubEnglish: TMenuItem
Caption = 'English'
ShortCut = 16453
OnClick = SubEnglishClick
end
object SubSrpski: TMenuItem
Caption = 'Srpski'
ShortCut = 16467
OnClick = SubSrpskiClick
end
end
object SubDrop: TMenuItem
Caption = 'Default DropBox Action'
object SubDropPre: TMenuItem
Caption = 'Preview'
OnClick = SubDropPreClick
end
object SubDropApply: TMenuItem
Caption = 'Apply'
OnClick = SubDropApplyClick
end
end
object SubSAC: TMenuItem
Caption = 'Safe-Apply Cursor'
OnClick = SubSACClick
object SubSACOn: TMenuItem
AutoCheck = True
Caption = 'On'
OnClick = SubSACOnClick
end
object SubSACOff: TMenuItem
AutoCheck = True
Caption = 'Off'
OnClick = SubSACOffClick
end
end
object Line5: TMenuItem
Caption = '-'
end
object SubxCur: TMenuItem
Caption = 'Associate .xcur With xCursor'
ShortCut = 113
OnClick = SubxCurClick
end
object SubConMenu: TMenuItem
Caption = 'Add To Context Menu'
ShortCut = 32881
OnClick = SubConMenuClick
end
end
object MenuAbout: TMenuItem
Caption = 'About'
object SubHelp: TMenuItem
Caption = 'Help'
ShortCut = 112
end
object SubAuthor: TMenuItem
Caption = 'Author'
ShortCut = 8304
OnClick = SubAuthorClick
end
object SubWeb: TMenuItem
Caption = 'Website'
ShortCut = 114
OnClick = SubWebClick
end
end
end
object OpenCursor: TOpenDialog
Filter =
'Cursor (*.cur)|*.cur|Animated Cursor (*.ani)|*.ani|Cursors (*.cu' +
'r, *.ani)|*.cur; *.ani;'
Left = 16
Top = 64
end
object Popup: TPopupMenu
MenuAnimation = [maLeftToRight, maBottomToTop]
Left = 16
Top = 112
object PopTheme: TMenuItem
Caption = 'Theme'
object ThemeOrange: TMenuItem
Caption = 'Orange Paradise'
end
object ThemeRainbow: TMenuItem
Caption = 'Rainbow Water'
end
object ThemeCool: TMenuItem
Caption = 'Cool Abstract'
end
object ThemeMarbles: TMenuItem
Caption = 'White-Blue Marbles'
end
object ThemeBlue: TMenuItem
Caption = 'Blue Abstract'
end
object SubPlanet: TMenuItem
Caption = 'Planet'
end
object ThemeRay: TMenuItem
Caption = 'Water Ray'
end
object ThemeRainbowish: TMenuItem
Caption = 'Rainbowish Abstract'
end
object ThemePlanets: TMenuItem
Caption = 'Planet Stripes'
end
object ThemeBlueRed: TMenuItem
Caption = 'BlueFire && RedWater'
end
object ThemeHigh: TMenuItem
Caption = 'High Abstraction'
end
object ThemeWhirl: TMenuItem
Caption = 'Abstract Whirl'
end
object ThemeMachine: TMenuItem
Caption = 'Machine Of Darkness'
end
end
end
object Timer: TTimer
Enabled = False
Interval = 1900
OnTimer = TimerTimer
Left = 56
Top = 16
end
object Save: TSaveDialog
Left = 64
Top = 64
end
end