forked from ivanpirog/vortextracker
-
Notifications
You must be signed in to change notification settings - Fork 3
/
CHILDWIN.dfm
1964 lines (1964 loc) · 51.4 KB
/
CHILDWIN.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 MDIChild: TMDIChild
Left = 826
Top = 63
HorzScrollBar.Visible = False
VertScrollBar.Visible = False
BorderIcons = [biSystemMenu]
BorderStyle = bsSingle
Caption = 'Module'
ClientHeight = 718
ClientWidth = 662
Color = clBtnFace
Constraints.MinHeight = 470
ParentFont = True
FormStyle = fsMDIChild
KeyPreview = True
OldCreateOrder = False
Position = poDefault
Visible = True
OnActivate = FormActivate
OnClose = FormClose
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDblClick = FormDblClick
OnDestroy = FormDestroy
OnKeyDown = FormKeyDown
OnPaint = FormPaint
OnResize = FormResize
PixelsPerInch = 96
TextHeight = 13
object TopBackgroundBox: TShape
Left = 0
Top = 600
Width = 769
Height = 9
Brush.Color = clBtnFace
Pen.Color = clBtnFace
end
object PageControl1: TPageControl
Left = 0
Top = 0
Width = 634
Height = 665
ActivePage = PatternsSheet
BiDiMode = bdLeftToRight
Constraints.MinWidth = 634
Images = MainForm.ImageList1
ParentBiDiMode = False
TabHeight = 19
TabOrder = 0
OnChange = PageControl1Change
object PatternsSheet: TTabSheet
Caption = 'Patterns'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Pitch = fpVariable
Font.Style = []
ImageIndex = 29
ParentFont = False
ParentShowHint = False
ShowHint = True
object AutoHLBox: TGroupBox
Left = 0
Top = 120
Width = 97
Height = 33
BiDiMode = bdLeftToRight
Color = clBtnFace
ParentBackground = False
ParentBiDiMode = False
ParentColor = False
TabOrder = 10
object AutoHL: TSpeedButton
Left = 4
Top = 9
Width = 45
Height = 20
Hint = 'Highlight step'
AllowAllUp = True
GroupIndex = 1
Down = True
Caption = 'Auto'
OnClick = AutoHLCheckClick
end
object Edit17: TEdit
Left = 48
Top = 9
Width = 25
Height = 20
Hint = 'Highlight step'
AutoSize = False
TabOrder = 0
Text = '4'
OnExit = Edit17Exit
OnKeyPress = Edit17KeyPress
end
object UpDown15: TUpDown
Left = 73
Top = 9
Width = 16
Height = 20
Hint = 'Highlight step'
Associate = Edit17
Position = 4
TabOrder = 1
OnChangingEx = UpDown15ChangingEx
OnClick = UpDown15Click
end
end
object Channel1Box: TGroupBox
Left = 96
Top = 120
Width = 142
Height = 33
TabOrder = 11
object SpeedButton1: TSpeedButton
Left = 5
Top = 9
Width = 50
Height = 20
Hint = 'Mute Channel'
AllowAllUp = True
GroupIndex = 10
Caption = 'Chan A'
OnClick = SpeedButton1Click
end
object SpeedButton2: TSpeedButton
Left = 76
Top = 9
Width = 20
Height = 20
Hint = 'Mute Tone'
AllowAllUp = True
GroupIndex = 1
Caption = 'T'
Margin = 4
OnClick = SpeedButton2Click
end
object SpeedButton3: TSpeedButton
Left = 96
Top = 9
Width = 20
Height = 20
Hint = 'Mute Noise'
AllowAllUp = True
GroupIndex = 2
Caption = 'N'
Margin = 4
OnClick = SpeedButton3Click
end
object SpeedButton4: TSpeedButton
Left = 117
Top = 9
Width = 20
Height = 20
Hint = 'Mute Envelope'
AllowAllUp = True
GroupIndex = 3
Caption = 'E'
Margin = 4
OnClick = SpeedButton4Click
end
object SpeedButton13: TSpeedButton
Left = 55
Top = 9
Width = 20
Height = 20
Hint = 'Solo Channel'
AllowAllUp = True
GroupIndex = 13
Caption = 'S'
Margin = 4
OnClick = SpeedButton13Click
end
end
object PatEmptyBox: TGroupBox
Left = 0
Top = -2
Width = 1127
Height = 58
BiDiMode = bdLeftToRight
Color = clBtnFace
ParentBackground = False
ParentBiDiMode = False
ParentColor = False
TabOrder = 1
end
object Channel2Box: TGroupBox
Left = 240
Top = 120
Width = 145
Height = 33
TabOrder = 12
object SpeedButton5: TSpeedButton
Left = 5
Top = 9
Width = 50
Height = 20
Hint = 'Mute Channel'
AllowAllUp = True
GroupIndex = 11
Caption = 'Chan B'
OnClick = SpeedButton5Click
end
object SpeedButton6: TSpeedButton
Left = 77
Top = 9
Width = 20
Height = 20
Hint = 'Mute Tone'
AllowAllUp = True
GroupIndex = 4
Caption = 'T'
Margin = 4
OnClick = SpeedButton6Click
end
object SpeedButton7: TSpeedButton
Left = 97
Top = 9
Width = 20
Height = 20
Hint = 'Mute Noise'
AllowAllUp = True
GroupIndex = 5
Caption = 'N'
Margin = 4
OnClick = SpeedButton7Click
end
object SpeedButton8: TSpeedButton
Left = 117
Top = 9
Width = 20
Height = 20
Hint = 'Mute Envelope'
AllowAllUp = True
GroupIndex = 6
Caption = 'E'
Margin = 4
OnClick = SpeedButton8Click
end
object SpeedButton14: TSpeedButton
Left = 57
Top = 9
Width = 20
Height = 20
Hint = 'Solo Channel'
AllowAllUp = True
GroupIndex = 14
Caption = 'S'
Margin = 4
OnClick = SpeedButton14Click
end
end
object Channel3Box: TGroupBox
Left = 384
Top = 120
Width = 145
Height = 33
TabOrder = 13
object SpeedButton9: TSpeedButton
Left = 7
Top = 9
Width = 50
Height = 20
Hint = 'Mute Channel'
AllowAllUp = True
GroupIndex = 12
Caption = 'Chan C'
OnClick = SpeedButton9Click
end
object SpeedButton10: TSpeedButton
Left = 79
Top = 9
Width = 20
Height = 20
Hint = 'Mute Tone'
AllowAllUp = True
GroupIndex = 7
Caption = 'T'
Margin = 4
OnClick = SpeedButton10Click
end
object SpeedButton11: TSpeedButton
Left = 99
Top = 9
Width = 20
Height = 20
Hint = 'Mute Noise'
AllowAllUp = True
GroupIndex = 8
Caption = 'N'
Margin = 4
OnClick = SpeedButton11Click
end
object SpeedButton12: TSpeedButton
Left = 121
Top = 9
Width = 20
Height = 20
Hint = 'Mute Envelope'
AllowAllUp = True
GroupIndex = 9
Caption = 'E'
Margin = 4
OnClick = SpeedButton12Click
end
object SpeedButton15: TSpeedButton
Left = 59
Top = 9
Width = 20
Height = 20
Hint = 'Solo Channel'
AllowAllUp = True
GroupIndex = 15
Caption = 'S'
Margin = 4
OnClick = SpeedButton15Click
end
end
object TrackInfoBox: TGroupBox
Left = -2
Top = 49
Width = 800
Height = 34
BiDiMode = bdLeftToRight
Color = clBtnFace
ParentBackground = False
ParentBiDiMode = False
ParentColor = False
TabOrder = 8
object Label6: TLabel
Left = 239
Top = 13
Width = 11
Height = 13
BiDiMode = bdLeftToRight
Caption = 'by'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clMenuText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Pitch = fpVariable
Font.Style = []
ParentBiDiMode = False
ParentColor = False
ParentFont = False
end
object Edit3: TEdit
Left = 2
Top = 9
Width = 231
Height = 21
Hint = 'Song title'
BiDiMode = bdLeftToRight
MaxLength = 32
ParentBiDiMode = False
TabOrder = 0
OnChange = Edit3Change
OnKeyPress = Edit3KeyPress
end
object Edit4: TEdit
Left = 256
Top = 9
Width = 233
Height = 21
Hint = 'Author name'
BiDiMode = bdLeftToRight
MaxLength = 32
ParentBiDiMode = False
TabOrder = 1
OnChange = Edit4Change
OnKeyPress = Edit4KeyPress
end
end
object PatOptions: TGroupBox
Left = -2
Top = -2
Width = 168
Height = 58
BiDiMode = bdLeftToRight
Color = clBtnFace
Ctl3D = True
ParentBackground = False
ParentBiDiMode = False
ParentColor = False
ParentCtl3D = False
TabOrder = 0
object Label2: TLabel
Left = 60
Top = 15
Width = 34
Height = 13
Hint = 'Current pattern (press [+]/[-] on NUMpad to change)'
Caption = 'Pattern'
Font.Charset = DEFAULT_CHARSET
Font.Color = clMenuText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Pitch = fpVariable
Font.Style = []
ParentFont = False
end
object Label5: TLabel
Left = 113
Top = 15
Width = 33
Height = 13
Hint = 'Pattern length'
Caption = 'Length'
Font.Charset = DEFAULT_CHARSET
Font.Color = clMenuText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Pitch = fpVariable
Font.Style = []
ParentFont = False
end
object SpeedButton26: TSpeedButton
Left = 2
Top = 10
Width = 45
Height = 21
Hint = 'Load pattern'
BiDiMode = bdLeftToRight
Caption = 'Load'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -4
Font.Name = 'MS Sans Serif'
Font.Pitch = fpVariable
Font.Style = []
ParentFont = False
ParentBiDiMode = False
OnClick = SpeedButton26Click
end
object SpeedButton27: TSpeedButton
Left = 2
Top = 32
Width = 45
Height = 21
Hint = 'Save pattern'
Caption = 'Save'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 8
Font.Name = 'MS Sans Serif'
Font.Pitch = fpVariable
Font.Style = []
ParentFont = False
OnClick = SpeedButton27Click
end
object PatternNumUpDown: TUpDown
Left = 85
Top = 32
Width = 15
Height = 20
Hint = 'Current pattern (press [+]/[-] on NUMpad to change)'
Associate = PatternNumEdit
Max = 84
TabOrder = 1
OnChangingEx = PatternNumUpDownChangingEx
end
object PatternNumEdit: TEdit
Left = 60
Top = 32
Width = 25
Height = 20
Hint = 'Current pattern (press [+]/[-] on NUMpad to change)'
AutoSize = False
BevelEdges = []
BevelInner = bvNone
BevelOuter = bvNone
MaxLength = 2
TabOrder = 0
Text = '0'
OnChange = PatternNumEditChange
OnExit = PatternNumEditExit
OnKeyPress = PatternNumEditKeyPress
end
object PatternLenEdit: TEdit
Left = 113
Top = 32
Width = 25
Height = 20
Hint = 'Pattern length'
AutoSize = False
MaxLength = 3
TabOrder = 2
Text = '64'
OnExit = PatternLenEditExit
OnKeyDown = PatternLenEditKeyDown
OnKeyPress = PatternLenEditKeyPress
end
object PatternLenUpDown: TUpDown
Left = 138
Top = 32
Width = 15
Height = 20
Hint = 'Pattern length'
Min = 1
Position = 64
TabOrder = 3
OnChangingEx = PatternLenUpDownChangingEx
end
end
object SpeedBox: TGroupBox
Left = 164
Top = -2
Width = 86
Height = 58
BiDiMode = bdLeftToRight
Color = clBtnFace
Ctl3D = True
ParentBackground = False
ParentBiDiMode = False
ParentColor = False
ParentCtl3D = False
TabOrder = 2
object Label3: TLabel
Left = 14
Top = 15
Width = 59
Height = 13
Hint = 'Initial speed'
Caption = 'Speed/BPM'
Font.Charset = DEFAULT_CHARSET
Font.Color = clMenuText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Pitch = fpVariable
Font.Style = []
ParentFont = False
end
object SpeedBpmEdit: TEdit
Left = 14
Top = 32
Width = 43
Height = 20
Hint = 'Initial speed'
AutoSize = False
TabOrder = 0
Text = '3'
OnEnter = SpeedBpmEditEnter
OnExit = SpeedBpmEditExit
OnKeyPress = SpeedBpmEditKeyPress
OnKeyUp = SpeedBpmEditKeyUp
end
object SpeedBpmUpDown: TUpDown
Left = 57
Top = 32
Width = 15
Height = 20
Hint = 'Initial speed'
Min = 1
Max = 255
Position = 3
TabOrder = 1
OnChangingEx = SpeedBpmUpDownChangingEx
OnClick = SpeedBpmUpDownClick
end
end
object OctaveBox: TGroupBox
Left = 248
Top = -2
Width = 68
Height = 58
BiDiMode = bdLeftToRight
Color = clBtnFace
ParentBackground = False
ParentBiDiMode = False
ParentColor = False
TabOrder = 3
object Label1: TLabel
Left = 14
Top = 15
Width = 35
Height = 13
Hint = 'Alt+1..8, Numpad 1-8'
Caption = 'Octave'
Font.Charset = DEFAULT_CHARSET
Font.Color = clMenuText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Pitch = fpVariable
Font.Style = []
ParentFont = False
end
object OctaveEdit: TEdit
Left = 14
Top = 32
Width = 25
Height = 20
Hint = 'Alt+1..8, Numpad 1-8'
AutoSize = False
MaxLength = 1
TabOrder = 0
Text = '3'
OnExit = OctaveEditExit
OnKeyPress = OctaveEditKeyPress
end
object OctaveUpDown: TUpDown
Left = 39
Top = 32
Width = 16
Height = 20
Hint = 'Alt+1..8, Numpad 1-8'
Associate = OctaveEdit
Min = 1
Max = 8
Position = 3
TabOrder = 1
end
end
object AutoStepBox: TGroupBox
Left = 314
Top = -2
Width = 90
Height = 58
BiDiMode = bdLeftToRight
Color = clBtnFace
ParentBackground = False
ParentBiDiMode = False
ParentColor = False
TabOrder = 4
object AutoStepBtn: TSpeedButton
Left = 14
Top = 11
Width = 61
Height = 20
Hint = 'Toggle: Ctrl+R, Ctrl+Space'
AllowAllUp = True
GroupIndex = 11
Caption = 'Auto Step'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Pitch = fpVariable
Font.Style = []
Layout = blGlyphRight
ParentFont = False
OnClick = AutoStepBtnClick
end
object AutoStepUpDown: TUpDown
Left = 57
Top = 32
Width = 18
Height = 20
Hint = 'Ctrl + 0-9 for change'
Associate = AutoStepEdit
Min = -64
Max = 64
TabOrder = 1
end
object AutoStepEdit: TEdit
Left = 14
Top = 32
Width = 43
Height = 20
Hint = 'Ctrl + 0-9 for change'
AutoSize = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Pitch = fpVariable
Font.Style = []
MaxLength = 2
ParentFont = False
TabOrder = 0
Text = '0'
OnExit = AutoStepEditExit
OnKeyPress = AutoStepEditKeyPress
end
end
object AutoEnvBox: TGroupBox
Left = 402
Top = -2
Width = 94
Height = 58
BiDiMode = bdLeftToRight
Color = clBtnFace
ParentBackground = False
ParentBiDiMode = False
ParentColor = False
TabOrder = 5
object AutoEnvBtn: TSpeedButton
Left = 14
Top = 11
Width = 66
Height = 20
Hint = 'Toggle autoenvelope (Ctrl+E or Numpad 0 when editing tracks)'
AllowAllUp = True
GroupIndex = 10
Caption = 'Auto Env'
Layout = blGlyphRight
OnClick = AutoEnvBtnClick
end
object SpeedButton16: TSpeedButton
Left = 14
Top = 32
Width = 22
Height = 20
Hint = 'Tone frequency'
Caption = '1'
OnClick = SpeedButton16Click
end
object SpeedButton17: TSpeedButton
Left = 36
Top = 32
Width = 22
Height = 20
Hint = 'Toggle standard combinations (Ctrl+Alt+E)'
Caption = ':'
OnClick = SpeedButton17Click
end
object SpeedButton18: TSpeedButton
Left = 58
Top = 32
Width = 22
Height = 20
Hint = 'Envelope frequency'
Caption = '1'
OnClick = SpeedButton18Click
end
end
object InterfaceOpts: TGroupBox
Left = -10
Top = 444
Width = 771
Height = 33
Color = clBtnFace
ParentColor = False
ParentShowHint = False
ShowHint = True
TabOrder = 14
object EnvelopeAsNoteOpt: TCheckBox
Left = 12
Top = 11
Width = 117
Height = 17
Hint = 'Envelope As Note (press [/] on Numpad to change)'
Caption = 'Envelope as Note'
Ctl3D = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clMenuText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Pitch = fpVariable
Font.Style = []
ParentCtl3D = False
ParentFont = False
TabOrder = 0
OnClick = EnvelopeAsNoteOptClick
OnMouseUp = EnvelopeAsNoteOptMouseUp
end
object DuplicateNoteParams: TCheckBox
Left = 220
Top = 11
Width = 125
Height = 17
Hint = 'Use sample, envelope, ornament and value of last note'
Caption = 'Use last note params'
Font.Charset = DEFAULT_CHARSET
Font.Color = clMenuText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Pitch = fpVariable
Font.Style = []
ParentFont = False
TabOrder = 1
OnMouseDown = DuplicateNoteParamsMouseDown
end
object BetweenPatterns: TCheckBox
Left = 398
Top = 11
Width = 133
Height = 17
Hint = 'Move continuously between patterns while editing'
Caption = 'Move between patterns'
Font.Charset = DEFAULT_CHARSET
Font.Color = clMenuText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Pitch = fpVariable
Font.Style = []
ParentFont = False
TabOrder = 2
OnMouseDown = BetweenPatternsMouseDown
end
end
object PositionsScrollBox: TScrollBox
Left = 0
Top = 85
Width = 677
Height = 36
HorzScrollBar.Smooth = True
HorzScrollBar.Style = ssFlat
HorzScrollBar.Tracking = True
VertScrollBar.Visible = False
AutoScroll = False
BevelEdges = [beLeft, beRight, beBottom]
Color = clScrollBar
Ctl3D = True
ParentColor = False
ParentCtl3D = False
TabOrder = 9
object StringGrid1: TStringGrid
Left = 0
Top = 0
Width = 673
Height = 42
Cursor = crArrow
Hint = 'Position list'
BiDiMode = bdLeftToRight
BorderStyle = bsNone
Color = clWhite
ColCount = 20
Constraints.MinHeight = 42
Ctl3D = True
DefaultColWidth = 42
DefaultRowHeight = 32
FixedCols = 0
RowCount = 1
FixedRows = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Roboto Mono'
Font.Pitch = fpVariable
Font.Style = [fsBold]
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goDrawFocusSelected, goThumbTracking]
ParentBiDiMode = False
ParentCtl3D = False
ParentFont = False
PopupMenu = MainForm.PopupMenu1
ScrollBars = ssNone
TabOrder = 0
OnDragDrop = StringGrid1DragDrop
OnDragOver = StringGrid1DragOver
OnDrawCell = StringGrid1DrawCell
OnEndDrag = StringGrid1EndDrag
OnKeyDown = StringGrid1KeyDown
OnKeyPress = StringGrid1KeyPress
OnKeyUp = StringGrid1KeyUp
OnMouseDown = StringGrid1MouseDown
OnMouseUp = StringGrid1MouseUp
OnMouseWheelDown = StringGrid1MouseWheelDown
OnMouseWheelUp = StringGrid1MouseWheelUp
OnSelectCell = StringGrid1SelectCell
end
end
object ToneTableBox: TGroupBox
Left = 494
Top = -2
Width = 81
Height = 58
TabOrder = 6
object ToneTableLab: TLabel
Left = 12
Top = 15
Width = 55
Height = 13
Caption = 'Tone Table'
end
object Edit7: TEdit
Left = 13
Top = 32
Width = 39
Height = 20
Hint = 'Note table'
AutoSize = False
MaxLength = 1
TabOrder = 0
Text = '2'
OnChange = Edit7Change
OnExit = Edit7Exit
OnKeyPress = Edit7KeyPress
end
object UpDown4: TUpDown
Left = 52
Top = 32
Width = 16
Height = 20
Hint = 'Note table'
Associate = Edit7
Max = 4
Position = 2
TabOrder = 1
OnChangingEx = UpDown4ChangingEx
end
end
object JoinTracksBox: TGroupBox
Left = 573
Top = -2
Width = 55
Height = 58
Hint = 'Join Tracks -> TurboSound'
TabOrder = 7
object JoinTracksBtn: TButton
Left = 12
Top = 20
Width = 29
Height = 25
Action = MainForm.JoinTracksBtn
TabOrder = 0
end
end
end
object SamplesSheet: TTabSheet
Caption = 'Samples'
ImageIndex = 31
object SampleOpts: TGroupBox
Left = 0
Top = 504
Width = 385
Height = 33
TabOrder = 5
object SamOctaveLabel: TLabel
Left = 145
Top = 12
Width = 66
Height = 13
Hint = 'Alt+1..8, Numpad 1-8'
Caption = 'Editor octave:'
ParentShowHint = False
ShowHint = True
end
object SamOctaveTxt: TLabel
Left = 215
Top = 12
Width = 8
Height = 13
Hint = 'Alt+1..8, Numpad 1-8'
Caption = '3'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
end
object SamOptsSep: TShape
Left = 130
Top = 9
Width = 1
Height = 20
Brush.Color = clHighlightText
Pen.Color = clActiveBorder
end
object RecalcTonesBtn: TSpeedButton
Left = 288
Top = 10
Width = 81
Height = 17
Hint = 'Re-calculate Tones for a new Base Note'
AllowAllUp = True
GroupIndex = 1
Caption = 'Recalc Tones'
ParentShowHint = False
ShowHint = True
end
object SamOptsSep1: TShape
Left = 280
Top = 9
Width = 1
Height = 20
Brush.Color = clHighlightText
Pen.Color = clActiveBorder
end
object SamToneShiftAsNoteOpt: TCheckBox
Left = 8
Top = 11
Width = 113
Height = 17
Caption = 'Tone Shift as Note'
TabOrder = 1
OnClick = SamToneShiftAsNoteOptClick
end
object SamOctaveNum: TUpDown
Left = 232
Top = 10
Width = 41
Height = 17
Hint = 'Alt+1..8, Numpad 1-8'
Min = 1
Max = 8
Orientation = udHorizontal
ParentShowHint = False
Position = 4
ShowHint = True
TabOrder = 0
OnChangingEx = SamOctaveNumChangingEx
end
end
object SampleBrowserBox: TGroupBox