-
Notifications
You must be signed in to change notification settings - Fork 24
/
Option.lfm
725 lines (725 loc) · 16.8 KB
/
Option.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
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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
object frmOption: TfrmOption
Left = 76
Height = 546
Top = 150
Width = 294
BorderStyle = bsDialog
Caption = 'Options'
ClientHeight = 546
ClientWidth = 294
Color = clBtnFace
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Shell Dlg 2'
OnCreate = FormCreate
Position = poMainFormCenter
LCLVersion = '1.0.8.0'
object PageControl1: TPageControl
Left = 8
Height = 497
Top = 8
Width = 281
ActivePage = TabSheet1
TabIndex = 0
TabOrder = 0
object TabSheet1: TTabSheet
Caption = 'General'
ClientHeight = 471
ClientWidth = 273
object gbWindow: TGroupBox
Left = 8
Height = 265
Top = 88
Width = 257
Caption = 'Window'
ClientHeight = 247
ClientWidth = 253
TabOrder = 1
object lbLanguage: TLabel
Left = 8
Height = 14
Top = 186
Width = 48
Caption = 'Language'
ParentColor = False
end
object cxLanguage: TComboBox
Left = 8
Height = 21
Top = 202
Width = 153
Enabled = False
ItemHeight = 13
Style = csDropDownList
TabOrder = 4
end
object cbWindowOnTop: TCheckBox
Left = 8
Height = 19
Top = 34
Width = 92
Caption = 'Window on top'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Shell Dlg 2'
ParentFont = False
TabOrder = 1
end
object cbHoldSize: TCheckBox
Left = 8
Height = 19
Top = 2
Width = 101
Caption = 'Hold window size'
TabOrder = 0
end
object cbCustomTitle: TCheckBox
Left = 8
Height = 19
Top = 142
Width = 116
Caption = 'Custom window title'
OnClick = cbCustomTitleClick
TabOrder = 2
end
object edtCustomTitle: TEdit
Left = 8
Height = 21
Top = 162
Width = 153
TabOrder = 3
Text = 'ASuite'
end
object cbHideSearch: TCheckBox
Left = 8
Height = 19
Top = 226
Width = 96
Caption = 'Hide tab Search'
TabOrder = 5
end
end
object gbTreeView: TGroupBox
Left = 8
Height = 103
Top = 362
Width = 257
Caption = 'Treeview'
ClientHeight = 85
ClientWidth = 253
TabOrder = 2
object cbBackground: TCheckBox
Left = 8
Height = 19
Top = 16
Width = 109
Caption = 'Active background'
TabOrder = 1
end
object btnFontSettings: TButton
Left = 72
Height = 17
Top = 64
Width = 121
Caption = 'Font settings...'
OnClick = btnFontSettingsClick
TabOrder = 4
end
object edtBackground: TEdit
Left = 8
Height = 21
Top = 36
Width = 177
TabOrder = 2
Text = '$ASuite\'
end
object btnBrowseBackground: TButton
Left = 192
Height = 21
Top = 36
Width = 57
Caption = 'Browse'
OnClick = Browse
TabOrder = 3
end
object cbAutoOpClCat: TCheckBox
Left = 8
Height = 19
Top = 0
Width = 204
Caption = 'Automatic Opening/Closing Categories'
TabOrder = 0
end
end
object gbStartup: TGroupBox
Left = 8
Height = 81
Top = 0
Width = 257
Caption = 'Startup'
ClientHeight = 63
ClientWidth = 253
TabOrder = 0
object cbWindowsStartup: TCheckBox
Left = 8
Height = 19
Top = 2
Width = 168
Caption = 'Start ASuite on system startup'
TabOrder = 0
end
object cbShowPanelStartup: TCheckBox
Left = 8
Height = 19
Top = 18
Width = 138
Caption = 'Show window on startup'
TabOrder = 1
end
object cbShowMenuStartup: TCheckBox
Left = 8
Height = 19
Top = 34
Width = 128
Caption = 'Show Menu on startup'
TabOrder = 2
end
end
end
object TabSheet2: TTabSheet
Caption = 'Advanced'
ClientHeight = 471
ClientWidth = 273
ImageIndex = 4
object gbRecents: TGroupBox
Left = 8
Height = 81
Top = 16
Width = 257
Caption = 'Recents'
ClientHeight = 63
ClientWidth = 253
TabOrder = 0
object lbMaxMRU: TLabel
Left = 8
Height = 14
Top = 37
Width = 85
Caption = 'Max number MRU'
ParentColor = False
end
object lbNumbMRU: TLabel
Left = 234
Height = 14
Top = 37
Width = 13
Caption = '10'
ParentColor = False
end
object cbMRU: TCheckBox
Left = 8
Height = 19
Top = 2
Width = 75
Caption = 'Active MRU'
TabOrder = 0
end
object cbSubMenuMRU: TCheckBox
Left = 8
Height = 19
Top = 18
Width = 145
Caption = 'MRU on trayicon submenu'
TabOrder = 1
end
object tbMRU: TTrackBar
Left = 136
Height = 25
Top = 34
Width = 97
OnChange = tbMRUChange
Position = 0
ShowSelRange = False
TabOrder = 2
end
end
object gbBackup: TGroupBox
Left = 8
Height = 65
Top = 190
Width = 257
Caption = 'Backup'
ClientHeight = 47
ClientWidth = 253
TabOrder = 1
object lbMaxBackup: TLabel
Left = 8
Height = 14
Top = 23
Width = 97
Caption = 'Max number Backup'
ParentColor = False
end
object lbNumbBackup: TLabel
Left = 234
Height = 14
Top = 23
Width = 13
Caption = '10'
ParentColor = False
end
object cbBackup: TCheckBox
Left = 8
Height = 19
Top = 4
Width = 87
Caption = 'Active backup'
TabOrder = 0
end
object tbBackup: TTrackBar
Left = 136
Height = 25
Top = 20
Width = 97
OnChange = tbBackupChange
Position = 0
ShowSelRange = False
TabOrder = 1
end
end
object gbOtherFunctions: TGroupBox
Left = 8
Height = 88
Top = 346
Width = 257
Caption = 'Other functions'
ClientHeight = 70
ClientWidth = 253
TabOrder = 3
object cbCache: TCheckBox
Left = 8
Height = 19
Top = 6
Width = 83
Caption = 'Enable cache'
TabOrder = 0
end
object cbAutorun: TCheckBox
Left = 8
Height = 19
Top = 30
Width = 93
Caption = 'Enable autorun'
TabOrder = 1
end
end
object gbClearElements: TGroupBox
Left = 8
Height = 77
Top = 261
Width = 257
Caption = 'Clear Elements'
ClientHeight = 59
ClientWidth = 253
TabOrder = 2
object lbClearElements: TLabel
Left = 8
Height = 14
Top = 5
Width = 203
Caption = 'Clear all MRU, backups and/or cache icons'
ParentColor = False
end
object btnClearElements: TButton
Left = 72
Height = 17
Top = 29
Width = 113
Caption = 'Clear elements...'
OnClick = btnClearElementsClick
TabOrder = 0
end
end
object gbMFU: TGroupBox
Left = 8
Height = 81
Top = 103
Width = 257
Caption = 'Most Frequently Used'
ClientHeight = 63
ClientWidth = 253
TabOrder = 4
object lbMaxMFU: TLabel
Left = 8
Height = 14
Top = 38
Width = 84
Caption = 'Max number MFU'
ParentColor = False
end
object lbNumbMFU: TLabel
Left = 234
Height = 14
Top = 38
Width = 13
Caption = '10'
ParentColor = False
end
object cbMFU: TCheckBox
Left = 8
Height = 19
Top = 3
Width = 74
Caption = 'Active MFU'
TabOrder = 0
end
object cbSubMenuMFU: TCheckBox
Left = 8
Height = 19
Top = 19
Width = 144
Caption = 'MFU on trayicon submenu'
TabOrder = 1
end
object tbMFU: TTrackBar
Left = 136
Height = 25
Top = 35
Width = 97
OnChange = tbMFUChange
Position = 0
ShowSelRange = False
TabOrder = 2
end
end
end
object TabSheet3: TTabSheet
Caption = 'Various'
ClientHeight = 471
ClientWidth = 273
ImageIndex = 2
object gbExecution: TGroupBox
Left = 8
Height = 132
Top = 8
Width = 257
Caption = 'Execution'
ClientHeight = 114
ClientWidth = 253
TabOrder = 0
object lbActionOnExe: TLabel
Left = 8
Height = 14
Top = 22
Width = 65
Caption = 'On execution'
ParentColor = False
end
object lblAutorunOrder: TLabel
Left = 10
Height = 14
Top = 65
Width = 107
Caption = 'Autoexecute items list'
ParentColor = False
end
object cbRunSingleClick: TCheckBox
Left = 8
Height = 19
Top = 2
Width = 134
Caption = 'Execute with single click'
TabOrder = 0
end
object cxActionOnExe: TComboBox
Left = 8
Height = 21
Top = 38
Width = 169
ItemHeight = 13
Items.Strings = (
'Just run file'
'Run and hide ASuite'
'Run and close ASuite'
)
Style = csDropDownList
TabOrder = 1
end
object btnChangeOrder: TButton
Left = 75
Height = 21
Top = 83
Width = 102
Caption = 'Change order'
OnClick = btnChangeOrderClick
TabOrder = 2
end
end
object gbTrayicon: TGroupBox
Left = 8
Height = 152
Top = 146
Width = 257
Caption = 'System Tray'
ClientHeight = 134
ClientWidth = 253
TabOrder = 1
object lbTrayLeftClick: TLabel
Left = 8
Height = 14
Top = 48
Width = 42
Caption = 'Left click'
ParentColor = False
end
object lbTrayRightClick: TLabel
Left = 8
Height = 14
Top = 88
Width = 48
Caption = 'Right click'
ParentColor = False
end
object cxLeftClick: TComboBox
Left = 8
Height = 21
Top = 63
Width = 145
ItemHeight = 13
Items.Strings = (
'No action'
'Show window'
'Show menu'
)
Style = csDropDownList
TabOrder = 1
end
object btnTrayCustomIcon: TButton
Left = 165
Height = 21
Top = 29
Width = 89
Caption = 'Choose icon'
OnClick = Browse
TabOrder = 2
end
object cbTrayicon: TCheckBox
Left = 8
Height = 19
Top = 8
Width = 156
Caption = 'Enable the System Tray icon'
OnClick = cbTrayiconClick
TabOrder = 0
end
object cxRightClick: TComboBox
Left = 8
Height = 21
Top = 103
Width = 145
ItemHeight = 13
Items.Strings = (
'No action'
'Show window'
'Show menu'
)
Style = csDropDownList
TabOrder = 3
end
object cbTrayCustomIcon: TCheckBox
Left = 8
Height = 19
Top = 31
Width = 101
Caption = 'Custom tray icon'
TabOrder = 4
end
end
object gbMouse: TGroupBox
Left = 8
Height = 136
Top = 306
Width = 257
Caption = 'Mouse sensors'
ClientHeight = 118
ClientWidth = 253
TabOrder = 2
object lbSide: TLabel
Left = 8
Height = 14
Top = 0
Width = 25
Caption = 'Side'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Shell Dlg 2'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object lbLeftClick: TLabel
Left = 56
Height = 14
Top = 0
Width = 51
Caption = 'Left click'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Shell Dlg 2'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object lbRightClick: TLabel
Left = 155
Height = 14
Top = 0
Width = 59
Caption = 'Right click'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Shell Dlg 2'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object lbTop: TLabel
Left = 8
Height = 14
Top = 20
Width = 19
Caption = 'Top'
ParentColor = False
end
object lbLeft: TLabel
Left = 8
Height = 14
Top = 44
Width = 20
Caption = 'Left'
ParentColor = False
end
object lbRight: TLabel
Left = 8
Height = 14
Top = 68
Width = 26
Caption = 'Right'
ParentColor = False
end
object lbBottom: TLabel
Left = 8
Height = 14
Top = 92
Width = 35
Caption = 'Bottom'
ParentColor = False
end
object cxLCTop: TComboBox
Left = 56
Height = 21
Top = 16
Width = 97
ItemHeight = 13
Style = csDropDownList
TabOrder = 0
end
object cxLCLeft: TComboBox
Left = 56
Height = 21
Top = 40
Width = 97
ItemHeight = 13
Style = csDropDownList
TabOrder = 2
end
object cxLCRight: TComboBox
Left = 56
Height = 21
Top = 64
Width = 97
ItemHeight = 13
Style = csDropDownList
TabOrder = 4
end
object cxLCBottom: TComboBox
Left = 56
Height = 21
Top = 88
Width = 97
ItemHeight = 13
Style = csDropDownList
TabOrder = 6
end
object cxRCTop: TComboBox
Left = 155
Height = 21
Top = 16
Width = 97
ItemHeight = 13
Style = csDropDownList
TabOrder = 1
end
object cxRCBottom: TComboBox
Left = 155
Height = 21
Top = 88
Width = 97
ItemHeight = 13
Style = csDropDownList
TabOrder = 7
end
object cxRCRight: TComboBox
Left = 155
Height = 21
Top = 64
Width = 97
ItemHeight = 13
Style = csDropDownList
TabOrder = 5
end
object cxRCLeft: TComboBox
Left = 155
Height = 21
Top = 40
Width = 97
ItemHeight = 13
Style = csDropDownList
TabOrder = 3
end
end
end
end
object btnOk: TButton
Left = 128
Height = 25
Top = 512
Width = 75
Caption = 'Ok'
Default = True
OnClick = btnOkClick
TabOrder = 1
end
object btnCancel: TButton
Left = 216
Height = 25
Top = 512
Width = 75
Caption = 'Cancel'
OnClick = btnCancelClick
TabOrder = 2
end
object OpenDialog1: TOpenDialog
left = 224
top = 8
end
object FontDialog1: TFontDialog
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
MinFontSize = 0
MaxFontSize = 0
left = 192
top = 8
end
end