-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfQuery_.dfm
330 lines (330 loc) · 6.74 KB
/
fQuery_.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
object fQuery: TfQuery
Left = 0
Top = 0
Caption = 'Query'
ClientHeight = 633
ClientWidth = 481
Color = clBtnFace
Constraints.MinHeight = 672
Constraints.MinWidth = 497
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
DesignSize = (
481
633)
PixelsPerInch = 96
TextHeight = 13
object Label6: TLabel
Left = 10
Top = 8
Width = 279
Height = 26
Anchors = [akLeft, akTop, akRight]
Caption =
'Leave text fields blank to not use. i.e. Leave band names blank ' +
'to select all bands.'
WordWrap = True
end
object btnLoadQuery: TButton
Left = 313
Top = 8
Width = 81
Height = 49
Anchors = [akTop, akRight]
Caption = 'Load Query from File'
TabOrder = 0
WordWrap = True
OnClick = btnLoadQueryClick
end
object btnSaveQuery: TButton
Left = 400
Top = 8
Width = 73
Height = 49
Anchors = [akTop, akRight]
Caption = 'Save Query to File'
TabOrder = 1
WordWrap = True
OnClick = btnSaveQueryClick
end
object pnlBands: TPanel
Left = 8
Top = 63
Width = 465
Height = 138
Alignment = taLeftJustify
Anchors = [akLeft, akTop, akRight]
Caption = ' Bands'
TabOrder = 2
VerticalAlignment = taAlignTop
DesignSize = (
465
138)
object Label1: TLabel
Left = 8
Top = 29
Width = 92
Height = 13
Caption = 'Enter Band Names:'
end
object Label3: TLabel
Left = 319
Top = 29
Width = 83
Height = 13
Anchors = [akTop, akRight]
Caption = 'Enter Band Tags:'
end
object edBands: TMemo
Left = 8
Top = 48
Width = 185
Height = 89
Anchors = [akLeft, akTop, akRight]
ScrollBars = ssBoth
TabOrder = 0
WordWrap = False
end
object cbBandFav: TCheckBox
Left = 199
Top = 44
Width = 114
Height = 17
Anchors = [akTop, akRight]
Caption = 'Select only favorites'
TabOrder = 1
end
object edBandTags: TMemo
Left = 319
Top = 48
Width = 138
Height = 89
Anchors = [akTop, akRight]
ScrollBars = ssBoth
TabOrder = 2
WordWrap = False
end
object rgBandMatch: TRadioGroup
Left = 199
Top = 67
Width = 114
Height = 66
Anchors = [akTop, akRight]
Caption = 'Match ALL Tags?'
ItemIndex = 0
Items.Strings = (
'Match All'
'Match Only One')
TabOrder = 3
end
end
object pnlAlbums: TPanel
Left = 8
Top = 207
Width = 465
Height = 170
Alignment = taLeftJustify
Anchors = [akLeft, akTop, akRight]
Caption = ' Albums'
TabOrder = 3
VerticalAlignment = taAlignTop
DesignSize = (
465
170)
object Label2: TLabel
Left = 8
Top = 31
Width = 97
Height = 13
Caption = 'Enter Album Names:'
end
object lblYear: TLabel
Left = 199
Top = 49
Width = 55
Height = 13
Anchors = [akTop, akRight]
Caption = 'Enter Year:'
end
object Label4: TLabel
Left = 319
Top = 31
Width = 88
Height = 13
Anchors = [akTop, akRight]
Caption = 'Enter Album Tags:'
end
object edAlbums: TMemo
Left = 8
Top = 50
Width = 185
Height = 115
Anchors = [akLeft, akTop, akRight]
ScrollBars = ssBoth
TabOrder = 0
WordWrap = False
end
object edYear: TEdit
Left = 264
Top = 46
Width = 49
Height = 21
Anchors = [akTop, akRight]
TabOrder = 1
end
object cbAlbumFav: TCheckBox
Left = 199
Top = 72
Width = 114
Height = 17
Anchors = [akTop, akRight]
Caption = 'Select only favorites'
TabOrder = 2
end
object edAlbumTags: TMemo
Left = 319
Top = 50
Width = 139
Height = 115
Anchors = [akTop, akRight]
ScrollBars = ssBoth
TabOrder = 3
WordWrap = False
end
object rgAlbumMatch: TRadioGroup
Left = 199
Top = 95
Width = 114
Height = 66
Anchors = [akTop, akRight]
Caption = 'Match ALL Tags?'
ItemIndex = 0
Items.Strings = (
'Match All'
'Match Only One')
TabOrder = 4
end
object cbNAalbums: TCheckBox
Left = 319
Top = 8
Width = 122
Height = 17
Caption = 'Include "N/A" albums'
Checked = True
State = cbChecked
TabOrder = 5
end
end
object pnlSongs: TPanel
Left = 8
Top = 383
Width = 465
Height = 178
Alignment = taLeftJustify
Anchors = [akLeft, akTop, akRight]
Caption = ' Songs'
TabOrder = 4
VerticalAlignment = taAlignTop
DesignSize = (
465
178)
object Label5: TLabel
Left = 8
Top = 29
Width = 92
Height = 13
Caption = 'Enter Song Names:'
end
object lblTrackNum: TLabel
Left = 199
Top = 47
Width = 75
Height = 13
Anchors = [akTop, akRight]
Caption = 'Enter Track No.'
end
object Label7: TLabel
Left = 319
Top = 29
Width = 83
Height = 13
Anchors = [akTop, akRight]
Caption = 'Enter Song Tags:'
end
object edSongs: TMemo
Left = 8
Top = 48
Width = 185
Height = 125
Anchors = [akLeft, akTop, akRight]
ScrollBars = ssBoth
TabOrder = 0
WordWrap = False
end
object edTrackNum: TEdit
Left = 280
Top = 44
Width = 33
Height = 21
Anchors = [akTop, akRight]
TabOrder = 1
end
object cbSongFav: TCheckBox
Left = 199
Top = 75
Width = 121
Height = 17
Anchors = [akTop, akRight]
Caption = 'Select only favorites'
TabOrder = 2
end
object edSongTags: TMemo
Left = 319
Top = 44
Width = 139
Height = 125
Anchors = [akTop, akRight]
ScrollBars = ssBoth
TabOrder = 3
WordWrap = False
end
object rgSongMatch: TRadioGroup
Left = 199
Top = 103
Width = 114
Height = 66
Anchors = [akTop, akRight]
Caption = 'Match ALL Tags?'
ItemIndex = 0
Items.Strings = (
'Match All'
'Match Only One')
TabOrder = 4
end
end
object btnQuery: TButton
Left = 8
Top = 567
Width = 465
Height = 58
Anchors = [akLeft, akTop, akRight, akBottom]
Caption = 'Query!'
TabOrder = 5
OnClick = btnQueryClick
end
object btnClear: TButton
Left = 8
Top = 40
Width = 299
Height = 17
Anchors = [akLeft, akTop, akRight]
Caption = 'Clear all fields'
TabOrder = 6
OnClick = btnClearClick
end
end