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
|
object frmRenderToWave: TfrmRenderToWave
Left = 638
Height = 320
Top = 453
Width = 601
BorderStyle = bsSingle
Caption = 'Render song'
ClientHeight = 320
ClientWidth = 601
DesignTimePPI = 128
OnShow = FormShow
Position = poDefault
LCLVersion = '3.0.0.3'
object RenderButton: TButton
Left = 19
Height = 33
Top = 261
Width = 352
Caption = 'Render'
Enabled = False
ParentFont = False
TabOrder = 0
OnClick = RenderButtonClick
end
object FileNameEdit1: TFileNameEdit
Left = 107
Height = 33
Top = 11
Width = 307
DialogKind = dkSave
Filter = 'Wave|*.wav|MP3|*.mp3|FLAC|*.flac'
FilterIndex = 0
HideDirectories = False
ButtonWidth = 31
NumGlyphs = 1
MaxLength = 0
ParentFont = False
TabOrder = 1
OnChange = FileNameEdit1Change
end
object Label1: TLabel
Left = 19
Height = 23
Top = 17
Width = 68
Caption = 'Filename'
ParentColor = False
ParentFont = False
end
object CancelButton: TButton
Left = 380
Height = 33
Top = 261
Width = 195
Caption = 'Cancel'
Enabled = False
ParentFont = False
TabOrder = 2
OnClick = CancelButtonClick
end
object PlayEntireSongRadioButton: TRadioButton
Left = 19
Height = 25
Top = 60
Width = 144
Caption = 'Play entire song'
Checked = True
ParentFont = False
TabOrder = 7
TabStop = True
end
object FromPositionRadioButton: TRadioButton
Left = 19
Height = 25
Top = 113
Width = 128
Caption = 'From position'
ParentFont = False
TabOrder = 6
end
object PlayEntireSongSpinEdit: TSpinEdit
Left = 179
Height = 33
Top = 55
Width = 131
MaxValue = 999
MinValue = 1
ParentFont = False
TabOrder = 3
Value = 1
end
object Label2: TLabel
Left = 328
Height = 23
Top = 63
Width = 42
Caption = 'times'
ParentColor = False
ParentFont = False
end
object FromPositionLowerSpinEdit: TSpinEdit
Left = 179
Height = 33
Top = 108
Width = 96
MaxValue = 9999999
ParentFont = False
TabOrder = 4
end
object FromPositionUpperSpinEdit: TSpinEdit
Left = 339
Height = 33
Top = 108
Width = 96
MaxValue = 99999999
ParentFont = False
TabOrder = 5
end
object Label3: TLabel
Left = 299
Height = 23
Top = 116
Width = 16
Caption = 'to'
ParentColor = False
ParentFont = False
end
object ComboBox1: TComboBox
Left = 427
Height = 31
Top = 11
Width = 157
ItemHeight = 0
ItemIndex = 0
Items.Strings = (
'Wave'
'MP3'
'FLAC'
)
Style = csDropDownList
TabOrder = 8
Text = 'Wave'
end
object Panel1: TPanel
Left = 21
Height = 45
Top = 201
Width = 556
Caption = 'Ready'
TabOrder = 9
end
object ExportChannelsCheckBox: TCheckBox
Left = 19
Height = 27
Top = 160
Width = 450
Caption = 'Export each channel as a separate file'
ParentFont = False
TabOrder = 10
end
end
|