-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOptions.dfm
2784 lines (2784 loc) · 115 KB
/
Options.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
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
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
object OptionsForm: TOptionsForm
Left = 349
Top = 111
BorderIcons = []
BorderStyle = bsDialog
Caption = 'OptionsForm'
ClientHeight = 499
ClientWidth = 565
Color = clBtnFace
DefaultMonitor = dmMainForm
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
FormStyle = fsStayOnTop
OldCreateOrder = False
Position = poScreenCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
DesignSize = (
565
499)
PixelsPerInch = 96
TextHeight = 13
object LParams: TTntLabel
Left = 6
Top = 425
Width = 55
Height = 13
Anchors = [akLeft, akBottom]
Caption = 'Parameters'
end
object LHelp: TTntLabel
Left = 537
Top = 425
Width = 21
Height = 13
Cursor = crHandPoint
Alignment = taRightJustify
Anchors = [akRight, akBottom]
Caption = 'Help'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsUnderline]
ParentFont = False
OnClick = LHelpClick
end
object BOK: TTntButton
Left = 9
Top = 469
Width = 75
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'OK'
TabOrder = 0
OnClick = BOKClick
end
object BApply: TTntButton
Left = 163
Top = 469
Width = 75
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'Apply'
TabOrder = 1
OnClick = BApplyClick
end
object BSave: TTntButton
Left = 322
Top = 469
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Caption = 'Save'
TabOrder = 2
OnClick = BSaveClick
end
object BClose: TTntButton
Left = 482
Top = 469
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Caption = 'Close'
TabOrder = 4
OnClick = BCloseClick
end
object EParams: TTntEdit
Left = 6
Top = 441
Width = 555
Height = 21
Anchors = [akLeft, akRight, akBottom]
TabOrder = 3
end
object Tab: TTntPageControl
Left = 5
Top = 6
Width = 555
Height = 417
ActivePage = TSystem
Anchors = [akLeft, akTop, akRight, akBottom]
TabOrder = 5
OnChange = TabChange
object TSystem: TTntTabSheet
Caption = 'System'
DesignSize = (
547
389)
object LLanguage: TTntLabel
Left = 8
Top = 9
Width = 47
Height = 13
Caption = 'Language'
end
object TseekL: TTntLabel
Left = 319
Top = 298
Width = 25
Height = 13
Caption = 'Jump'
end
object TUnit: TTntLabel
Left = 464
Top = 298
Width = 66
Height = 13
Caption = 'seconds/Seek'
end
object CLanguage: TTntComboBox
Left = 120
Top = 5
Width = 177
Height = 21
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
ItemHeight = 13
TabOrder = 0
Items.Strings = (
''
''
'')
end
object CRFScr: TTntCheckBox
Left = 12
Top = 56
Width = 261
Height = 17
Caption = 'Click MBR to FullScreen'
ParentShowHint = False
ShowHint = True
TabOrder = 4
end
object nfconf: TTntCheckBox
Left = 12
Top = 32
Width = 253
Height = 17
Caption = 'Use nofontconfig option'
ParentShowHint = False
ShowHint = True
TabOrder = 1
end
object EMplayerLocation: TTntEdit
Left = 192
Top = 344
Width = 322
Height = 21
Anchors = [akLeft, akRight, akBottom]
TabOrder = 2
end
object BMplayer: TTntButton
Left = 515
Top = 344
Width = 28
Height = 21
Anchors = [akRight, akBottom]
Caption = '...'
TabOrder = 3
OnClick = BMplayerClick
end
object CWid: TTntCheckBox
Left = 283
Top = 370
Width = 330
Height = 17
Anchors = [akLeft, akRight, akBottom]
Caption = 'Use WID'
TabOrder = 5
end
object CNi: TTntCheckBox
Left = 12
Top = 104
Width = 261
Height = 17
Caption = 'Use non-interleaved AVI parser'
ParentShowHint = False
ShowHint = True
TabOrder = 15
end
object CDnav: TTntCheckBox
Left = 318
Top = 152
Width = 229
Height = 17
Anchors = [akTop, akRight]
Caption = 'Use DVDNav'
ParentShowHint = False
ShowHint = True
TabOrder = 16
end
object CLavf: TTntCheckBox
Left = 12
Top = 80
Width = 261
Height = 17
Caption = 'Use lavf Demuxer'
ParentShowHint = False
ShowHint = True
TabOrder = 17
end
object RCMplayer: TTntRadioButton
Left = 4
Top = 370
Width = 269
Height = 17
Anchors = [akLeft, akBottom]
Caption = 'Current Directory'
TabOrder = 9
OnClick = RCMplayerClick
end
object RMplayer: TTntRadioButton
Left = 4
Top = 347
Width = 181
Height = 17
Anchors = [akLeft, akBottom]
Caption = 'Mplayer location'
TabOrder = 10
OnClick = RMplayerClick
end
object CFd: TTntCheckBox
Left = 318
Top = 32
Width = 229
Height = 17
Anchors = [akTop, akRight]
Caption = 'Framedrop'
ParentShowHint = False
ShowHint = True
TabOrder = 11
end
object CAsync: TTntCheckBox
Left = 318
Top = 104
Width = 173
Height = 17
Anchors = [akTop, akRight]
Caption = 'Autosync'
ParentShowHint = False
ShowHint = True
TabOrder = 12
OnClick = CAsyncClick
end
object EAsync: TTntEdit
Left = 495
Top = 102
Width = 34
Height = 21
Anchors = [akTop, akRight]
TabOrder = 13
Text = '100'
end
object UAsync: TTntUpDown
Left = 529
Top = 102
Width = 17
Height = 21
Anchors = [akTop, akRight]
Associate = EAsync
Min = 1
Max = 1000
Position = 100
TabOrder = 14
Thousands = False
end
object CCache: TTntCheckBox
Left = 318
Top = 128
Width = 173
Height = 17
Anchors = [akTop, akRight]
Caption = 'Cache'
ParentShowHint = False
ShowHint = True
TabOrder = 6
OnClick = CCacheClick
end
object ECache: TTntEdit
Left = 495
Top = 126
Width = 34
Height = 21
Anchors = [akTop, akRight]
TabOrder = 7
Text = '512'
end
object UCache: TTntUpDown
Left = 529
Top = 126
Width = 17
Height = 21
Anchors = [akTop, akRight]
Associate = ECache
Min = 1
Max = 10000
Position = 512
TabOrder = 8
Thousands = False
end
object CPriorityBoost: TTntCheckBox
Left = 318
Top = 80
Width = 229
Height = 17
Anchors = [akTop, akRight]
Caption = 'Priority boost'
ParentShowHint = False
ShowHint = True
TabOrder = 18
end
object CISub: TTntCheckBox
Left = 12
Top = 272
Width = 290
Height = 17
Caption = 'Include Subtitles on Screenshot'
ParentShowHint = False
ShowHint = False
TabOrder = 19
end
object SSF: TTntStaticText
Left = 8
Top = 325
Width = 92
Height = 17
Anchors = [akLeft, akBottom]
Caption = 'ScreenShot Folder'
TabOrder = 20
end
object BSsf: TTntButton
Left = 515
Top = 319
Width = 28
Height = 21
Anchors = [akRight, akBottom]
Caption = '...'
TabOrder = 21
OnClick = BSsfClick
end
object ESsf: TTntEdit
Left = 192
Top = 320
Width = 322
Height = 21
Anchors = [akLeft, akRight, akBottom]
TabOrder = 22
end
object Cone: TTntCheckBox
Left = 12
Top = 152
Width = 261
Height = 17
Caption = 'Use only one instance of MPUI'
ParentShowHint = False
ShowHint = False
TabOrder = 23
end
object CGUI: TTntCheckBox
Left = 318
Top = 200
Width = 229
Height = 17
Anchors = [akTop, akRight]
Caption = 'No GUI of Mplayer'
ParentShowHint = False
ShowHint = True
TabOrder = 24
end
object CNobps: TTntCheckBox
Left = 12
Top = 128
Width = 261
Height = 17
Caption = 'Don'#39't use avg b/s for A-V sync'
ParentShowHint = False
ShowHint = True
TabOrder = 25
end
object CFilter: TTntCheckBox
Left = 318
Top = 224
Width = 229
Height = 17
Anchors = [akTop, akRight]
Caption = 'Filter DropFiles'
ParentShowHint = False
ShowHint = True
TabOrder = 26
end
object CRS: TTntCheckBox
Left = 12
Top = 176
Width = 290
Height = 17
Caption = 'Start MPUI with last size'
ParentShowHint = False
ShowHint = False
TabOrder = 27
end
object CSP: TTntCheckBox
Left = 318
Top = 56
Width = 229
Height = 17
Anchors = [akTop, akRight]
Caption = 'Click video to pause'
ParentShowHint = False
ShowHint = True
TabOrder = 28
end
object CTime: TTntCheckBox
Left = 12
Top = 224
Width = 229
Height = 17
Anchors = [akTop, akRight]
Caption = 'Display OS Time in status bar'
ParentShowHint = False
ShowHint = True
TabOrder = 32
end
object CRP: TTntCheckBox
Left = 12
Top = 200
Width = 290
Height = 17
Caption = 'Start MPUI with last postion'
ParentShowHint = False
ShowHint = False
TabOrder = 30
end
object CDs: TTntCheckBox
Left = 318
Top = 176
Width = 229
Height = 17
Anchors = [akTop, akRight]
Caption = 'Show logo when play audio'
ParentShowHint = False
ShowHint = True
TabOrder = 31
end
object Eseek: TTntEdit
Left = 408
Top = 294
Width = 49
Height = 21
TabOrder = 29
end
object nmsgm: TTntCheckBox
Left = 318
Top = 8
Width = 229
Height = 17
Anchors = [akTop, akRight]
Caption = 'Use nomsgmodule option'
ParentShowHint = False
ShowHint = True
TabOrder = 33
end
object CAddsfiles: TTntCheckBox
Left = 12
Top = 248
Width = 290
Height = 17
Caption = 'Add sequence files'
ParentShowHint = False
ShowHint = False
TabOrder = 34
end
object CLS: TTntCheckBox
Left = 318
Top = 248
Width = 229
Height = 17
Caption = 'Popup Download Lyric/Subtitle dialog'
ParentShowHint = False
ShowHint = True
TabOrder = 35
end
object EAV: TTntEdit
Left = 495
Top = 270
Width = 34
Height = 21
Anchors = [akTop, akRight]
TabOrder = 36
Text = '1'
end
object UDAV: TTntUpDown
Left = 529
Top = 270
Width = 15
Height = 21
Anchors = [akTop, akRight]
Associate = EAV
Min = 1
Max = 8
Position = 1
TabOrder = 37
Thousands = False
end
object CAV: TTntCheckBox
Left = 318
Top = 272
Width = 173
Height = 17
Anchors = [akTop, akRight]
Caption = 'libavcodec decoding threads'
ParentShowHint = False
ShowHint = True
TabOrder = 38
OnClick = CAVClick
end
object ads: TTntCheckBox
Left = 12
Top = 296
Width = 290
Height = 17
Caption = 'Auto download subtitle as playing a video'
ParentShowHint = False
ShowHint = False
TabOrder = 39
end
end
object TVideo: TTntTabSheet
Caption = 'Video'
ImageIndex = 1
DesignSize = (
547
389)
object LPostproc: TTntLabel
Left = 10
Top = 104
Width = 72
Height = 13
Caption = 'Postprocessing'
end
object LAspect: TTntLabel
Left = 10
Top = 32
Width = 58
Height = 13
Caption = 'Aspect ratio'
end
object LDeinterlace: TTntLabel
Left = 10
Top = 80
Width = 54
Height = 13
Caption = 'Deinterlace'
end
object LMAspect: TTntLabel
Left = 10
Top = 56
Width = 97
Height = 13
Caption = 'Monitor Aspect ratio'
end
object LVideoout: TTntLabel
Left = 10
Top = 8
Width = 61
Height = 13
Caption = 'Video output'
end
object CIndex: TTntCheckBox
Left = 8
Top = 130
Width = 305
Height = 17
Caption = 'Re-Index file if needed'
ParentShowHint = False
ShowHint = True
TabOrder = 9
end
object CYuy2: TTntCheckBox
Left = 368
Top = 174
Width = 179
Height = 17
Anchors = [akTop, akRight]
Caption = 'Use YUY2 colorspace'
ParentShowHint = False
ShowHint = True
TabOrder = 7
end
object CPostproc: TTntComboBox
Left = 256
Top = 100
Width = 288
Height = 21
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
ItemHeight = 0
TabOrder = 8
end
object CAspect: TTntComboBox
Left = 256
Top = 28
Width = 288
Height = 21
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
ItemHeight = 0
TabOrder = 1
end
object CDeinterlace: TTntComboBox
Left = 256
Top = 76
Width = 288
Height = 21
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
ItemHeight = 0
TabOrder = 2
end
object CDr: TTntCheckBox
Left = 368
Top = 152
Width = 179
Height = 17
Anchors = [akTop, akRight]
Caption = 'Direct rendering'
ParentShowHint = False
ShowHint = True
TabOrder = 6
end
object CMAspect: TComboBox
Tag = -1
Left = 256
Top = 52
Width = 288
Height = 21
Anchors = [akLeft, akTop, akRight]
ItemHeight = 0
TabOrder = 4
end
object double: TTntCheckBox
Left = 8
Top = 152
Width = 307
Height = 17
Caption = 'Double buffer'
ParentShowHint = False
ShowHint = True
TabOrder = 0
end
object CFlip: TTntCheckBox
Left = 8
Top = 196
Width = 305
Height = 17
Caption = 'Flip Video'
TabOrder = 3
end
object CEq2: TTntCheckBox
Left = 8
Top = 174
Width = 305
Height = 17
Caption = 'Use Software video Equalizer'
ParentShowHint = False
ShowHint = True
TabOrder = 5
end
object CMir: TTntCheckBox
Left = 368
Top = 196
Width = 179
Height = 17
Anchors = [akTop, akRight]
Caption = 'Mirror Video'
TabOrder = 10
end
object LRot: TTntStaticText
Left = 356
Top = 220
Width = 37
Height = 17
Alignment = taCenter
Anchors = [akTop, akRight]
BevelInner = bvNone
BevelOuter = bvNone
Caption = 'Rotate'
TabOrder = 12
end
object CVSync: TTntCheckBox
Left = 368
Top = 130
Width = 179
Height = 17
Anchors = [akTop, akRight]
Caption = 'VSync'
ParentShowHint = False
ShowHint = True
TabOrder = 13
end
object CRot: TComboBox
Left = 485
Top = 216
Width = 54
Height = 21
Style = csDropDownList
Anchors = [akTop, akRight]
ItemHeight = 13
TabOrder = 11
Items.Strings = (
'0'
'90'
'-90')
end
object CVideoOut: TComboBox
Tag = -1
Left = 256
Top = 4
Width = 288
Height = 21
Anchors = [akLeft, akTop, akRight]
ItemHeight = 13
TabOrder = 14
OnChange = CDDXAClick
Items.Strings = (
'novideo'
'null'
'Auto'
'directx'
'directx:noaccel'
'direct3d'
'gl'
'gl:nomanyfmts'
'gl:yuv=2:force-pbo'
'gl:yuv=2:force-pbo:ati-hack'
'gl:yuv=3'
'gl2'
'gl2:yuv=3'
'matrixview')
end
end
object TAudio: TTntTabSheet
Caption = 'Audio'
ImageIndex = 2
DesignSize = (
547
389)
object LAudioOut: TTntLabel
Left = 10
Top = 8
Width = 62
Height = 13
Caption = 'Audio output'
end
object LAudioDev: TTntLabel
Left = 10
Top = 32
Width = 61
Height = 13
Caption = 'Audio device'
end
object LCh: TTntStaticText
Left = 354
Top = 84
Width = 65
Height = 17
Alignment = taRightJustify
Anchors = [akTop, akRight]
BevelInner = bvNone
Caption = 'Stereo Mode'
TabOrder = 9
end
object CAudioOut: TTntComboBox
Left = 256
Top = 4
Width = 288
Height = 21
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
ItemHeight = 13
TabOrder = 4
OnChange = CAudioOutChange
Items.Strings = (
'don'#39't decode'
'dont'#39'play'
'Auto'
'Win32'
'DirectSound')
end
object CVolnorm: TTntCheckBox
Left = 355
Top = 58
Width = 184
Height = 17
Anchors = [akTop, akRight]
Caption = 'CVolnorm'
ParentShowHint = False
ShowHint = True
TabOrder = 0
end
object CAudioDev: TComboBox
Left = 256
Top = 28
Width = 288
Height = 21
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
ItemHeight = 0
TabOrder = 1
end
object CSPDIF: TTntCheckBox
Left = 12
Top = 82
Width = 245
Height = 17
Caption = 'Passthrough S/PDIF'
TabOrder = 3
end
object CCh: TComboBox
Left = 493
Top = 80
Width = 51
Height = 21
Style = csDropDownList
Anchors = [akTop, akRight]
ItemHeight = 13
TabOrder = 5
Items.Strings = (
'2'
'4'
'5.1'
'7.1')
end
object CSoftVol: TTntCheckBox
Left = 12
Top = 58
Width = 245
Height = 17
Caption = 'Software volume control'
TabOrder = 2
end
object EWadsp: TTntEdit
Left = 176
Top = 362
Width = 338
Height = 21
Anchors = [akLeft, akRight, akBottom]
TabOrder = 6
end
object BWadsp: TTntButton
Left = 515
Top = 362
Width = 28
Height = 21
Anchors = [akRight, akBottom]
Caption = '...'
TabOrder = 7
OnClick = BWadspClick
end
object CWadsp: TTntCheckBox
Left = 4
Top = 340
Width = 546
Height = 17
Anchors = [akLeft, akRight, akBottom]
Caption = 'Use Winamp DSP plugin'
ParentShowHint = False
ShowHint = False
TabOrder = 8
OnClick = CWadspClick
end
object TLyric: TTntGroupBox
Left = 1
Top = 224
Width = 544
Height = 108
Anchors = [akLeft, akRight, akBottom]
Caption = 'Lyric'
TabOrder = 10
DesignSize = (
544
108)
object LTCL: TTntLabel
Left = 46
Top = 49
Width = 48
Height = 13
Alignment = taRightJustify
Anchors = [akLeft, akBottom]
Caption = 'Text color'
end
object LHCL: TTntLabel
Left = 226
Top = 49
Width = 39
Height = 13
Alignment = taRightJustify
Anchors = [akLeft, akBottom]
Caption = 'Hg color'
end
object LBCL: TTntLabel
Left = 399
Top = 49
Width = 38
Height = 13
Alignment = taRightJustify
Anchors = [akLeft, akBottom]
Caption = 'bg color'
end
object SLyric: TTntLabel
Left = 8
Top = 82
Width = 55
Height = 13
Anchors = [akLeft, akBottom]
Caption = 'Lyric Folder'
end
object PLTC: TPanel
Left = 120
Top = 44
Width = 36
Height = 25
Cursor = crHandPoint
Anchors = [akLeft, akBottom]
BevelInner = bvRaised
BevelOuter = bvLowered
BorderWidth = 1
Color = clWindowText
ParentBackground = False
TabOrder = 0
OnClick = SetColor
end
object PLBC: TPanel
Left = 484
Top = 44
Width = 36
Height = 25
Cursor = crHandPoint
Anchors = [akRight, akBottom]
BevelInner = bvRaised
BevelOuter = bvLowered
BorderWidth = 1
Color = clWindow
ParentBackground = False
TabOrder = 3
OnClick = SetColor
end
object PLHC: TPanel
Left = 286
Top = 44
Width = 36
Height = 25
Cursor = crHandPoint
Anchors = [akLeft, akBottom]
BevelInner = bvRaised
BevelOuter = bvLowered
BorderWidth = 1
Color = clRed
ParentBackground = False
TabOrder = 1
OnClick = SetColor
end
object ELyric: TTntEdit
Left = 176
Top = 78
Width = 334
Height = 21
Anchors = [akLeft, akRight, akBottom]
TabOrder = 2
end
object BLyric: TTntButton
Tag = 1
Left = 511
Top = 78
Width = 28
Height = 21