-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathoptions.dfm
More file actions
2071 lines (2071 loc) · 53.5 KB
/
options.dfm
File metadata and controls
2071 lines (2071 loc) · 53.5 KB
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 Form1: TForm1
Left = 1043
Top = 118
BorderIcons = [biSystemMenu]
BorderStyle = bsSingle
Caption = 'Options'
ClientHeight = 568
ClientWidth = 545
Color = clBtnFace
Constraints.MaxHeight = 607
Constraints.MaxWidth = 561
Constraints.MinHeight = 598
Constraints.MinWidth = 530
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
KeyPreview = True
OldCreateOrder = False
Position = poDefault
OnCreate = FormCreate
OnKeyDown = FormKeyDown
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object OpsPages: TPageControl
Left = 0
Top = 0
Width = 545
Height = 529
ActivePage = CurWinds
Align = alTop
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 0
object CurWinds: TTabSheet
Caption = 'Main'
ImageIndex = 2
object PatEditorOpts: TGroupBox
Left = 8
Top = 8
Width = 521
Height = 209
Caption = ' Interface Options '
TabOrder = 0
object DecNumbersLines: TCheckBox
Left = 12
Top = 27
Width = 295
Height = 17
Hint = 'Delete Position'
Caption = 'Line numbers in pattern, sample, ornament in Decimal'
TabOrder = 0
OnClick = DecNumbersLinesClick
end
object DecNumbersNoise: TCheckBox
Left = 12
Top = 52
Width = 287
Height = 17
Caption = 'Noise level in pattern and sample in Decimal'
TabOrder = 1
OnClick = DecNumbersNoiseClick
end
object chkHS: TCheckBox
Left = 12
Top = 78
Width = 287
Height = 17
Hint = 'Delete Position'
Caption = 'Highlight speed position for samples and ornaments'
TabOrder = 2
OnClick = chkHSClick
end
object DisablePatSeparators: TCheckBox
Left = 12
Top = 103
Width = 273
Height = 17
Caption = 'Disable vertical pattern separators'
TabOrder = 3
OnClick = DisablePatSeparatorsClick
end
object DisableHintsOpt: TCheckBox
Left = 12
Top = 129
Width = 279
Height = 17
Caption = 'Disable Hints in pattern, sample and ornament editor'
TabOrder = 4
OnClick = DisableHintsOptClick
end
object DisableCtrlClickOpt: TCheckBox
Left = 12
Top = 154
Width = 285
Height = 17
Caption = 'Disable Ctrl+Click and Ctrl+Enter on sample/ornament'
TabOrder = 5
OnClick = DisableCtrlClickOptClick
end
object DisableInfoWinOpt: TCheckBox
Left = 12
Top = 180
Width = 261
Height = 17
Caption = 'Don'#39't show Info Window when track is loaded'
TabOrder = 6
OnMouseUp = DisableInfoWinOptMouseUp
end
end
object BackupOpts: TGroupBox
Left = 277
Top = 232
Width = 252
Height = 137
Caption = ' Backup Options '
TabOrder = 2
object Label16: TLabel
Left = 12
Top = 66
Width = 30
Height = 13
Caption = 'Every:'
end
object Label17: TLabel
Left = 104
Top = 66
Width = 36
Height = 13
Caption = 'minutes'
end
object Label18: TLabel
Left = 10
Top = 103
Width = 191
Height = 13
Caption = 'Backup filename: "filename ver 001.vt2"'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clTeal
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentColor = False
ParentFont = False
end
object AutoSaveBackups: TCheckBox
Left = 12
Top = 30
Width = 145
Height = 17
Caption = 'Autosave Backups'
TabOrder = 0
OnMouseUp = AutoSaveBackupsMouseUp
end
object BackupsMinsVal: TEdit
Left = 50
Top = 63
Width = 33
Height = 21
MaxLength = 3
TabOrder = 1
Text = '1'
OnChange = BackupsMinsValChange
end
object BackupEveryMins: TUpDown
Left = 83
Top = 63
Width = 14
Height = 21
Associate = BackupsMinsVal
Min = 1
Max = 30
Position = 1
TabOrder = 2
end
end
object PriorGrp: TRadioGroup
Left = 277
Top = 384
Width = 252
Height = 105
Caption = ' Application Priority '
ItemIndex = 0
Items.Strings = (
'Normal'
'High')
TabOrder = 4
OnClick = PriorGrpClick
end
object StartupBox: TGroupBox
Left = 8
Top = 232
Width = 252
Height = 137
Caption = ' Startup '
TabOrder = 1
object start1: TLabel
Left = 12
Top = 30
Width = 93
Height = 13
Caption = 'When Vortex starts:'
end
object TemplPathLab: TLabel
Left = 12
Top = 82
Width = 91
Height = 13
Caption = 'Use template song:'
end
object StartsAction: TComboBox
Left = 12
Top = 47
Width = 221
Height = 21
Style = csDropDownList
ItemHeight = 13
TabOrder = 0
OnChange = StartsActionChange
Items.Strings = (
'Open template'
'Open blank song'
'Do nothing')
end
object TemplateSong: TEdit
Left = 12
Top = 99
Width = 192
Height = 21
TabOrder = 1
end
object BrowseTemplate: TButton
Left = 206
Top = 99
Width = 25
Height = 21
Caption = '...'
TabOrder = 2
OnClick = BrowseTemplateClick
end
end
object FreqTableBox: TGroupBox
Left = 8
Top = 384
Width = 252
Height = 105
Caption = ' Frequency Table '
TabOrder = 3
object Label15: TLabel
Left = 12
Top = 30
Width = 120
Height = 13
Hint = 'Default Frequency Table for new tracks'
Caption = 'Default Frequency Table:'
ParentShowHint = False
ShowHint = True
end
object TableName: TLabel
Left = 11
Top = 83
Width = 114
Height = 13
Caption = 'ASM or PSC (1.75 MHz)'
end
object DefaultTable: TEdit
Left = 12
Top = 55
Width = 31
Height = 21
Hint =
'Want to change track frequency table?'#13#10'Check the track options t' +
'ab.'
MaxLength = 1
ParentShowHint = False
ReadOnly = True
ShowHint = True
TabOrder = 0
Text = '2'
OnChange = DefaultTableChange
end
object UpDown2: TUpDown
Left = 43
Top = 55
Width = 14
Height = 21
Hint =
'Want to change track frequency table?'#13#10'Check the track options t' +
'ab.'
Associate = DefaultTable
Max = 4
ParentShowHint = False
Position = 2
ShowHint = True
TabOrder = 1
end
end
end
object ColorThemesTab: TTabSheet
Caption = 'Appearance'
ImageIndex = 5
object GroupBox3: TGroupBox
Left = 8
Top = 8
Width = 257
Height = 145
Caption = ' Color Themes '
TabOrder = 0
object ColorThemesList: TListBox
Left = 8
Top = 24
Width = 177
Height = 112
ItemHeight = 13
TabOrder = 0
OnClick = ColorThemesListClick
end
object BtnLoadTheme: TButton
Left = 191
Top = 24
Width = 58
Height = 21
Caption = 'Load'
TabOrder = 1
OnClick = BtnLoadThemeClick
end
object BtnSaveTheme: TButton
Left = 191
Top = 47
Width = 58
Height = 21
Caption = 'Save'
TabOrder = 2
OnClick = BtnSaveThemeClick
end
object BtnDelTheme: TButton
Left = 191
Top = 116
Width = 58
Height = 21
Caption = 'Delete'
TabOrder = 5
OnClick = BtnDelThemeClick
end
object BtnCloneTheme: TButton
Left = 191
Top = 70
Width = 58
Height = 21
Caption = 'Duplicate'
TabOrder = 3
OnClick = BtnCloneThemeClick
end
object BtnRenameTheme: TButton
Left = 191
Top = 93
Width = 58
Height = 21
Caption = 'Rename'
TabOrder = 4
OnClick = BtnRenameThemeClick
end
end
object GroupBox4: TGroupBox
Left = 8
Top = 160
Width = 521
Height = 337
Caption = ' Color Theme Options '
TabOrder = 2
object TableBottom: TShape
Left = 8
Top = 48
Width = 505
Height = 281
Brush.Color = 16382455
Pen.Color = 13290186
end
object Shape1: TShape
Left = 8
Top = 304
Width = 505
Height = 25
Brush.Color = 15461355
Pen.Color = 13290186
end
object BG10: TShape
Left = 9
Top = 272
Width = 504
Height = 25
Brush.Color = 14737632
Pen.Style = psClear
end
object BG1: TShape
Left = 9
Top = 56
Width = 504
Height = 25
Brush.Color = 15461355
Pen.Style = psClear
end
object TableHeader: TShape
Left = 8
Top = 24
Width = 505
Height = 25
Brush.Color = 16382455
Pen.Color = 13290186
end
object ColBackground: TShape
Left = 154
Top = 59
Width = 25
Height = 18
Hint = 'Main Background'
Brush.Color = 2894892
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColBackgroundMouseDown
end
object LDefinition: TLabel
Left = 20
Top = 30
Width = 44
Height = 13
Caption = 'Definition'
Color = 16382455
ParentColor = False
end
object LCurrPat: TLabel
Left = 154
Top = 30
Width = 70
Height = 13
Caption = 'Current pattern'
Color = 16382455
ParentColor = False
end
object LNextPrevPat: TLabel
Left = 278
Top = 30
Width = 85
Height = 13
Caption = 'Next/Prev pattern'
Color = 16382455
ParentColor = False
end
object LBackgr: TLabel
Left = 20
Top = 61
Width = 69
Height = 13
Caption = 'Background'
Color = 15461355
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object BG2: TShape
Left = 9
Top = 80
Width = 504
Height = 25
Brush.Color = 14737632
Pen.Style = psClear
end
object LText: TLabel
Left = 20
Top = 85
Width = 26
Height = 13
Caption = 'Text'
Color = 14737632
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object BG3: TShape
Left = 9
Top = 104
Width = 504
Height = 25
Brush.Color = 15461355
Pen.Style = psClear
end
object ColText: TShape
Left = 154
Top = 83
Width = 25
Height = 18
Hint = 'Text (Dots)'
Brush.Color = 15658734
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColTextMouseDown
end
object BG4: TShape
Left = 9
Top = 128
Width = 504
Height = 25
Brush.Color = 14737632
Pen.Style = psClear
end
object BG5: TShape
Left = 9
Top = 152
Width = 504
Height = 25
Brush.Color = 15461355
Pen.Style = psClear
end
object BG6: TShape
Left = 9
Top = 176
Width = 504
Height = 25
Brush.Color = 14737632
Pen.Style = psClear
end
object LLineNumbs: TLabel
Left = 20
Top = 109
Width = 76
Height = 13
Caption = 'Line numbers'
Color = 15461355
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object LEnvelope: TLabel
Left = 20
Top = 133
Width = 54
Height = 13
Caption = 'Envelope'
Color = 14737632
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object LNoise: TLabel
Left = 20
Top = 157
Width = 33
Height = 13
Caption = 'Noise'
Color = 15461355
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object LNote: TLabel
Left = 20
Top = 181
Width = 28
Height = 13
Caption = 'Note'
Color = 14737632
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object BG7: TShape
Left = 9
Top = 200
Width = 504
Height = 25
Brush.Color = 15461355
Pen.Style = psClear
end
object BG8: TShape
Left = 9
Top = 224
Width = 504
Height = 25
Brush.Color = 14737632
Pen.Style = psClear
end
object BG9: TShape
Left = 9
Top = 248
Width = 504
Height = 25
Brush.Color = 15461355
Pen.Style = psClear
end
object LNoteParams: TLabel
Left = 20
Top = 205
Width = 72
Height = 13
Caption = 'Note params'
Color = 15461355
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object LNoteCommands: TLabel
Left = 20
Top = 229
Width = 91
Height = 13
Caption = 'Note commands'
Color = 14737632
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object ColSelLineBackground: TShape
Left = 186
Top = 59
Width = 25
Height = 18
Hint = 'Selected Line Background'
Brush.Color = 11053224
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColSelLineBackgroundMouseDown
end
object ColHighlBackground: TShape
Left = 218
Top = 59
Width = 25
Height = 18
Hint = 'Highlighted Line Background'
Brush.Color = 4868682
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColHighlBackgroundMouseDown
end
object ColHighlText: TShape
Left = 218
Top = 83
Width = 25
Height = 18
Hint = 'Highlighted Text (Dots)'
Brush.Color = 15263976
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColHighlTextMouseDown
end
object ColLineNum: TShape
Left = 154
Top = 107
Width = 25
Height = 18
Hint = 'Line Numbers'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColLineNumMouseDown
end
object ColEnvelope: TShape
Left = 154
Top = 131
Width = 25
Height = 18
Hint = 'Envelope'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColEnvelopeMouseDown
end
object ColNoise: TShape
Left = 154
Top = 155
Width = 25
Height = 18
Hint = 'Noise'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColNoiseMouseDown
end
object ColNote: TShape
Left = 154
Top = 179
Width = 25
Height = 18
Hint = 'Note'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColNoteMouseDown
end
object ColNoteParams: TShape
Left = 154
Top = 203
Width = 25
Height = 18
Hint = 'Note Params (Sample, Envelope, Ornament, Volume)'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColNoteParamsMouseDown
end
object ColNoteCommands: TShape
Left = 154
Top = 227
Width = 25
Height = 18
Hint = 'Special Note Commands'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColNoteCommandsMouseDown
end
object ColOutBackground: TShape
Left = 278
Top = 59
Width = 25
Height = 18
Hint = 'Main Background'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColOutBackgroundMouseDown
end
object ColOutText: TShape
Left = 278
Top = 83
Width = 25
Height = 18
Hint = 'Text'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColOutTextMouseDown
end
object ColOutHlBackground: TShape
Left = 310
Top = 59
Width = 25
Height = 18
Hint = 'Highlighted Line Background'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColOutHlBackgroundMouseDown
end
object LSeparators: TLabel
Left = 20
Top = 253
Width = 62
Height = 13
Caption = 'Separators'
Color = 15461355
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object ColSeparators: TShape
Left = 154
Top = 251
Width = 25
Height = 18
Hint = 'Vertical Separators'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColSeparatorsMouseDown
end
object Sep1: TShape
Left = 140
Top = 51
Width = 1
Height = 251
Pen.Color = 12171705
end
object Sep2: TShape
Left = 137
Top = 51
Width = 1
Height = 251
Pen.Color = 12171705
end
object Sep3: TShape
Left = 264
Top = 51
Width = 1
Height = 251
Pen.Color = 12171705
end
object Sep4: TShape
Left = 264
Top = 27
Width = 1
Height = 19
Pen.Color = 13290186
end
object Sep5: TShape
Left = 137
Top = 27
Width = 1
Height = 19
Pen.Color = 13290186
end
object Sep6: TShape
Left = 140
Top = 27
Width = 1
Height = 19
Pen.Color = 13290186
end
object ColOutSeparators: TShape
Left = 278
Top = 251
Width = 25
Height = 18
Hint = 'Vertical Separators'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColOutSeparatorsMouseDown
end
object ColSelLineText: TShape
Left = 186
Top = 83
Width = 25
Height = 18
Hint = 'Selected Line Text (Dots)'
Brush.Color = 15263976
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColSelLineTextMouseDown
end
object ColSelLineNum: TShape
Left = 186
Top = 107
Width = 25
Height = 18
Hint = 'Line numbers of selected line'
Brush.Color = 15263976
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColSelLineNumMouseDown
end
object ColSelEnvelope: TShape
Left = 186
Top = 131
Width = 25
Height = 18
Hint = 'Selected Line Envelope'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColSelEnvelopeMouseDown
end
object ColSelNoise: TShape
Left = 186
Top = 155
Width = 25
Height = 18
Hint = 'Selected Line Noise'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColSelNoiseMouseDown
end
object ColSelNote: TShape
Left = 186
Top = 179
Width = 25
Height = 18
Hint = 'Selected Line Note'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColSelNoteMouseDown
end
object ColSelNoteParams: TShape
Left = 186
Top = 203
Width = 25
Height = 18
Hint = 'Selected Line Note Params'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColSelNoteParamsMouseDown
end
object ColSelNoteCommands: TShape
Left = 186
Top = 227
Width = 25
Height = 18
Hint = 'Selected Line Special Note Commands'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColSelNoteCommandsMouseDown
end
object Sep7: TShape
Left = 387
Top = 51
Width = 1
Height = 251
Pen.Color = 12171705
end
object Sep8: TShape
Left = 387
Top = 27
Width = 1
Height = 19
Pen.Color = 13290186
end
object LSampleOrnament: TLabel
Left = 401
Top = 30
Width = 86
Height = 13
Caption = 'Sample/Ornament'
Color = 16382455
ParentColor = False
end
object ColSamOrnBackground: TShape
Left = 401
Top = 59
Width = 25
Height = 18
Hint = 'Main Background'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColSamOrnBackgroundMouseDown
end
object ColSamOrnText: TShape
Left = 401
Top = 83
Width = 25
Height = 18
Hint = 'Sample: Text Color'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColSamOrnTextMouseDown
end
object ColSamOrnLineNum: TShape
Left = 401
Top = 107
Width = 25
Height = 18
Hint = 'Line Numbers'
ParentShowHint = False
Pen.Color = 11447982
ShowHint = True
OnMouseDown = ColSamOrnLineNumMouseDown