-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathGlbTrn.dfm
168 lines (168 loc) · 3.34 KB
/
GlbTrn.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
object GlbTrans: TGlbTrans
Left = 901
Top = 403
BorderStyle = bsToolWindow
Caption = 'Global Transposition'
ClientHeight = 150
ClientWidth = 324
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
FormStyle = fsStayOnTop
OldCreateOrder = False
Position = poMainFormCenter
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object GroupBox1: TGroupBox
Left = 184
Top = 5
Width = 129
Height = 134
Caption = 'Channels to transpose'
TabOrder = 1
object CheckBox4: TCheckBox
Left = 10
Top = 104
Width = 97
Height = 17
Caption = 'Envelope track'
Checked = True
State = cbChecked
TabOrder = 3
end
object CheckBox1: TCheckBox
Left = 10
Top = 24
Width = 97
Height = 17
Caption = 'Channel A track'
Checked = True
State = cbChecked
TabOrder = 0
end
object CheckBox2: TCheckBox
Left = 10
Top = 50
Width = 97
Height = 17
Caption = 'Channel B track'
Checked = True
State = cbChecked
TabOrder = 1
end
object CheckBox3: TCheckBox
Left = 10
Top = 77
Width = 97
Height = 17
Caption = 'Channel C track'
Checked = True
State = cbChecked
TabOrder = 2
end
end
object GroupBox2: TGroupBox
Left = 5
Top = 5
Width = 172
Height = 103
Caption = 'Global options'
TabOrder = 0
object Label8: TLabel
Left = 8
Top = 22
Width = 102
Height = 13
Caption = 'Number of semitones:'
end
object UpDown8: TUpDown
Left = 142
Top = 19
Width = 15
Height = 21
Hint =
'Number of semitones to transpose: positive - up and negative - d' +
'own'
Associate = Edit8
Min = -95
Max = 95
TabOrder = 1
end
object Edit8: TEdit
Left = 117
Top = 19
Width = 25
Height = 21
Hint =
'Number of semitones to transpose: positive - up and negative - d' +
'own'
TabOrder = 0
Text = '0'
OnExit = Edit8Exit
end
object RadioButton1: TRadioButton
Left = 8
Top = 50
Width = 89
Height = 17
Caption = 'Whole module'
Checked = True
TabOrder = 2
TabStop = True
end
object RadioButton2: TRadioButton
Left = 8
Top = 69
Width = 105
Height = 17
Caption = 'Only pattern num:'
TabOrder = 5
end
object Edit2: TEdit
Left = 117
Top = 67
Width = 25
Height = 21
Hint = 'Pattern number to transpose'
TabOrder = 3
Text = '0'
OnExit = Edit2Exit
end
object UpDown1: TUpDown
Left = 142
Top = 67
Width = 15
Height = 21
Hint = 'Pattern number to transpose'
Associate = Edit2
Max = 84
TabOrder = 4
end
end
object Button1: TButton
Left = 5
Top = 117
Width = 80
Height = 21
Caption = 'Transpose'
Default = True
ModalResult = 1
TabOrder = 2
OnClick = Button1Click
end
object Button2: TButton
Left = 96
Top = 117
Width = 80
Height = 21
Cancel = True
Caption = 'Close'
ModalResult = 2
TabOrder = 3
OnClick = Button2Click
end
end