1<interface domain="easytag">
2    <requires lib="gtk+" version="3.10"/>
3    <object class="GtkListStore" id="album_list_model">
4        <columns>
5            <column type="GdkPixbuf"/>
6            <column type="gchararray"/>
7            <column type="gchararray"/>
8            <column type="gpointer"/>
9            <column type="PangoStyle"/>
10            <column type="gint"/>
11            <column type="GdkRGBA"/>
12        </columns>
13    </object>
14    <object class="GtkListStore" id="track_list_model">
15        <columns>
16            <column type="guint"/>
17            <column type="gchararray"/>
18            <column type="gchararray"/>
19            <column type="gpointer"/>
20            <column type="gpointer"/>
21        </columns>
22    </object>
23    <object class="GtkImage" id="invert_selection_image">
24        <property name="resource">/org/gnome/EasyTAG/images/invert-selection.png</property>
25        <property name="visible">True</property>
26    </object>
27    <object class="GtkImage" id="unselect_all_image">
28        <property name="resource">/org/gnome/EasyTAG/images/unselect-all.png</property>
29        <property name="visible">True</property>
30    </object>
31    <template class="EtCDDBDialog" parent="GtkDialog">
32        <property name="title" translatable="yes">CDDB Search</property>
33        <signal name="delete-event" handler="gtk_widget_hide_on_delete"/>
34        <signal name="response" handler="et_cddb_dialog_on_response"/>
35        <child internal-child="vbox">
36            <object class="GtkBox" id="cddb_vbox">
37                <property name="border-width">6</property>
38                <child>
39                    <object class="GtkGrid" id="cddb_grid">
40                        <property name="column-spacing">6</property>
41                        <property name="row-spacing">6</property>
42                        <child>
43                            <object class="GtkLabel" id="search_label">
44                                <property name="halign">start</property>
45                                <property name="label" translatable="yes">Search</property>
46                                <property name="visible">True</property>
47                                <attributes>
48                                    <attribute name="weight" value="bold"/>
49                                </attributes>
50                            </object>
51                            <packing>
52                                <property name="left-attach">0</property>
53                                <property name="top-attach">0</property>
54                            </packing>
55                        </child>
56                        <child>
57                            <object class="GtkEntry" id="search_entry">
58                                <property name="hexpand">True</property>
59                                <property name="margin-left">12</property>
60                                <property name="tooltip-text" translatable="yes">Enter the words to search (separated by a space or ‘+’)</property>
61                                <property name="visible">True</property>
62                                <signal name="activate" handler="Cddb_Search_Album_List_From_String" swapped="true"/>
63                                <signal name="changed" handler="update_search_button_sensitivity" swapped="true"/>
64                            </object>
65                            <packing>
66                                <property name="left-attach">0</property>
67                                <property name="top-attach">1</property>
68                            </packing>
69                        </child>
70                        <child>
71                            <object class="GtkButton" id="manual_search_button">
72                                <property name="can-default">True</property>
73                                <property name="label" translatable="yes">_Search</property>
74                                <property name="use-underline">True</property>
75                                <property name="visible">True</property>
76                                <signal name="clicked" handler="Cddb_Search_Album_List_From_String" swapped="true"/>
77                            </object>
78                            <packing>
79                                <property name="left-attach">1</property>
80                                <property name="top-attach">1</property>
81                            </packing>
82                        </child>
83                        <child>
84                            <object class="GtkButton" id="automatic_search_button">
85                                <property name="can-default">True</property>
86                                <property name="label" translatable="yes">Search Using Selected _Files</property>
87                                <property name="tooltip-text" translatable="yes">Generate the CDDB disc ID using the selected files (the order is important)</property>
88                                <property name="use-underline">True</property>
89                                <property name="visible">True</property>
90                                <signal name="clicked" handler="et_cddb_dialog_search_from_selection" swapped="true"/>
91                            </object>
92                            <packing>
93                                <property name="left-attach">2</property>
94                                <property name="top-attach">1</property>
95                            </packing>
96                        </child>
97                        <child>
98                            <object class="GtkButton" id="stop_search_button">
99                                <property name="label" translatable="yes">Stop</property>
100                                <property name="sensitive">False</property>
101                                <property name="tooltip-text" translatable="yes">Stop the search</property>
102                                <property name="visible">True</property>
103                                <signal name="clicked" handler="stop_search" swapped="true"/>
104                            </object>
105                            <packing>
106                                <property name="left-attach">3</property>
107                                <property name="top-attach">1</property>
108                            </packing>
109                        </child>
110                        <child>
111                            <object class="GtkLabel" id="manual_search_label">
112                                <property name="halign">start</property>
113                                <property name="label" translatable="yes">Manual Search Options</property>
114                                <property name="margin-left">12</property>
115                                <property name="visible">True</property>
116                                <attributes>
117                                    <attribute name="weight" value="bold"/>
118                                </attributes>
119                            </object>
120                            <packing>
121                                <property name="left-attach">0</property>
122                                <property name="top-attach">2</property>
123                            </packing>
124                        </child>
125                        <child>
126                            <object class="GtkGrid" id="search_options_grid">
127                                <property name="column-spacing">6</property>
128                                <property name="margin-left">24</property>
129                                <property name="row-spacing">6</property>
130                                <property name="visible">True</property>
131                                <child>
132                                    <object class="GtkLabel" id="search_fields_label">
133                                        <property name="halign">start</property>
134                                        <property name="label" translatable="yes" comments="Translators: header for CDDB fields to use when searching">Search Fields</property>
135                                        <property name="visible">True</property>
136                                        <attributes>
137                                            <attribute name="weight" value="bold"/>
138                                        </attributes>
139                                    </object>
140                                    <packing>
141                                        <property name="left-attach">0</property>
142                                        <property name="top-attach">0</property>
143                                        <property name="width">4</property>
144                                    </packing>
145                                </child>
146                                <child>
147                                    <object class="GtkCheckButton" id="artist_check">
148                                        <property name="label" translatable="yes">Artist</property>
149                                        <property name="margin-left">12</property>
150                                        <property name="name">artist</property>
151                                        <property name="visible">True</property>
152                                        <signal name="toggled" handler="update_search_button_sensitivity" swapped="true"/>
153                                    </object>
154                                    <packing>
155                                        <property name="left-attach">0</property>
156                                        <property name="top-attach">1</property>
157                                    </packing>
158                                </child>
159                                <child>
160                                    <object class="GtkCheckButton" id="album_check">
161                                        <property name="label" translatable="yes">Album</property>
162                                        <property name="name">title</property>
163                                        <property name="visible">True</property>
164                                        <signal name="toggled" handler="update_search_button_sensitivity" swapped="true"/>
165                                    </object>
166                                    <packing>
167                                        <property name="left-attach">1</property>
168                                        <property name="top-attach">1</property>
169                                    </packing>
170                                </child>
171                                <child>
172                                    <object class="GtkCheckButton" id="track_check">
173                                        <property name="label" translatable="yes">Track Name</property>
174                                        <property name="name">track</property>
175                                        <property name="visible">True</property>
176                                        <signal name="toggled" handler="update_search_button_sensitivity" swapped="true"/>
177                                    </object>
178                                    <packing>
179                                        <property name="left-attach">2</property>
180                                        <property name="top-attach">1</property>
181                                    </packing>
182                                </child>
183                                <child>
184                                    <object class="GtkCheckButton" id="other_check">
185                                        <property name="label" translatable="yes">Other</property>
186                                        <property name="name">other</property>
187                                        <property name="visible">True</property>
188                                        <signal name="toggled" handler="update_search_button_sensitivity" swapped="true"/>
189                                    </object>
190                                    <packing>
191                                        <property name="left-attach">3</property>
192                                        <property name="top-attach">1</property>
193                                    </packing>
194                                </child>
195                                <child>
196                                    <object class="GtkLabel" id="categories_label">
197                                        <property name="halign">start</property>
198                                        <property name="label" translatable="yes">Categories</property>
199                                        <property name="margin-left">12</property>
200                                        <property name="visible">True</property>
201                                        <attributes>
202                                            <attribute name="weight" value="bold"/>
203                                        </attributes>
204                                    </object>
205                                    <packing>
206                                        <property name="left-attach">5</property>
207                                        <property name="top-attach">0</property>
208                                        <property name="width">5</property>
209                                    </packing>
210                                </child>
211                r               <child>
212                                    <object class="GtkCheckButton" id="blues_check">
213                                        <property name="label" translatable="yes">Blues</property>
214                                        <property name="margin-left">12</property>
215                                        <property name="name">blues</property>
216                                        <property name="visible">True</property>
217                                        <signal name="toggled" handler="update_search_button_sensitivity" swapped="true"/>
218                                    </object>
219                                    <packing>
220                                        <property name="left-attach">5</property>
221                                        <property name="top-attach">1</property>
222                                    </packing>
223                                </child>
224                                <child>
225                                    <object class="GtkCheckButton" id="classical_check">
226                                        <property name="label" translatable="yes">Classical</property>
227                                        <property name="name">classical</property>
228                                        <property name="visible">True</property>
229                                        <signal name="toggled" handler="update_search_button_sensitivity" swapped="true"/>
230                                    </object>
231                                    <packing>
232                                        <property name="left-attach">6</property>
233                                        <property name="top-attach">1</property>
234                                    </packing>
235                                </child>
236                                <child>
237                                    <object class="GtkCheckButton" id="country_check">
238                                        <property name="label" translatable="yes">Country</property>
239                                        <property name="name">country</property>
240                                        <property name="visible">True</property>
241                                        <signal name="toggled" handler="update_search_button_sensitivity" swapped="true"/>
242                                    </object>
243                                    <packing>
244                                        <property name="left-attach">7</property>
245                                        <property name="top-attach">1</property>
246                                    </packing>
247                                </child>
248                                <child>
249                                    <object class="GtkCheckButton" id="folk_check">
250                                        <property name="label" translatable="yes">Folk</property>
251                                        <property name="name">folk</property>
252                                        <property name="visible">True</property>
253                                        <signal name="toggled" handler="update_search_button_sensitivity" swapped="true"/>
254                                    </object>
255                                    <packing>
256                                        <property name="left-attach">8</property>
257                                        <property name="top-attach">1</property>
258                                    </packing>
259                                </child>
260                                <child>
261                                    <object class="GtkCheckButton" id="jazz_check">
262                                        <property name="label" translatable="yes">Jazz</property>
263                                        <property name="name">jazz</property>
264                                        <property name="visible">True</property>
265                                        <signal name="toggled" handler="update_search_button_sensitivity" swapped="true"/>
266                                    </object>
267                                    <packing>
268                                        <property name="left-attach">9</property>
269                                        <property name="top-attach">1</property>
270                                    </packing>
271                                </child>
272                                <child>
273                                    <object class="GtkCheckButton" id="misc_check">
274                                        <property name="label" translatable="yes">Misc.</property>
275                                        <property name="name">misc</property>
276                                        <property name="margin-left">12</property>
277                                        <property name="visible">True</property>
278                                        <signal name="toggled" handler="update_search_button_sensitivity" swapped="true"/>
279                                    </object>
280                                    <packing>
281                                        <property name="left-attach">5</property>
282                                        <property name="top-attach">2</property>
283                                    </packing>
284                                </child>
285                                <child>
286                                    <object class="GtkCheckButton" id="newage_check">
287                                        <property name="label" translatable="yes">New Age</property>
288                                        <property name="name">newage</property>
289                                        <property name="visible">True</property>
290                                        <signal name="toggled" handler="update_search_button_sensitivity" swapped="true"/>
291                                    </object>
292                                    <packing>
293                                        <property name="left-attach">6</property>
294                                        <property name="top-attach">2</property>
295                                    </packing>
296                                </child>
297                                <child>
298                                    <object class="GtkCheckButton" id="reggae_check">
299                                        <property name="label" translatable="yes">Reggae</property>
300                                        <property name="name">reggae</property>
301                                        <property name="visible">True</property>
302                                        <signal name="toggled" handler="update_search_button_sensitivity" swapped="true"/>
303                                    </object>
304                                    <packing>
305                                        <property name="left-attach">7</property>
306                                        <property name="top-attach">2</property>
307                                    </packing>
308                                </child>
309                                <child>
310                                    <object class="GtkCheckButton" id="rock_check">
311                                        <property name="label" translatable="yes">Rock</property>
312                                        <property name="name">rock</property>
313                                        <property name="visible">True</property>
314                                        <signal name="toggled" handler="update_search_button_sensitivity" swapped="true"/>
315                                    </object>
316                                    <packing>
317                                        <property name="left-attach">8</property>
318                                        <property name="top-attach">2</property>
319                                    </packing>
320                                </child>
321                                <child>
322                                    <object class="GtkCheckButton" id="soundtrack_check">
323                                        <property name="label" translatable="yes">Soundtrack</property>
324                                        <property name="name">soundtrack</property>
325                                        <property name="visible">True</property>
326                                        <signal name="toggled" handler="update_search_button_sensitivity" swapped="true"/>
327                                    </object>
328                                    <packing>
329                                        <property name="left-attach">9</property>
330                                        <property name="top-attach">2</property>
331                                    </packing>
332                                </child>
333                            </object>
334                            <packing>
335                                <property name="left-attach">0</property>
336                                <property name="top-attach">4</property>
337                                <property name="width">4</property>
338                            </packing>
339                        </child>
340                        <child>
341                            <object class="GtkLabel" id="results_label">
342                                <property name="halign">start</property>
343                                <property name="label" translatable="yes">Results</property>
344                                <property name="margin-top">6</property>
345                                <property name="visible">True</property>
346                                <attributes>
347                                    <attribute name="weight" value="bold"/>
348                                </attributes>
349                            </object>
350                            <packing>
351                                <property name="left-attach">0</property>
352                                <property name="top-attach">5</property>
353                            </packing>
354                        </child>
355                        <child>
356                            <object class="GtkBox" id="results_box">
357                                <property name="visible">True</property>
358                                <property name="orientation">vertical</property>
359                                <child>
360                                    <object class="GtkPaned" id="results_paned">
361                                        <property name="orientation">horizontal</property>
362                                        <property name="margin-left">12</property>
363                                        <property name="visible">True</property>
364                                        <child>
365                                            <object class="GtkScrolledWindow" id="album_scrolled">
366                                                <property name="expand">True</property>
367                                                <property name="min-content-height">225</property>
368                                                <property name="min-content-width">225</property>
369                                                <property name="visible">True</property>
370                                                <child>
371                                                    <object class="GtkTreeView" id="album_list_view">
372                                                        <property name="model">album_list_model</property>
373                                                        <property name="search-column">1</property>
374                                                        <property name="visible">True</property>
375                                                        <child>
376                                                            <object class="GtkTreeViewColumn" id="service_column">
377                                                                <child>
378                                                                    <object class="GtkCellRendererPixbuf" id="service_renderer"/>
379                                                                    <attributes>
380                                                                        <attribute name="pixbuf">0</attribute>
381                                                                    </attributes>
382                                                                </child>
383                                                            </object>
384                                                        </child>
385                                                        <child>
386                                                            <object class="GtkTreeViewColumn" id="artist_album_column">
387                                                                <property name="title" translatable="yes">Artist / Album</property>
388                                                                <child>
389                                                                    <object class="GtkCellRendererText" id="artist_album_renderer"/>
390                                                                    <attributes>
391                                                                        <attribute name="foreground-rgba">6</attribute>
392                                                                        <attribute name="style">4</attribute>
393                                                                        <attribute name="text">1</attribute>
394                                                                        <attribute name="weight">5</attribute>
395                                                                    </attributes>
396                                                                </child>
397                                                            </object>
398                                                        </child>
399                                                        <child>
400                                                            <object class="GtkTreeViewColumn" id="category_column">
401                                                                <property name="title" translatable="yes">Category</property>
402                                                                <child>
403                                                                    <object class="GtkCellRendererText" id="category_renderer"/>
404                                                                    <attributes>
405                                                                        <attribute name="foreground-rgba">6</attribute>
406                                                                        <attribute name="style">4</attribute>
407                                                                        <attribute name="text">2</attribute>
408                                                                        <attribute name="weight">5</attribute>
409                                                                    </attributes>
410                                                                </child>
411                                                            </object>
412                                                        </child>
413                                                        <child internal-child="selection">
414                                                            <object class="GtkTreeSelection" id="album_selection">
415                                                                <signal name="changed" handler="show_album_info" swapped="true"/>
416                                                                <signal name="changed" handler="Cddb_Get_Album_Tracks_List_CB" swapped="true"/>
417                                                            </object>
418                                                        </child>
419                                                    </object>
420                                                </child>
421                                            </object>
422                                            <packing>
423                                                <property name="resize">True</property>
424                                                <property name="shrink">False</property>
425                                            </packing>
426                                        </child>
427                                        <child>
428                                            <object class="GtkScrolledWindow" id="track_scrolled">
429                                                <property name="expand">True</property>
430                                                <property name="min-content-height">225</property>
431                                                <property name="min-content-width">225</property>
432                                                <property name="visible">True</property>
433                                                <signal name="button-press-event" handler="on_track_list_button_press_event" swapped="true"/>
434                                                <child>
435                                                    <object class="GtkTreeView" id="track_list_view">
436                                                        <property name="model">track_list_model</property>
437                                                        <property name="tooltip-text" translatable="yes">Select lines from which tags will be applied to your files list. All lines will be processed if no line is selected.\nYou can also reorder lines in this list before using the ‘apply’ button</property>
438                                                        <property name="visible">True</property>
439                                                        <child>
440                                                            <object class="GtkTreeViewColumn" id="number_column">
441                                                                <property name="sort-column-id">0</property>
442                                                                <property name="title" translatable="yes" comments="Translators: column header for track number.">#</property>
443                                                                <child>
444                                                                    <object class="GtkCellRendererText" id="number_renderer"/>
445                                                                    <attributes>
446                                                                        <attribute name="text">0</attribute>
447                                                                    </attributes>
448                                                                </child>
449                                                            </object>
450                                                        </child>
451                                                        <child>
452                                                            <object class="GtkTreeViewColumn" id="track_column">
453                                                                <property name="sort-column-id">1</property>
454                                                                <property name="title" translatable="yes">Track Name</property>
455                                                                <child>
456                                                                    <object class="GtkCellRendererText" id="track_renderer"/>
457                                                                    <attributes>
458                                                                        <attribute name="text">1</attribute>
459                                                                    </attributes>
460                                                                </child>
461                                                            </object>
462                                                        </child>
463                                                        <child>
464                                                            <object class="GtkTreeViewColumn" id="duration_column">
465                                                                <property name="title" translatable="yes">Duration</property>
466                                                                <child>
467                                                                    <object class="GtkCellRendererText" id="duration_renderer"/>
468                                                                    <attributes>
469                                                                        <attribute name="text">2</attribute>
470                                                                    </attributes>
471                                                                </child>
472                                                            </object>
473                                                        </child>
474                                                        <child internal-child="selection">
475                                                            <object class="GtkTreeSelection" id="track_selection">
476                                                                <property name="mode">multiple</property>
477                                                                <signal name="changed" handler="Cddb_Track_List_Row_Selected" swapped="true"/>
478                                                            </object>
479                                                        </child>
480                                                    </object>
481                                                </child>
482                                            </object>
483                                            <packing>
484                                                <property name="resize">True</property>
485                                                <property name="shrink">False</property>
486                                            </packing>
487                                        </child>
488                                    </object>
489                                </child>
490                                <child>
491                                    <object class="GtkToolbar" id="results_toolbar">
492                                        <property name="margin-left">12</property>
493                                        <property name="visible">True</property>
494                                        <style>
495                                            <class name="inline-toolbar"/>
496                                        </style>
497                                        <child>
498                                            <object class="GtkToolButton" id="select_all_button">
499                                                <property name="icon-name">edit-select-all</property>
500                                                <property name="tooltip-text" translatable="yes">Select all lines</property>
501                                                <property name="visible">True</property>
502                                                <signal name="clicked" handler="track_list_select_all" swapped="true"/>
503                                            </object>
504                                        </child>
505                                        <child>
506                                            <object class="GtkToolButton" id="invert_button">
507                                                <property name="icon-widget">invert_selection_image</property>
508                                                <property name="tooltip-text" translatable="yes">Invert line selection</property>
509                                                <property name="visible">True</property>
510                                                <signal name="clicked" handler="Cddb_Track_List_Invert_Selection" swapped="true"/>
511                                            </object>
512                                        </child>
513                                        <child>
514                                            <object class="GtkToolButton" id="unselect_all_button">
515                                                <property name="icon-widget">unselect_all_image</property>
516                                                <property name="tooltip-text" translatable="yes">Unselect all lines</property>
517                                                <property name="visible">True</property>
518                                                <signal name="clicked" handler="track_list_unselect_all" swapped="true"/>
519                                            </object>
520                                        </child>
521                                    </object>
522                                </child>
523                            </object>
524                            <packing>
525                                <property name="left-attach">0</property>
526                                <property name="top-attach">7</property>
527                                <property name="width">4</property>
528                            </packing>
529                        </child>
530                        <child>
531                            <object class="GtkGrid" id="fill_tags_grid">
532                                <property name="column-spacing">12</property>
533                                <property name="margin-left">12</property>
534                                <property name="margin-top">6</property>
535                                <property name="row-spacing">12</property>
536                                <property name="visible">True</property>
537                                <child>
538                                    <object class="GtkLabel" id="fill_tags_label">
539                                        <property name="halign">start</property>
540                                        <property name="label" translatable="yes">Fill Tags</property>
541                                        <property name="visible">True</property>
542                                        <attributes>
543                                            <attribute name="weight" value="bold"/>
544                                        </attributes>
545                                    </object>
546                                    <packing>
547                                        <property name="left-attach">0</property>
548                                        <property name="top-attach">0</property>
549                                        <property name="width">8</property>
550                                    </packing>
551                                </child>
552                                <child>
553                                    <object class="GtkCheckButton" id="filename_check">
554                                        <property name="label" translatable="yes">Filename</property>
555                                        <property name="margin-left">12</property>
556                                        <property name="name">filename</property>
557                                        <property name="visible">True</property>
558                                        <signal name="toggled" handler="update_apply_button_sensitivity" swapped="true"/>
559                                    </object>
560                                    <packing>
561                                        <property name="left-attach">0</property>
562                                        <property name="top-attach">1</property>
563                                    </packing>
564                                </child>
565                                <child>
566                                    <object class="GtkCheckButton" id="title_check">
567                                        <property name="label" translatable="yes">Title</property>
568                                        <property name="name">title</property>
569                                        <property name="visible">True</property>
570                                        <signal name="toggled" handler="update_apply_button_sensitivity" swapped="true"/>
571                                    </object>
572                                    <packing>
573                                        <property name="left-attach">1</property>
574                                        <property name="top-attach">1</property>
575                                    </packing>
576                                </child>
577                                <child>
578                                    <object class="GtkCheckButton" id="fill_artist_check">
579                                        <property name="label" translatable="yes">Artist</property>
580                                        <property name="name">artist</property>
581                                        <property name="visible">True</property>
582                                        <signal name="toggled" handler="update_apply_button_sensitivity" swapped="true"/>
583                                    </object>
584                                    <packing>
585                                        <property name="left-attach">2</property>
586                                        <property name="top-attach">1</property>
587                                    </packing>
588                                </child>
589                                <child>
590                                    <object class="GtkCheckButton" id="fill_album_check">
591                                        <property name="label" translatable="yes">Album</property>
592                                        <property name="name">album</property>
593                                        <property name="visible">True</property>
594                                        <signal name="toggled" handler="update_apply_button_sensitivity" swapped="true"/>
595                                    </object>
596                                    <packing>
597                                        <property name="left-attach">3</property>
598                                        <property name="top-attach">1</property>
599                                    </packing>
600                                </child>
601                                <child>
602                                    <object class="GtkCheckButton" id="year_check">
603                                        <property name="label" translatable="yes">Year</property>
604                                        <property name="name">year</property>
605                                        <property name="visible">True</property>
606                                        <signal name="toggled" handler="update_apply_button_sensitivity" swapped="true"/>
607                                    </object>
608                                    <packing>
609                                        <property name="left-attach">4</property>
610                                        <property name="top-attach">1</property>
611                                    </packing>
612                                </child>
613                                <child>
614                                    <object class="GtkCheckButton" id="fill_track_check">
615                                        <property name="label" translatable="yes">Track Number</property>
616                                        <property name="name">track</property>
617                                        <property name="visible">True</property>
618                                        <signal name="toggled" handler="update_apply_button_sensitivity" swapped="true"/>
619                                    </object>
620                                    <packing>
621                                        <property name="left-attach">5</property>
622                                        <property name="top-attach">1</property>
623                                    </packing>
624                                </child>
625                                <child>
626                                    <object class="GtkCheckButton" id="track_total_check">
627                                        <property name="label" translatable="yes">Number of Tracks</property>
628                                        <property name="name">track-total</property>
629                                        <property name="visible">True</property>
630                                        <signal name="toggled" handler="update_apply_button_sensitivity" swapped="true"/>
631                                    </object>
632                                    <packing>
633                                        <property name="left-attach">6</property>
634                                        <property name="top-attach">1</property>
635                                    </packing>
636                                </child>
637                                <child>
638                                    <object class="GtkCheckButton" id="genre_check">
639                                        <property name="label" translatable="yes">Genre</property>
640                                        <property name="name">genre</property>
641                                        <property name="visible">True</property>
642                                        <signal name="toggled" handler="update_apply_button_sensitivity" swapped="true"/>
643                                    </object>
644                                    <packing>
645                                        <property name="left-attach">7</property>
646                                        <property name="top-attach">1</property>
647                                    </packing>
648                                </child>
649                            </object>
650                            <packing>
651                                <property name="left-attach">0</property>
652                                <property name="top-attach">8</property>
653                                <property name="width">4</property>
654                            </packing>
655                        </child>
656                        <child>
657                            <object class="GtkBox" id="results_check_box">
658                                <property name="margin-left">12</property>
659                                <property name="margin-top">6</property>
660                                <property name="spacing">12</property>
661                                <property name="visible">True</property>
662                                <child>
663                                    <object class="GtkCheckButton" id="scanner_check">
664                                        <property name="label" translatable="yes">Run the current scanner for each file</property>
665                                        <property name="tooltip-text" translatable="yes">Whether to run the tag scanner, with the current settings, on the CDDB results</property>
666                                        <property name="visible">True</property>
667                                    </object>
668                                </child>
669                                <child>
670                                    <object class="GtkCheckButton" id="dlm_check">
671                                        <property name="label" translatable="yes">Match lines with the Levenshtein algorithm</property>
672                                        <property name="tooltip-text" translatable="yes">Whether to use the DLM algorithm to match CDDB results to files</property>
673                                        <property name="visible">True</property>
674                                    </object>
675                                </child>
676                            </object>
677                            <packing>
678                                <property name="left-attach">0</property>
679                                <property name="top-attach">9</property>
680                                <property name="width">4</property>
681                            </packing>
682                        </child>
683                        <child>
684                            <object class="GtkBox" id="status_box">
685                                <property name="margin-top">6</property>
686                                <property name="orientation">horizontal</property>
687                                <property name="spacing">6</property>
688                                <property name="visible">True</property>
689                                <child>
690                                    <object class="GtkStatusbar" id="status_bar">
691                                        <property name="hexpand">True</property>
692                                        <property name="visible">True</property>
693                                    </object>
694                                </child>
695                                <child>
696                                    <object class="GtkButtonBox" id="button_box">
697                                        <property name="layout-style">end</property>
698                                        <property name="orientation">horizontal</property>
699                                        <property name="spacing">6</property>
700                                        <property name="visible">True</property>
701                                        <child>
702                                            <object class="GtkButton" id="close_button">
703                                                <property name="can-default">True</property>
704                                                <property name="label" translatable="yes">_Close</property>
705                                                <property name="use-underline">True</property>
706                                                <property name="visible">True</property>
707                                                <signal name="clicked" handler="Cddb_Destroy_Window" swapped="true"/>
708                                            </object>
709                                        </child>
710                                        <child>
711                                            <object class="GtkButton" id="apply_button">
712                                                <property name="label" translatable="yes">_Apply</property>
713                                                <property name="sensitive">False</property>
714                                                <property name="tooltip-text" translatable="yes">Load the selected lines or all lines (if no lines are selected)</property>
715                                                <property name="use-underline">True</property>
716                                                <property name="visible">True</property>
717                                                <signal name="clicked" handler="Cddb_Set_Track_Infos_To_File_List" swapped="true"/>
718                                            </object>
719                                        </child>
720                                    </object>
721                                </child>
722                            </object>
723                            <packing>
724                                <property name="left-attach">0</property>
725                                <property name="top-attach">10</property>
726                                <property name="width">4</property>
727                            </packing>
728                        </child>
729                    </object>
730                </child>
731            </object>
732        </child>
733    </template>
734</interface>
735