LinGui: add option for title numbers to
authorjstebbins <jstebbins.hb@gmail.com>
Sat, 24 Jan 2009 21:13:05 +0000 (21:13 +0000)
committerjstebbins <jstebbins.hb@gmail.com>
Sat, 24 Jan 2009 21:13:05 +0000 (21:13 +0000)
automatically generated destination names

git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2095 b64f7644-9d1e-0410-96f1-a4d463321fa5

gtk/src/callbacks.c
gtk/src/ghb.ui
gtk/src/internal_defaults.xml
gtk/src/makedeps.c
gtk/src/resource_data.h
gtk/src/resources.plist
gtk/src/widget_deps
gtk/src/widget_reverse_deps

index 3e10696c14e551171a9f10f79bd9da14bd20ab20..6d745ed419c08b1a058a5b90ce2302e7662259e5 100644 (file)
@@ -245,33 +245,45 @@ set_destination(signal_user_data_t *ud)
        g_debug("set_destination");
        if (ghb_settings_get_boolean(ud->settings, "use_source_name"))
        {
+               GString *str = g_string_new("");
                gchar *vol_name, *filename, *extension;
                gchar *new_name;
+               gint title;
                
                filename = ghb_settings_get_string(ud->settings, "dest_file");
                extension = ghb_settings_get_string(ud->settings, "FileFormat");
                vol_name = ghb_settings_get_string(ud->settings, "volume_label");
-               if (ghb_settings_get_boolean(ud->settings, "chapters_in_destination"))
+               g_string_append_printf(str, "%s", vol_name);
+               title = ghb_settings_combo_int(ud->settings, "title");
+               if (title >= 0)
                {
-                       gint start, end;
-
-                       start = ghb_settings_get_int(ud->settings, "start_chapter");
-                       end = ghb_settings_get_int(ud->settings, "end_chapter");
-                       if (start == end)
+                       if (ghb_settings_get_boolean(
+                                       ud->settings, "title_no_in_destination"))
                        {
-                               new_name = g_strdup_printf("%s-%d.%s", 
-                                       vol_name, start, extension);
+
+                               title = ghb_settings_combo_int(ud->settings, "title");
+                               g_string_append_printf(str, " - %d", title+1);
                        }
-                       else
+                       if (ghb_settings_get_boolean(
+                                       ud->settings, "chapters_in_destination"))
                        {
-                               new_name = g_strdup_printf("%s-%d-%d.%s", 
-                                       vol_name, start, end, extension);
+                               gint start, end;
+
+                               if (!ghb_settings_get_boolean(
+                                               ud->settings, "title_no_in_destination"))
+                               {
+                                       g_string_append_printf(str, " -");
+                               }
+                               start = ghb_settings_get_int(ud->settings, "start_chapter");
+                               end = ghb_settings_get_int(ud->settings, "end_chapter");
+                               if (start == end)
+                                       g_string_append_printf(str, " Ch %d", start);
+                               else
+                                       g_string_append_printf(str, " Ch %d-%d", start, end);
                        }
                }
-               else
-               {
-                       new_name = g_strdup_printf("%s.%s", vol_name, extension);
-               }
+               g_string_append_printf(str, ".%s", extension);
+               new_name = g_string_free(str, FALSE);
                ghb_ui_update(ud, "dest_file", ghb_string_value(new_name));
                g_free(filename);
                g_free(extension);
@@ -1041,6 +1053,10 @@ title_changed_cb(GtkWidget *widget, signal_user_data_t *ud)
        ghb_ui_update(ud, "preview_frame", ghb_int64_value(2));
 
        ghb_set_preview_image (ud);
+       if (ghb_settings_get_boolean(ud->settings, "title_no_in_destination"))
+       {
+               set_destination(ud);
+       }
 }
 
 void
index 9d69a29e40c53f85f24748a16d75aef48c6878f6..aa5b29df7200a5e30251a2960a2ffbe543672fee 100644 (file)
     <signal handler="window_destroy_event_cb" name="destroy_event"/>
     <signal handler="window_delete_event_cb" name="delete_event"/>
     <child>
-      <object class="GtkVBox" id="vbox_j1">
+      <object class="GtkVBox" id="vbox48">
         <property name="visible">True</property>
         <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
         <child>
                           <object class="GtkVBox" id="vbox3">
                             <property name="visible">True</property>
                             <child>
-                              <object class="GtkHBox" id="hbox2">
+                              <object class="GtkHBox" id="hbox54">
                                 <property name="visible">True</property>
                                 <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                 <property name="spacing">5</property>
                         <property name="top_padding">6</property>
                         <property name="bottom_padding">6</property>
                         <child>
-                          <object class="GtkHBox" id="hbox_j4">
+                          <object class="GtkHBox" id="hbox67">
                             <property name="visible">True</property>
                             <property name="spacing">12</property>
                             <child>
                                   <object class="GtkHBox" id="hbox3">
                                     <property name="visible">True</property>
                                     <child>
-                                      <object class="GtkLabel" id="label27">
+                                      <object class="GtkLabel" id="label45">
                                         <property name="visible">True</property>
                                         <property name="label" translatable="yes">Container:</property>
                                       </object>
                     <property name="spacing">3</property>
 
                     <child>
-                      <object class="GtkAlignment" id="alignment_a">
+                      <object class="GtkAlignment" id="alignment55">
                         <property name="visible">True</property>
                         <property name="top_padding">10</property>
                         <property name="left_padding">10</property>
 
                     <child>
-                      <object class="GtkVBox" id="vbox5">
+                      <object class="GtkVBox" id="vbox43">
                         <property name="visible">True</property>
                         <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                        <property name="spacing">14</property>
                                         <property name="visible">True</property>
                                         <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                         <child>
-                                          <object class="GtkLabel" id="label24">
+                                          <object class="GtkLabel" id="label42">
                                             <property name="visible">True</property>
                                             <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                             <property name="xalign">0</property>
                                         <property name="visible">True</property>
                                         <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                         <child>
-                                          <object class="GtkLabel" id="label25">
+                                          <object class="GtkLabel" id="label43">
                                             <property name="visible">True</property>
                                             <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                             <property name="xalign">0</property>
                               </object>
                             </child>
                             <child type="label">
-                              <object class="GtkLabel" id="label26">
+                              <object class="GtkLabel" id="label44">
                                 <property name="visible">True</property>
                                 <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                 <property name="label" translatable="yes">&lt;b&gt;Source Picture Parameters&lt;/b&gt;</property>
                                 <property name="left_padding">12</property>
                                 <property name="right_padding">2</property>
                                 <child>
-                                  <object class="GtkVBox" id="vbox6">
+                                  <object class="GtkVBox" id="vbox44">
                                     <property name="visible">True</property>
                                     <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                     <child>
-                                      <object class="GtkHBox" id="hbox54">
+                                      <object class="GtkHBox" id="hbox61">
                                         <property name="visible">True</property>
                                         <child>
                                           <object class="GtkLabel" id="label13">
                           </packing>
                         </child>
                         <child>
-                          <object class="GtkVBox" id="vbox7">
+                          <object class="GtkVBox" id="vbox45">
                             <property name="visible">True</property>
                             <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                             <child>
-                              <object class="GtkFrame" id="frame3">
+                              <object class="GtkFrame" id="frame16">
                                 <property name="visible">True</property>
                                 <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                 <property name="label_xalign">0</property>
                                 <property name="shadow_type">GTK_SHADOW_NONE</property>
                                 <child>
-                                  <object class="GtkAlignment" id="alignment7">
+                                  <object class="GtkAlignment" id="alignment20">
                                     <property name="visible">True</property>
                                     <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                     <property name="top_padding">6</property>
                                     <property name="left_padding">12</property>
                                     <property name="right_padding">2</property>
                                     <child>
-                                      <object class="GtkVBox" id="vbox8">
+                                      <object class="GtkVBox" id="vbox46">
                                         <property name="visible">True</property>
                                         <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                         <child>
                                           </object>
                                         </child>
                                         <child>
-                                          <object class="GtkHBox" id="hbox26">
+                                          <object class="GtkHBox" id="hbox68">
                                             <property name="visible">True</property>
                                             <child>
                                               <object class="GtkLabel" id="label15">
                                           </packing>
                                         </child>
                                         <child>
-                                          <object class="GtkHBox" id="hbox27">
+                                          <object class="GtkHBox" id="hbox69">
                                             <property name="visible">True</property>
                                             <child>
                                               <object class="GtkLabel" id="label17">
                     </child>
 
                     <child>
-                      <object class="GtkAlignment" id="alignment_b">
+                      <object class="GtkAlignment" id="alignment56">
                         <property name="visible">True</property>
                         <property name="right_padding">10</property>
 
                         <property name="visible">True</property>
                         <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                         <child>
-                          <object class="GtkLabel" id="label8">
+                          <object class="GtkLabel" id="label73">
                             <property name="visible">True</property>
                           </object>
                           <packing>
                     <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
 
                     <child>
-                      <object class="GtkVBox" id="vbox_j18">
+                      <object class="GtkVBox" id="vbox47">
                         <property name="visible">True</property>
                         <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                         <child>
                                         <property name="visible">True</property>
                                         <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                         <child>
-                                          <object class="GtkLabel" id="label28">
+                                          <object class="GtkLabel" id="label46">
                                             <property name="visible">True</property>
                                             <property name="xalign">0</property>
                                             <property name="label" translatable="yes">Video Codec:</property>
                                         <property name="visible">True</property>
                                         <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                         <child>
-                                          <object class="GtkLabel" id="label29">
+                                          <object class="GtkLabel" id="label47">
                                             <property name="visible">True</property>
                                             <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                             <property name="xalign">0</property>
                                       </packing>
                                     </child>
                                     <child>
-                                      <object class="GtkHBox" id="hbox20">
+                                      <object class="GtkHBox" id="hbox62">
                                         <property name="visible">True</property>
                                         <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                         <child>
                                       </packing>
                                     </child>
                                     <child>
-                                      <object class="GtkHBox" id="hbox21">
+                                      <object class="GtkHBox" id="hbox56">
                                         <property name="visible">True</property>
                                         <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                         <child>
                                       </packing>
                                     </child>
                                     <child>
-                                      <object class="GtkHBox" id="hbox22">
+                                      <object class="GtkHBox" id="hbox57">
                                         <property name="visible">True</property>
                                         <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                         <child>
                   </object>
                 </child>
                 <child type="tab">
-                  <object class="GtkLabel" id="label32">
+                  <object class="GtkLabel" id="label65">
                     <property name="visible">True</property>
                     <property name="label" translatable="yes">Video</property>
                   </object>
                                 <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                 <property name="spacing">2</property>
                                 <child>
-                                  <object class="GtkHBox" id="hbox23">
+                                  <object class="GtkHBox" id="hbox58">
                                     <property name="visible">True</property>
                                     <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                     <property name="spacing">5</property>
                                   </packing>
                                 </child>
                                 <child>
-                                  <object class="GtkTable" id="table2">
+                                  <object class="GtkTable" id="table1">
                                     <property name="visible">True</property>
                                     <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                     <property name="n_rows">2</property>
                                       </packing>
                                     </child>
                                     <child>
-                                      <object class="GtkLabel" id="label36">
+                                      <object class="GtkLabel" id="label68">
                                         <property name="visible">True</property>
                                         <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                         <property name="label" translatable="yes">Codec</property>
                                       </packing>
                                     </child>
                                     <child>
-                                      <object class="GtkLabel" id="label37">
+                                      <object class="GtkLabel" id="label69">
                                         <property name="visible">True</property>
                                         <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                         <property name="label" translatable="yes">Bitrate</property>
                       </object>
                     </child>
                     <child>
-                      <object class="GtkHBox" id="hboxj01">
+                      <object class="GtkHBox" id="hbox63">
                         <property name="visible">True</property>
                         <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                         <property name="spacing">5</property>
                         <child>
-                          <object class="GtkFrame" id="framej01">
+                          <object class="GtkFrame" id="frame18">
                             <property name="visible">True</property>
                             <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                             <property name="label_xalign">0</property>
                             <property name="shadow_type">none</property>
                             <child>
-                              <object class="GtkAlignment" id="alignmentj01">
+                              <object class="GtkAlignment" id="alignment57">
                                 <property name="visible">True</property>
                                 <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                 <property name="top_padding">6</property>
                                 <property name="left_padding">12</property>
                                 <property name="right_padding">2</property>
                                 <child>
-                                  <object class="GtkHBox" id="hboxj02">
+                                  <object class="GtkHBox" id="hbox64">
                                     <property name="visible">True</property>
                                     <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                     <property name="spacing">5</property>
                               </object>
                             </child>
                             <child type="label">
-                              <object class="GtkLabel" id="labelj01">
+                              <object class="GtkLabel" id="label74">
                                 <property name="visible">True</property>
                                 <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                 <property name="label" translatable="yes">&lt;b&gt;Preferred Audio Language&lt;/b&gt;</property>
                           </object>
                         </child>
                         <child>
-                          <object class="GtkFrame" id="framej02">
+                          <object class="GtkFrame" id="frame19">
                             <property name="visible">True</property>
                             <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                             <property name="label_xalign">0</property>
                             <property name="shadow_type">none</property>
                             <child>
-                              <object class="GtkAlignment" id="alignmentj02">
+                              <object class="GtkAlignment" id="alignment58">
                                 <property name="visible">True</property>
                                 <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                 <property name="top_padding">6</property>
                                 <property name="left_padding">12</property>
                                 <property name="right_padding">2</property>
                                 <child>
-                                  <object class="GtkHBox" id="hboxj03">
+                                  <object class="GtkHBox" id="hbox65">
                                     <property name="visible">True</property>
                                     <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                     <property name="spacing">5</property>
                               </object>
                             </child>
                             <child type="label">
-                              <object class="GtkLabel" id="labelj02">
+                              <object class="GtkLabel" id="label75">
                                 <property name="visible">True</property>
                                 <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                 <property name="label" translatable="yes">&lt;b&gt;Subtitles&lt;/b&gt;</property>
@@ -2438,7 +2438,7 @@ no-fast-pskip=0:no-dct-decimate=0:cabac=1</property>
                       </packing>
                     </child>
                     <child>
-                      <object class="GtkVSeparator" id="vseparator_j3">
+                      <object class="GtkVSeparator" id="vseparator1">
                         <property name="visible">True</property>
                       </object>
                       <packing>
@@ -2606,7 +2606,7 @@ no-fast-pskip=0:no-dct-decimate=0:cabac=1</property>
                                           </packing>
                                         </child>
                                         <child>
-                                          <object class="GtkAlignment" id="alignment34">
+                                          <object class="GtkAlignment" id="alignment37">
                                             <property name="visible">True</property>
                                             <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                                             <property name="xalign">0</property>
@@ -3132,10 +3132,10 @@ no-fast-pskip=0:no-dct-decimate=0:cabac=1</property>
         <property name="visible">True</property>
         <property name="spacing">2</property>
         <child>
-          <object class="GtkHBox" id="hbox24">
+          <object class="GtkHBox" id="hbox59">
             <property name="visible">True</property>
             <child>
-              <object class="GtkVBox" id="vbox19">
+              <object class="GtkVBox" id="vbox20">
                 <property name="visible">True</property>
                 <child>
                   <object class="GtkEventBox" id="eventbox1">
@@ -3164,11 +3164,11 @@ no-fast-pskip=0:no-dct-decimate=0:cabac=1</property>
             </child>
 
                 <child>
-                  <object class="GtkAlignment" id="alignment6">
+                  <object class="GtkAlignment" id="alignment22">
                     <property name="visible">True</property>
                     <property name="left_padding">12</property>
                     <child>
-                      <object class="GtkVBox" id="vbox29">
+                      <object class="GtkVBox" id="vbox42">
                         <property name="visible">True</property>
                         <child>
                           <object class="GtkCheckButton" id="use_source_name">
@@ -3181,19 +3181,56 @@ label.</property>
                             <property name="draw_indicator">True</property>
                             <signal name="toggled" handler="pref_changed_cb"/>
                           </object>
+                          <packing>
+                            <property name="expand">False</property>
+                          </packing>
                         </child>
+
                         <child>
-                          <object class="GtkCheckButton" id="chapters_in_destination">
+                          <object class="GtkAlignment" id="alignment6">
                             <property name="visible">True</property>
-                            <property name="can_focus">True</property>
-                            <property name="tooltip_text">Add chapter numbers to the 
+                            <property name="left_padding">18</property>
+                            <child>
+                              <object class="GtkVBox" id="vbox29">
+                                <property name="visible">True</property>
+
+                                <child>
+                                  <object class="GtkCheckButton" id="chapters_in_destination">
+                                    <property name="visible">True</property>
+                                    <property name="can_focus">True</property>
+                                    <property name="tooltip_text">Add chapter numbers to the 
 auto-generated destination name.</property>
-                            <property name="label" translatable="yes">Add chapters to destination name</property>
-                            <property name="draw_indicator">True</property>
-                            <signal name="toggled" handler="pref_changed_cb"/>
+                                    <property name="label" translatable="yes">Add chapters to destination name</property>
+                                    <property name="active">True</property>
+                                    <property name="draw_indicator">True</property>
+                                    <signal name="toggled" handler="pref_changed_cb"/>
+                                  </object>
+                                  <packing>
+                                    <property name="expand">False</property>
+                                  </packing>
+                                </child>
+                                <child>
+                                  <object class="GtkCheckButton" id="title_no_in_destination">
+                                    <property name="visible">True</property>
+                                    <property name="can_focus">True</property>
+                                    <property name="tooltip_text">Add title number to the 
+auto-generated destination name.</property>
+                                    <property name="label" translatable="yes">Add title # to destination name</property>
+                                    <property name="active">True</property>
+                                    <property name="draw_indicator">True</property>
+                                    <signal name="toggled" handler="pref_changed_cb"/>
+                                  </object>
+                                  <packing>
+                                    <property name="expand">False</property>
+                                    <property name="position">1</property>
+                                  </packing>
+                                </child>
+                              </object>
+                            </child>
                           </object>
                           <packing>
-                            <property name="position">1</property>
+                              <property name="expand">False</property>
+                              <property name="position">1</property>
                           </packing>
                         </child>
                         <child>
@@ -3208,6 +3245,7 @@ non-hidef screens.  </property>
                             <signal name="toggled" handler="pref_changed_cb"/>
                           </object>
                           <packing>
+                            <property name="expand">False</property>
                             <property name="position">2</property>
                           </packing>
                         </child>
@@ -3225,6 +3263,7 @@ the required multiple.</property>
                             <signal name="toggled" handler="pref_changed_cb"/>
                           </object>
                           <packing>
+                            <property name="expand">False</property>
                             <property name="position">3</property>
                           </packing>
                         </child>
@@ -3244,6 +3283,7 @@ this setting.</property>
                             <signal name="toggled" handler="vcodec_changed_cb"/>
                           </object>
                           <packing>
+                            <property name="expand">False</property>
                             <property name="position">4</property>
                           </packing>
                         </child>
@@ -3260,16 +3300,17 @@ location as the movie.</property>
                             <signal name="toggled" handler="pref_changed_cb"/>
                           </object>
                           <packing>
+                            <property name="expand">False</property>
                             <property name="position">5</property>
                           </packing>
                         </child>
 
                         <child>
-                          <object class="GtkAlignment" id="alignment_j6">
+                          <object class="GtkAlignment" id="alignment50">
                             <property name="visible">True</property>
                             <property name="left_padding">4</property>
                             <child>
-                              <object class="GtkHBox" id="hbox_j3">
+                              <object class="GtkHBox" id="hbox66">
                                 <property name="visible">True</property>
                                 <child>
                                   <object class="GtkSpinButton" id="preview_count">
@@ -3287,7 +3328,7 @@ location as the movie.</property>
                                   </packing>
                                 </child>
                                 <child>
-                                  <object class="GtkLabel" id="label_j3">
+                                  <object class="GtkLabel" id="label77">
                                     <property name="justify">GTK_JUSTIFY_LEFT</property>
                                     <property name="visible">True</property>
                                     <property name="label" translatable="yes"> Number of previews </property>
@@ -3302,16 +3343,17 @@ location as the movie.</property>
                             </child>
                           </object>
                           <packing>
+                            <property name="expand">False</property>
                             <property name="position">6</property>
                           </packing>
                         </child>
 
                         <child>
-                          <object class="GtkAlignment" id="alignment_j6">
+                          <object class="GtkAlignment" id="alignment51">
                             <property name="visible">True</property>
                             <property name="left_padding">4</property>
                             <child>
-                              <object class="GtkHBox" id="hbox1">
+                              <object class="GtkHBox" id="hbox50">
                                 <property name="visible">True</property>
                                 <property name="spacing">4</property>
                                 <child>
@@ -3339,6 +3381,7 @@ location as the movie.</property>
                             </child>
                           </object>
                           <packing>
+                            <property name="expand">False</property>
                             <property name="position">7</property>
                           </packing>
                         </child>
@@ -3351,6 +3394,7 @@ location as the movie.</property>
                             <signal name="toggled" handler="tweaks_changed_cb"/>
                           </object>
                           <packing>
+                            <property name="expand">False</property>
                             <property name="position">8</property>
                           </packing>
                         </child>
@@ -3362,6 +3406,7 @@ location as the movie.</property>
                             <signal name="toggled" handler="hbfd_feature_changed_cb"/>
                           </object>
                           <packing>
+                            <property name="expand">False</property>
                             <property name="position">9</property>
                           </packing>
                         </child>
@@ -3875,11 +3920,11 @@ location as the movie.</property>
         <property name="visible">True</property>
         <property name="spacing">4</property>
         <child>
-          <object class="GtkVBox" id="vbox1">
+          <object class="GtkVBox" id="vbox40">
             <property name="visible">True</property>
             <property name="spacing">5</property>
             <child>
-              <object class="GtkAlignment" id="alignment_j1">
+              <object class="GtkAlignment" id="alignment52">
                 <property name="visible">True</property>
                 <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                 <property name="xscale">0</property>
@@ -3900,13 +3945,13 @@ location as the movie.</property>
               </packing>
             </child>
             <child>
-              <object class="GtkAlignment" id="alignment_j2">
+              <object class="GtkAlignment" id="alignment53">
                 <property name="visible">True</property>
                 <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                 <property name="left_padding">10</property>
                 <property name="right_padding">10</property>
                 <child>
-                  <object class="GtkHBox" id="hbox3">
+                  <object class="GtkHBox" id="hbox70">
                     <property name="visible">True</property>
                     <property name="spacing">5</property>
                     <child>
@@ -3945,7 +3990,7 @@ location as the movie.</property>
                       <object class="GtkVBox" id="live_progress_box">
                         <property name="visible">True</property>
                         <child>
-                          <object class="GtkLabel" id="label4">
+                          <object class="GtkLabel" id="label71">
                             <property name="height_request">1</property>
                             <property name="visible">True</property>
                           </object>
@@ -3965,7 +4010,7 @@ location as the movie.</property>
                           </packing>
                         </child>
                         <child>
-                          <object class="GtkLabel" id="label5">
+                          <object class="GtkLabel" id="label72">
                             <property name="height_request">1</property>
                             <property name="visible">True</property>
                           </object>
@@ -4031,7 +4076,7 @@ location as the movie.</property>
                       </packing>
                     </child>
                     <child>
-                      <object class="GtkHBox" id="hbox28">
+                      <object class="GtkHBox" id="hbox60">
                         <property name="visible">True</property>
                         <property name="spacing">2</property>
                         <child>
@@ -4077,7 +4122,7 @@ location as the movie.</property>
           </packing>
         </child>
         <child>
-          <object class="GtkVSeparator" id="vseparator_j3">
+          <object class="GtkVSeparator" id="vseparator2">
             <property name="visible">True</property>
           </object>
           <packing>
@@ -4087,7 +4132,7 @@ location as the movie.</property>
         </child>
 
         <child>
-          <object class="GtkAlignment" id="alignment_j7">
+          <object class="GtkAlignment" id="alignment54">
             <property name="visible">True</property>
             <property name="top_padding">6</property>
             <property name="bottom_padding">6</property>
@@ -4114,7 +4159,7 @@ location as the movie.</property>
                         <property name="n_rows">5</property>
                         <property name="n_columns">5</property>
                         <child>
-                          <object class="GtkLabel" id="label19">
+                          <object class="GtkLabel" id="label20">
                             <property name="visible">True</property>
                             <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                             <property name="label" translatable="yes">Left</property>
@@ -4127,7 +4172,7 @@ location as the movie.</property>
                           </packing>
                         </child>
                         <child>
-                          <object class="GtkLabel" id="label23">
+                          <object class="GtkLabel" id="label41">
                             <property name="visible">True</property>
                             <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                             <property name="yalign">1</property>
@@ -4350,7 +4395,7 @@ location as the movie.</property>
                         <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                         <property name="spacing">2</property>
                         <child>
-                          <object class="GtkHBox" id="hbox17">
+                          <object class="GtkHBox" id="hbox51">
                             <property name="visible">True</property>
                             <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                             <property name="spacing">4</property>
@@ -4410,7 +4455,7 @@ location as the movie.</property>
                           </packing>
                         </child>
                         <child>
-                          <object class="GtkHBox" id="hbox18">
+                          <object class="GtkHBox" id="hbox71">
                             <property name="visible">True</property>
                             <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                             <child>
@@ -4433,7 +4478,7 @@ location as the movie.</property>
                           </packing>
                         </child>
                         <child>
-                          <object class="GtkHBox" id="hbox19">
+                          <object class="GtkHBox" id="hbox72">
                             <property name="visible">True</property>
                             <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                             <child>
@@ -4529,13 +4574,13 @@ location as the movie.</property>
               </packing>
             </child>
             <child>
-              <object class="GtkFrame" id="frame5">
+              <object class="GtkFrame" id="frame17">
                 <property name="visible">True</property>
                 <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                 <property name="label_xalign">0</property>
                 <property name="shadow_type">none</property>
                 <child>
-                  <object class="GtkAlignment" id="alignment5">
+                  <object class="GtkAlignment" id="alignment8">
                     <property name="visible">True</property>
                     <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                     <property name="top_padding">6</property>
@@ -4595,7 +4640,7 @@ location as the movie.</property>
                           <object class="GtkHBox" id="hbox21">
                             <property name="visible">True</property>
                             <child>
-                              <object class="GtkLabel" id="label30">
+                              <object class="GtkLabel" id="label56">
                                 <property name="visible">True</property>
                                 <property name="xalign">0</property>
                                 <property name="label" translatable="yes">Deblock:</property>
@@ -4607,7 +4652,7 @@ location as the movie.</property>
                               </packing>
                             </child>
                             <child>
-                              <object class="GtkAlignment" id="alignment6">
+                              <object class="GtkAlignment" id="alignment14">
                                 <property name="visible">True</property>
                                 <property name="xalign">0</property>
                                 <property name="xscale">0.55000001192092896</property>
@@ -4731,7 +4776,7 @@ location as the movie.</property>
                   </object>
                 </child>
                 <child type="label">
-                  <object class="GtkLabel" id="label33">
+                  <object class="GtkLabel" id="label66">
                     <property name="visible">True</property>
                     <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
                     <property name="label" translatable="yes">&lt;b&gt;Filters&lt;/b&gt;</property>
@@ -5029,10 +5074,10 @@ libxvidcore authors:
               </packing>
             </child>
             <child>
-              <object class="GtkVBox" id="vbox1">
+              <object class="GtkVBox" id="vbox41">
                 <property name="visible">True</property>
                 <child>
-                  <object class="GtkLabel" id="label3">
+                  <object class="GtkLabel" id="label22">
                     <property name="visible">True</property>
                     <property name="xalign">0</property>
                     <property name="xpad">10</property>
@@ -5059,7 +5104,7 @@ libxvidcore authors:
                   </packing>
                 </child>
                 <child>
-                  <object class="GtkFrame" id="frame2">
+                  <object class="GtkFrame" id="frame15">
                     <property name="visible">True</property>
                     <property name="label_xalign">0</property>
                     <property name="shadow_type">etched-out</property>
index 7c167453f3ca6c28b81e85635959a53f2930be86..98b1e5d6ac397363bf2cc82c444edd58ff4a067e 100644 (file)
@@ -94,6 +94,8 @@
                <false />
                <key>allow_tweaks</key>
                <false />
+               <key>title_no_in_destination</key>
+               <false />
                <key>chapters_in_destination</key>
                <false />
                <key>default_source</key>
index d3711645ef01b4ce7ea13bc1fbbb42ea77621ea1..308786f481c7b67d3e2df75c65741432e7fdd188 100644 (file)
@@ -63,6 +63,7 @@ static dependency_t dep_map[] =
        {"x264_cabac", "x264_trellis", "TRUE", FALSE},
        {"ChapterMarkers", "chapters_list", "TRUE", FALSE},
        {"use_source_name", "chapters_in_destination", "TRUE", FALSE},
+       {"use_source_name", "title_no_in_destination", "TRUE", FALSE},
 };
 
 int
index 53334463b2e5d893677e9049c6bdd56a4135ed6a..8187e931f7fbf58ed0e86f955a3b6f03ddb5e8a0 100644 (file)
 "    &lt;signal handler=&quot;window_delete_event_cb&quot; name=&quot;de"
 "lete_event&quot;/&gt;\n"
 "    &lt;child&gt;\n"
-"      &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox_j1&quot;&gt;\n"
+"      &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox48&quot;&gt;\n"
 "        &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;\n"
 "        &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK"
 " | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RE"
 "ue&lt;/property&gt;\n"
 "                            &lt;child&gt;\n"
 "                              &lt;object class=&quot;GtkHBox&quot; id=&"
-"quot;hbox2&quot;&gt;\n"
+"quot;hbox54&quot;&gt;\n"
 "                                &lt;property name=&quot;visible&quot;&g"
 "t;True&lt;/property&gt;\n"
 "                                &lt;property name=&quot;events&quot;&gt"
 ";6&lt;/property&gt;\n"
 "                        &lt;child&gt;\n"
 "                          &lt;object class=&quot;GtkHBox&quot; id=&quot"
-";hbox_j4&quot;&gt;\n"
+";hbox67&quot;&gt;\n"
 "                            &lt;property name=&quot;visible&quot;&gt;Tr"
 "ue&lt;/property&gt;\n"
 "                            &lt;property name=&quot;spacing&quot;&gt;12"
 "t;&gt;True&lt;/property&gt;\n"
 "                                    &lt;child&gt;\n"
 "                                      &lt;object class=&quot;GtkLabel&q"
-"uot; id=&quot;label27&quot;&gt;\n"
+"uot; id=&quot;label45&quot;&gt;\n"
 "                                        &lt;property name=&quot;visible"
 "&quot;&gt;True&lt;/property&gt;\n"
 "                                        &lt;property name=&quot;label&q"
 "\n"
 "                    &lt;child&gt;\n"
 "                      &lt;object class=&quot;GtkAlignment&quot; id=&quo"
-"t;alignment_a&quot;&gt;\n"
+"t;alignment55&quot;&gt;\n"
 "                        &lt;property name=&quot;visible&quot;&gt;True&l"
 "t;/property&gt;\n"
 "                        &lt;property name=&quot;top_padding&quot;&gt;10"
 "\n"
 "                    &lt;child&gt;\n"
 "                      &lt;object class=&quot;GtkVBox&quot; id=&quot;vbo"
-"x5&quot;&gt;\n"
+"x43&quot;&gt;\n"
 "                        &lt;property name=&quot;visible&quot;&gt;True&l"
 "t;/property&gt;\n"
 "                        &lt;property name=&quot;events&quot;&gt;GDK_POI"
 "UTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;\n"
 "                                        &lt;child&gt;\n"
 "                                          &lt;object class=&quot;GtkLab"
-"el&quot; id=&quot;label24&quot;&gt;\n"
+"el&quot; id=&quot;label42&quot;&gt;\n"
 "                                            &lt;property name=&quot;vis"
 "ible&quot;&gt;True&lt;/property&gt;\n"
 "                                            &lt;property name=&quot;eve"
 "UTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;\n"
 "                                        &lt;child&gt;\n"
 "                                          &lt;object class=&quot;GtkLab"
-"el&quot; id=&quot;label25&quot;&gt;\n"
+"el&quot; id=&quot;label43&quot;&gt;\n"
 "                                            &lt;property name=&quot;vis"
 "ible&quot;&gt;True&lt;/property&gt;\n"
 "                                            &lt;property name=&quot;eve"
 "                            &lt;/child&gt;\n"
 "                            &lt;child type=&quot;label&quot;&gt;\n"
 "                              &lt;object class=&quot;GtkLabel&quot; id="
-"&quot;label26&quot;&gt;\n"
+"&quot;label44&quot;&gt;\n"
 "                                &lt;property name=&quot;visible&quot;&g"
 "t;True&lt;/property&gt;\n"
 "                                &lt;property name=&quot;events&quot;&gt"
 "uot;&gt;2&lt;/property&gt;\n"
 "                                &lt;child&gt;\n"
 "                                  &lt;object class=&quot;GtkVBox&quot; "
-"id=&quot;vbox6&quot;&gt;\n"
+"id=&quot;vbox44&quot;&gt;\n"
 "                                    &lt;property name=&quot;visible&quo"
 "t;&gt;True&lt;/property&gt;\n"
 "                                    &lt;property name=&quot;events&quot"
 "N_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;\n"
 "                                    &lt;child&gt;\n"
 "                                      &lt;object class=&quot;GtkHBox&qu"
-"ot; id=&quot;hbox54&quot;&gt;\n"
+"ot; id=&quot;hbox61&quot;&gt;\n"
 "                                        &lt;property name=&quot;visible"
 "&quot;&gt;True&lt;/property&gt;\n"
 "                                        &lt;child&gt;\n"
 "                        &lt;/child&gt;\n"
 "                        &lt;child&gt;\n"
 "                          &lt;object class=&quot;GtkVBox&quot; id=&quot"
-";vbox7&quot;&gt;\n"
+";vbox45&quot;&gt;\n"
 "                            &lt;property name=&quot;visible&quot;&gt;Tr"
 "ue&lt;/property&gt;\n"
 "                            &lt;property name=&quot;events&quot;&gt;GDK"
 "MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;\n"
 "                            &lt;child&gt;\n"
 "                              &lt;object class=&quot;GtkFrame&quot; id="
-"&quot;frame3&quot;&gt;\n"
+"&quot;frame16&quot;&gt;\n"
 "                                &lt;property name=&quot;visible&quot;&g"
 "t;True&lt;/property&gt;\n"
 "                                &lt;property name=&quot;events&quot;&gt"
 "t;&gt;GTK_SHADOW_NONE&lt;/property&gt;\n"
 "                                &lt;child&gt;\n"
 "                                  &lt;object class=&quot;GtkAlignment&q"
-"uot; id=&quot;alignment7&quot;&gt;\n"
+"uot; id=&quot;alignment20&quot;&gt;\n"
 "                                    &lt;property name=&quot;visible&quo"
 "t;&gt;True&lt;/property&gt;\n"
 "                                    &lt;property name=&quot;events&quot"
 "ng&quot;&gt;2&lt;/property&gt;\n"
 "                                    &lt;child&gt;\n"
 "                                      &lt;object class=&quot;GtkVBox&qu"
-"ot; id=&quot;vbox8&quot;&gt;\n"
+"ot; id=&quot;vbox46&quot;&gt;\n"
 "                                        &lt;property name=&quot;visible"
 "&quot;&gt;True&lt;/property&gt;\n"
 "                                        &lt;property name=&quot;events&"
 "                                        &lt;/child&gt;\n"
 "                                        &lt;child&gt;\n"
 "                                          &lt;object class=&quot;GtkHBo"
-"x&quot; id=&quot;hbox26&quot;&gt;\n"
+"x&quot; id=&quot;hbox68&quot;&gt;\n"
 "                                            &lt;property name=&quot;vis"
 "ible&quot;&gt;True&lt;/property&gt;\n"
 "                                            &lt;child&gt;\n"
 "                                        &lt;/child&gt;\n"
 "                                        &lt;child&gt;\n"
 "                                          &lt;object class=&quot;GtkHBo"
-"x&quot; id=&quot;hbox27&quot;&gt;\n"
+"x&quot; id=&quot;hbox69&quot;&gt;\n"
 "                                            &lt;property name=&quot;vis"
 "ible&quot;&gt;True&lt;/property&gt;\n"
 "                                            &lt;child&gt;\n"
 "\n"
 "                    &lt;child&gt;\n"
 "                      &lt;object class=&quot;GtkAlignment&quot; id=&quo"
-"t;alignment_b&quot;&gt;\n"
+"t;alignment56&quot;&gt;\n"
 "                        &lt;property name=&quot;visible&quot;&gt;True&l"
 "t;/property&gt;\n"
 "                        &lt;property name=&quot;right_padding&quot;&gt;"
 " | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;\n"
 "                        &lt;child&gt;\n"
 "                          &lt;object class=&quot;GtkLabel&quot; id=&quo"
-"t;label8&quot;&gt;\n"
+"t;label73&quot;&gt;\n"
 "                            &lt;property name=&quot;visible&quot;&gt;Tr"
 "ue&lt;/property&gt;\n"
 "                          &lt;/object&gt;\n"
 "\n"
 "                    &lt;child&gt;\n"
 "                      &lt;object class=&quot;GtkVBox&quot; id=&quot;vbo"
-"x_j18&quot;&gt;\n"
+"x47&quot;&gt;\n"
 "                        &lt;property name=&quot;visible&quot;&gt;True&l"
 "t;/property&gt;\n"
 "                        &lt;property name=&quot;events&quot;&gt;GDK_POI"
 "UTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;\n"
 "                                        &lt;child&gt;\n"
 "                                          &lt;object class=&quot;GtkLab"
-"el&quot; id=&quot;label28&quot;&gt;\n"
+"el&quot; id=&quot;label46&quot;&gt;\n"
 "                                            &lt;property name=&quot;vis"
 "ible&quot;&gt;True&lt;/property&gt;\n"
 "                                            &lt;property name=&quot;xal"
 "UTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;\n"
 "                                        &lt;child&gt;\n"
 "                                          &lt;object class=&quot;GtkLab"
-"el&quot; id=&quot;label29&quot;&gt;\n"
+"el&quot; id=&quot;label47&quot;&gt;\n"
 "                                            &lt;property name=&quot;vis"
 "ible&quot;&gt;True&lt;/property&gt;\n"
 "                                            &lt;property name=&quot;eve"
 "                                    &lt;/child&gt;\n"
 "                                    &lt;child&gt;\n"
 "                                      &lt;object class=&quot;GtkHBox&qu"
-"ot; id=&quot;hbox20&quot;&gt;\n"
+"ot; id=&quot;hbox62&quot;&gt;\n"
 "                                        &lt;property name=&quot;visible"
 "&quot;&gt;True&lt;/property&gt;\n"
 "                                        &lt;property name=&quot;events&"
 "                                    &lt;/child&gt;\n"
 "                                    &lt;child&gt;\n"
 "                                      &lt;object class=&quot;GtkHBox&qu"
-"ot; id=&quot;hbox21&quot;&gt;\n"
+"ot; id=&quot;hbox56&quot;&gt;\n"
 "                                        &lt;property name=&quot;visible"
 "&quot;&gt;True&lt;/property&gt;\n"
 "                                        &lt;property name=&quot;events&"
 "                                    &lt;/child&gt;\n"
 "                                    &lt;child&gt;\n"
 "                                      &lt;object class=&quot;GtkHBox&qu"
-"ot; id=&quot;hbox22&quot;&gt;\n"
+"ot; id=&quot;hbox57&quot;&gt;\n"
 "                                        &lt;property name=&quot;visible"
 "&quot;&gt;True&lt;/property&gt;\n"
 "                                        &lt;property name=&quot;events&"
 "                  &lt;/object&gt;\n"
 "                &lt;/child&gt;\n"
 "                &lt;child type=&quot;tab&quot;&gt;\n"
-"                  &lt;object class=&quot;GtkLabel&quot; id=&quot;label3"
-"2&quot;&gt;\n"
+"                  &lt;object class=&quot;GtkLabel&quot; id=&quot;label6"
+"5&quot;&gt;\n"
 "                    &lt;property name=&quot;visible&quot;&gt;True&lt;/p"
 "roperty&gt;\n"
 "                    &lt;property name=&quot;label&quot; translatable=&q"
 "t;2&lt;/property&gt;\n"
 "                                &lt;child&gt;\n"
 "                                  &lt;object class=&quot;GtkHBox&quot; "
-"id=&quot;hbox23&quot;&gt;\n"
+"id=&quot;hbox58&quot;&gt;\n"
 "                                    &lt;property name=&quot;visible&quo"
 "t;&gt;True&lt;/property&gt;\n"
 "                                    &lt;property name=&quot;events&quot"
 "                                &lt;/child&gt;\n"
 "                                &lt;child&gt;\n"
 "                                  &lt;object class=&quot;GtkTable&quot;"
-" id=&quot;table2&quot;&gt;\n"
+" id=&quot;table1&quot;&gt;\n"
 "                                    &lt;property name=&quot;visible&quo"
 "t;&gt;True&lt;/property&gt;\n"
 "                                    &lt;property name=&quot;events&quot"
 "                                    &lt;/child&gt;\n"
 "                                    &lt;child&gt;\n"
 "                                      &lt;object class=&quot;GtkLabel&q"
-"uot; id=&quot;label36&quot;&gt;\n"
+"uot; id=&quot;label68&quot;&gt;\n"
 "                                        &lt;property name=&quot;visible"
 "&quot;&gt;True&lt;/property&gt;\n"
 "                                        &lt;property name=&quot;events&"
 "                                    &lt;/child&gt;\n"
 "                                    &lt;child&gt;\n"
 "                                      &lt;object class=&quot;GtkLabel&q"
-"uot; id=&quot;label37&quot;&gt;\n"
+"uot; id=&quot;label69&quot;&gt;\n"
 "                                        &lt;property name=&quot;visible"
 "&quot;&gt;True&lt;/property&gt;\n"
 "                                        &lt;property name=&quot;events&"
 "                    &lt;/child&gt;\n"
 "                    &lt;child&gt;\n"
 "                      &lt;object class=&quot;GtkHBox&quot; id=&quot;hbo"
-"xj01&quot;&gt;\n"
+"x63&quot;&gt;\n"
 "                        &lt;property name=&quot;visible&quot;&gt;True&l"
 "t;/property&gt;\n"
 "                        &lt;property name=&quot;events&quot;&gt;GDK_POI"
 "property&gt;\n"
 "                        &lt;child&gt;\n"
 "                          &lt;object class=&quot;GtkFrame&quot; id=&quo"
-"t;framej01&quot;&gt;\n"
+"t;frame18&quot;&gt;\n"
 "                            &lt;property name=&quot;visible&quot;&gt;Tr"
 "ue&lt;/property&gt;\n"
 "                            &lt;property name=&quot;events&quot;&gt;GDK"
 "t;none&lt;/property&gt;\n"
 "                            &lt;child&gt;\n"
 "                              &lt;object class=&quot;GtkAlignment&quot;"
-" id=&quot;alignmentj01&quot;&gt;\n"
+" id=&quot;alignment57&quot;&gt;\n"
 "                                &lt;property name=&quot;visible&quot;&g"
 "t;True&lt;/property&gt;\n"
 "                                &lt;property name=&quot;events&quot;&gt"
 "uot;&gt;2&lt;/property&gt;\n"
 "                                &lt;child&gt;\n"
 "                                  &lt;object class=&quot;GtkHBox&quot; "
-"id=&quot;hboxj02&quot;&gt;\n"
+"id=&quot;hbox64&quot;&gt;\n"
 "                                    &lt;property name=&quot;visible&quo"
 "t;&gt;True&lt;/property&gt;\n"
 "                                    &lt;property name=&quot;events&quot"
 "                            &lt;/child&gt;\n"
 "                            &lt;child type=&quot;label&quot;&gt;\n"
 "                              &lt;object class=&quot;GtkLabel&quot; id="
-"&quot;labelj01&quot;&gt;\n"
+"&quot;label74&quot;&gt;\n"
 "                                &lt;property name=&quot;visible&quot;&g"
 "t;True&lt;/property&gt;\n"
 "                                &lt;property name=&quot;events&quot;&gt"
 "                        &lt;/child&gt;\n"
 "                        &lt;child&gt;\n"
 "                          &lt;object class=&quot;GtkFrame&quot; id=&quo"
-"t;framej02&quot;&gt;\n"
+"t;frame19&quot;&gt;\n"
 "                            &lt;property name=&quot;visible&quot;&gt;Tr"
 "ue&lt;/property&gt;\n"
 "                            &lt;property name=&quot;events&quot;&gt;GDK"
 "t;none&lt;/property&gt;\n"
 "                            &lt;child&gt;\n"
 "                              &lt;object class=&quot;GtkAlignment&quot;"
-" id=&quot;alignmentj02&quot;&gt;\n"
+" id=&quot;alignment58&quot;&gt;\n"
 "                                &lt;property name=&quot;visible&quot;&g"
 "t;True&lt;/property&gt;\n"
 "                                &lt;property name=&quot;events&quot;&gt"
 "uot;&gt;2&lt;/property&gt;\n"
 "                                &lt;child&gt;\n"
 "                                  &lt;object class=&quot;GtkHBox&quot; "
-"id=&quot;hboxj03&quot;&gt;\n"
+"id=&quot;hbox65&quot;&gt;\n"
 "                                    &lt;property name=&quot;visible&quo"
 "t;&gt;True&lt;/property&gt;\n"
 "                                    &lt;property name=&quot;events&quot"
 "                            &lt;/child&gt;\n"
 "                            &lt;child type=&quot;label&quot;&gt;\n"
 "                              &lt;object class=&quot;GtkLabel&quot; id="
-"&quot;labelj02&quot;&gt;\n"
+"&quot;label75&quot;&gt;\n"
 "                                &lt;property name=&quot;visible&quot;&g"
 "t;True&lt;/property&gt;\n"
 "                                &lt;property name=&quot;events&quot;&gt"
 "                    &lt;/child&gt;\n"
 "                    &lt;child&gt;\n"
 "                      &lt;object class=&quot;GtkVSeparator&quot; id=&qu"
-"ot;vseparator_j3&quot;&gt;\n"
+"ot;vseparator1&quot;&gt;\n"
 "                        &lt;property name=&quot;visible&quot;&gt;True&l"
 "t;/property&gt;\n"
 "                      &lt;/object&gt;\n"
 "                                        &lt;/child&gt;\n"
 "                                        &lt;child&gt;\n"
 "                                          &lt;object class=&quot;GtkAli"
-"gnment&quot; id=&quot;alignment34&quot;&gt;\n"
+"gnment&quot; id=&quot;alignment37&quot;&gt;\n"
 "                                            &lt;property name=&quot;vis"
 "ible&quot;&gt;True&lt;/property&gt;\n"
 "                                            &lt;property name=&quot;eve"
 "        &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;\n"
 "        &lt;property name=&quot;spacing&quot;&gt;2&lt;/property&gt;\n"
 "        &lt;child&gt;\n"
-"          &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox24&quot;&gt"
+"          &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox59&quot;&gt"
 ";\n"
 "            &lt;property name=&quot;visible&quot;&gt;True&lt;/property&"
 "gt;\n"
 "            &lt;child&gt;\n"
-"              &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox19&quot"
+"              &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox20&quot"
 ";&gt;\n"
 "                &lt;property name=&quot;visible&quot;&gt;True&lt;/prope"
 "rty&gt;\n"
 "\n"
 "                &lt;child&gt;\n"
 "                  &lt;object class=&quot;GtkAlignment&quot; id=&quot;al"
-"ignment6&quot;&gt;\n"
+"ignment22&quot;&gt;\n"
 "                    &lt;property name=&quot;visible&quot;&gt;True&lt;/p"
 "roperty&gt;\n"
 "                    &lt;property name=&quot;left_padding&quot;&gt;12&lt"
 ";/property&gt;\n"
 "                    &lt;child&gt;\n"
 "                      &lt;object class=&quot;GtkVBox&quot; id=&quot;vbo"
-"x29&quot;&gt;\n"
+"x42&quot;&gt;\n"
 "                        &lt;property name=&quot;visible&quot;&gt;True&l"
 "t;/property&gt;\n"
 "                        &lt;child&gt;\n"
 "                            &lt;signal name=&quot;toggled&quot; handler"
 "=&quot;pref_changed_cb&quot;/&gt;\n"
 "                          &lt;/object&gt;\n"
+"                          &lt;packing&gt;\n"
+"                            &lt;property name=&quot;expand&quot;&gt;Fal"
+"se&lt;/property&gt;\n"
+"                          &lt;/packing&gt;\n"
 "                        &lt;/child&gt;\n"
+"\n"
 "                        &lt;child&gt;\n"
-"                          &lt;object class=&quot;GtkCheckButton&quot; i"
-"d=&quot;chapters_in_destination&quot;&gt;\n"
+"                          &lt;object class=&quot;GtkAlignment&quot; id="
+"&quot;alignment6&quot;&gt;\n"
 "                            &lt;property name=&quot;visible&quot;&gt;Tr"
 "ue&lt;/property&gt;\n"
-"                            &lt;property name=&quot;can_focus&quot;&gt;"
-"True&lt;/property&gt;\n"
-"                            &lt;property name=&quot;tooltip_text&quot;&"
-"gt;Add chapter numbers to the \n"
+"                            &lt;property name=&quot;left_padding&quot;&"
+"gt;18&lt;/property&gt;\n"
+"                            &lt;child&gt;\n"
+"                              &lt;object class=&quot;GtkVBox&quot; id=&"
+"quot;vbox29&quot;&gt;\n"
+"                                &lt;property name=&quot;visible&quot;&g"
+"t;True&lt;/property&gt;\n"
+"\n"
+"                                &lt;child&gt;\n"
+"                                  &lt;object class=&quot;GtkCheckButton"
+"&quot; id=&quot;chapters_in_destination&quot;&gt;\n"
+"                                    &lt;property name=&quot;visible&quo"
+"t;&gt;True&lt;/property&gt;\n"
+"                                    &lt;property name=&quot;can_focus&q"
+"uot;&gt;True&lt;/property&gt;\n"
+"                                    &lt;property name=&quot;tooltip_tex"
+"t&quot;&gt;Add chapter numbers to the \n"
 "auto-generated destination name.&lt;/property&gt;\n"
-"                            &lt;property name=&quot;label&quot; transla"
-"table=&quot;yes&quot;&gt;Add chapters to destination name&lt;/property&"
-"gt;\n"
-"                            &lt;property name=&quot;draw_indicator&quot"
+"                                    &lt;property name=&quot;label&quot;"
+" translatable=&quot;yes&quot;&gt;Add chapters to destination name&lt;/p"
+"roperty&gt;\n"
+"                                    &lt;property name=&quot;active&quot"
 ";&gt;True&lt;/property&gt;\n"
-"                            &lt;signal name=&quot;toggled&quot; handler"
-"=&quot;pref_changed_cb&quot;/&gt;\n"
+"                                    &lt;property name=&quot;draw_indica"
+"tor&quot;&gt;True&lt;/property&gt;\n"
+"                                    &lt;signal name=&quot;toggled&quot;"
+" handler=&quot;pref_changed_cb&quot;/&gt;\n"
+"                                  &lt;/object&gt;\n"
+"                                  &lt;packing&gt;\n"
+"                                    &lt;property name=&quot;expand&quot"
+";&gt;False&lt;/property&gt;\n"
+"                                  &lt;/packing&gt;\n"
+"                                &lt;/child&gt;\n"
+"                                &lt;child&gt;\n"
+"                                  &lt;object class=&quot;GtkCheckButton"
+"&quot; id=&quot;title_no_in_destination&quot;&gt;\n"
+"                                    &lt;property name=&quot;visible&quo"
+"t;&gt;True&lt;/property&gt;\n"
+"                                    &lt;property name=&quot;can_focus&q"
+"uot;&gt;True&lt;/property&gt;\n"
+"                                    &lt;property name=&quot;tooltip_tex"
+"t&quot;&gt;Add title number to the \n"
+"auto-generated destination name.&lt;/property&gt;\n"
+"                                    &lt;property name=&quot;label&quot;"
+" translatable=&quot;yes&quot;&gt;Add title # to destination name&lt;/pr"
+"operty&gt;\n"
+"                                    &lt;property name=&quot;active&quot"
+";&gt;True&lt;/property&gt;\n"
+"                                    &lt;property name=&quot;draw_indica"
+"tor&quot;&gt;True&lt;/property&gt;\n"
+"                                    &lt;signal name=&quot;toggled&quot;"
+" handler=&quot;pref_changed_cb&quot;/&gt;\n"
+"                                  &lt;/object&gt;\n"
+"                                  &lt;packing&gt;\n"
+"                                    &lt;property name=&quot;expand&quot"
+";&gt;False&lt;/property&gt;\n"
+"                                    &lt;property name=&quot;position&qu"
+"ot;&gt;1&lt;/property&gt;\n"
+"                                  &lt;/packing&gt;\n"
+"                                &lt;/child&gt;\n"
+"                              &lt;/object&gt;\n"
+"                            &lt;/child&gt;\n"
 "                          &lt;/object&gt;\n"
 "                          &lt;packing&gt;\n"
-"                            &lt;property name=&quot;position&quot;&gt;1"
-"&lt;/property&gt;\n"
+"                              &lt;property name=&quot;expand&quot;&gt;F"
+"alse&lt;/property&gt;\n"
+"                              &lt;property name=&quot;position&quot;&gt"
+";1&lt;/property&gt;\n"
 "                          &lt;/packing&gt;\n"
 "                        &lt;/child&gt;\n"
 "                        &lt;child&gt;\n"
 "=&quot;pref_changed_cb&quot;/&gt;\n"
 "                          &lt;/object&gt;\n"
 "                          &lt;packing&gt;\n"
+"                            &lt;property name=&quot;expand&quot;&gt;Fal"
+"se&lt;/property&gt;\n"
 "                            &lt;property name=&quot;position&quot;&gt;2"
 "&lt;/property&gt;\n"
 "                          &lt;/packing&gt;\n"
 "=&quot;pref_changed_cb&quot;/&gt;\n"
 "                          &lt;/object&gt;\n"
 "                          &lt;packing&gt;\n"
+"                            &lt;property name=&quot;expand&quot;&gt;Fal"
+"se&lt;/property&gt;\n"
 "                            &lt;property name=&quot;position&quot;&gt;3"
 "&lt;/property&gt;\n"
 "                          &lt;/packing&gt;\n"
 "=&quot;vcodec_changed_cb&quot;/&gt;\n"
 "                          &lt;/object&gt;\n"
 "                          &lt;packing&gt;\n"
+"                            &lt;property name=&quot;expand&quot;&gt;Fal"
+"se&lt;/property&gt;\n"
 "                            &lt;property name=&quot;position&quot;&gt;4"
 "&lt;/property&gt;\n"
 "                          &lt;/packing&gt;\n"
 "=&quot;pref_changed_cb&quot;/&gt;\n"
 "                          &lt;/object&gt;\n"
 "                          &lt;packing&gt;\n"
+"                            &lt;property name=&quot;expand&quot;&gt;Fal"
+"se&lt;/property&gt;\n"
 "                            &lt;property name=&quot;position&quot;&gt;5"
 "&lt;/property&gt;\n"
 "                          &lt;/packing&gt;\n"
 "\n"
 "                        &lt;child&gt;\n"
 "                          &lt;object class=&quot;GtkAlignment&quot; id="
-"&quot;alignment_j6&quot;&gt;\n"
+"&quot;alignment50&quot;&gt;\n"
 "                            &lt;property name=&quot;visible&quot;&gt;Tr"
 "ue&lt;/property&gt;\n"
 "                            &lt;property name=&quot;left_padding&quot;&"
 "gt;4&lt;/property&gt;\n"
 "                            &lt;child&gt;\n"
 "                              &lt;object class=&quot;GtkHBox&quot; id=&"
-"quot;hbox_j3&quot;&gt;\n"
+"quot;hbox66&quot;&gt;\n"
 "                                &lt;property name=&quot;visible&quot;&g"
 "t;True&lt;/property&gt;\n"
 "                                &lt;child&gt;\n"
 "                                &lt;/child&gt;\n"
 "                                &lt;child&gt;\n"
 "                                  &lt;object class=&quot;GtkLabel&quot;"
-" id=&quot;label_j3&quot;&gt;\n"
+" id=&quot;label77&quot;&gt;\n"
 "                                    &lt;property name=&quot;justify&quo"
 "t;&gt;GTK_JUSTIFY_LEFT&lt;/property&gt;\n"
 "                                    &lt;property name=&quot;visible&quo"
 "                            &lt;/child&gt;\n"
 "                          &lt;/object&gt;\n"
 "                          &lt;packing&gt;\n"
+"                            &lt;property name=&quot;expand&quot;&gt;Fal"
+"se&lt;/property&gt;\n"
 "                            &lt;property name=&quot;position&quot;&gt;6"
 "&lt;/property&gt;\n"
 "                          &lt;/packing&gt;\n"
 "\n"
 "                        &lt;child&gt;\n"
 "                          &lt;object class=&quot;GtkAlignment&quot; id="
-"&quot;alignment_j6&quot;&gt;\n"
+"&quot;alignment51&quot;&gt;\n"
 "                            &lt;property name=&quot;visible&quot;&gt;Tr"
 "ue&lt;/property&gt;\n"
 "                            &lt;property name=&quot;left_padding&quot;&"
 "gt;4&lt;/property&gt;\n"
 "                            &lt;child&gt;\n"
 "                              &lt;object class=&quot;GtkHBox&quot; id=&"
-"quot;hbox1&quot;&gt;\n"
+"quot;hbox50&quot;&gt;\n"
 "                                &lt;property name=&quot;visible&quot;&g"
 "t;True&lt;/property&gt;\n"
 "                                &lt;property name=&quot;spacing&quot;&g"
 "                            &lt;/child&gt;\n"
 "                          &lt;/object&gt;\n"
 "                          &lt;packing&gt;\n"
+"                            &lt;property name=&quot;expand&quot;&gt;Fal"
+"se&lt;/property&gt;\n"
 "                            &lt;property name=&quot;position&quot;&gt;7"
 "&lt;/property&gt;\n"
 "                          &lt;/packing&gt;\n"
 "=&quot;tweaks_changed_cb&quot;/&gt;\n"
 "                          &lt;/object&gt;\n"
 "                          &lt;packing&gt;\n"
+"                            &lt;property name=&quot;expand&quot;&gt;Fal"
+"se&lt;/property&gt;\n"
 "                            &lt;property name=&quot;position&quot;&gt;8"
 "&lt;/property&gt;\n"
 "                          &lt;/packing&gt;\n"
 "=&quot;hbfd_feature_changed_cb&quot;/&gt;\n"
 "                          &lt;/object&gt;\n"
 "                          &lt;packing&gt;\n"
+"                            &lt;property name=&quot;expand&quot;&gt;Fal"
+"se&lt;/property&gt;\n"
 "                            &lt;property name=&quot;position&quot;&gt;9"
 "&lt;/property&gt;\n"
 "                          &lt;/packing&gt;\n"
 "        &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;\n"
 "        &lt;property name=&quot;spacing&quot;&gt;4&lt;/property&gt;\n"
 "        &lt;child&gt;\n"
-"          &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox1&quot;&gt;"
-"\n"
+"          &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox40&quot;&gt"
+";\n"
 "            &lt;property name=&quot;visible&quot;&gt;True&lt;/property&"
 "gt;\n"
 "            &lt;property name=&quot;spacing&quot;&gt;5&lt;/property&gt;"
 "\n"
 "            &lt;child&gt;\n"
 "              &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignm"
-"ent_j1&quot;&gt;\n"
+"ent52&quot;&gt;\n"
 "                &lt;property name=&quot;visible&quot;&gt;True&lt;/prope"
 "rty&gt;\n"
 "                &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOT"
 "            &lt;/child&gt;\n"
 "            &lt;child&gt;\n"
 "              &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignm"
-"ent_j2&quot;&gt;\n"
+"ent53&quot;&gt;\n"
 "                &lt;property name=&quot;visible&quot;&gt;True&lt;/prope"
 "rty&gt;\n"
 "                &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOT"
 "                &lt;property name=&quot;right_padding&quot;&gt;10&lt;/p"
 "roperty&gt;\n"
 "                &lt;child&gt;\n"
-"                  &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox3&q"
-"uot;&gt;\n"
+"                  &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox70&"
+"quot;&gt;\n"
 "                    &lt;property name=&quot;visible&quot;&gt;True&lt;/p"
 "roperty&gt;\n"
 "                    &lt;property name=&quot;spacing&quot;&gt;5&lt;/prop"
 "t;/property&gt;\n"
 "                        &lt;child&gt;\n"
 "                          &lt;object class=&quot;GtkLabel&quot; id=&quo"
-"t;label4&quot;&gt;\n"
+"t;label71&quot;&gt;\n"
 "                            &lt;property name=&quot;height_request&quot"
 ";&gt;1&lt;/property&gt;\n"
 "                            &lt;property name=&quot;visible&quot;&gt;Tr"
 "                        &lt;/child&gt;\n"
 "                        &lt;child&gt;\n"
 "                          &lt;object class=&quot;GtkLabel&quot; id=&quo"
-"t;label5&quot;&gt;\n"
+"t;label72&quot;&gt;\n"
 "                            &lt;property name=&quot;height_request&quot"
 ";&gt;1&lt;/property&gt;\n"
 "                            &lt;property name=&quot;visible&quot;&gt;Tr"
 "                    &lt;/child&gt;\n"
 "                    &lt;child&gt;\n"
 "                      &lt;object class=&quot;GtkHBox&quot; id=&quot;hbo"
-"x28&quot;&gt;\n"
+"x60&quot;&gt;\n"
 "                        &lt;property name=&quot;visible&quot;&gt;True&l"
 "t;/property&gt;\n"
 "                        &lt;property name=&quot;spacing&quot;&gt;2&lt;/"
 "        &lt;/child&gt;\n"
 "        &lt;child&gt;\n"
 "          &lt;object class=&quot;GtkVSeparator&quot; id=&quot;vseparato"
-"r_j3&quot;&gt;\n"
+"r2&quot;&gt;\n"
 "            &lt;property name=&quot;visible&quot;&gt;True&lt;/property&"
 "gt;\n"
 "          &lt;/object&gt;\n"
 "        &lt;/child&gt;\n"
 "\n"
 "        &lt;child&gt;\n"
-"          &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment_"
-"j7&quot;&gt;\n"
+"          &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment5"
+"4&quot;&gt;\n"
 "            &lt;property name=&quot;visible&quot;&gt;True&lt;/property&"
 "gt;\n"
 "            &lt;property name=&quot;top_padding&quot;&gt;6&lt;/property"
 ";/property&gt;\n"
 "                        &lt;child&gt;\n"
 "                          &lt;object class=&quot;GtkLabel&quot; id=&quo"
-"t;label19&quot;&gt;\n"
+"t;label20&quot;&gt;\n"
 "                            &lt;property name=&quot;visible&quot;&gt;Tr"
 "ue&lt;/property&gt;\n"
 "                            &lt;property name=&quot;events&quot;&gt;GDK"
 "                        &lt;/child&gt;\n"
 "                        &lt;child&gt;\n"
 "                          &lt;object class=&quot;GtkLabel&quot; id=&quo"
-"t;label23&quot;&gt;\n"
+"t;label41&quot;&gt;\n"
 "                            &lt;property name=&quot;visible&quot;&gt;Tr"
 "ue&lt;/property&gt;\n"
 "                            &lt;property name=&quot;events&quot;&gt;GDK"
 "property&gt;\n"
 "                        &lt;child&gt;\n"
 "                          &lt;object class=&quot;GtkHBox&quot; id=&quot"
-";hbox17&quot;&gt;\n"
+";hbox51&quot;&gt;\n"
 "                            &lt;property name=&quot;visible&quot;&gt;Tr"
 "ue&lt;/property&gt;\n"
 "                            &lt;property name=&quot;events&quot;&gt;GDK"
 "                        &lt;/child&gt;\n"
 "                        &lt;child&gt;\n"
 "                          &lt;object class=&quot;GtkHBox&quot; id=&quot"
-";hbox18&quot;&gt;\n"
+";hbox71&quot;&gt;\n"
 "                            &lt;property name=&quot;visible&quot;&gt;Tr"
 "ue&lt;/property&gt;\n"
 "                            &lt;property name=&quot;events&quot;&gt;GDK"
 "                        &lt;/child&gt;\n"
 "                        &lt;child&gt;\n"
 "                          &lt;object class=&quot;GtkHBox&quot; id=&quot"
-";hbox19&quot;&gt;\n"
+";hbox72&quot;&gt;\n"
 "                            &lt;property name=&quot;visible&quot;&gt;Tr"
 "ue&lt;/property&gt;\n"
 "                            &lt;property name=&quot;events&quot;&gt;GDK"
 "              &lt;/packing&gt;\n"
 "            &lt;/child&gt;\n"
 "            &lt;child&gt;\n"
-"              &lt;object class=&quot;GtkFrame&quot; id=&quot;frame5&quo"
-"t;&gt;\n"
+"              &lt;object class=&quot;GtkFrame&quot; id=&quot;frame17&qu"
+"ot;&gt;\n"
 "                &lt;property name=&quot;visible&quot;&gt;True&lt;/prope"
 "rty&gt;\n"
 "                &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOT"
 "roperty&gt;\n"
 "                &lt;child&gt;\n"
 "                  &lt;object class=&quot;GtkAlignment&quot; id=&quot;al"
-"ignment5&quot;&gt;\n"
+"ignment8&quot;&gt;\n"
 "                    &lt;property name=&quot;visible&quot;&gt;True&lt;/p"
 "roperty&gt;\n"
 "                    &lt;property name=&quot;events&quot;&gt;GDK_POINTER"
 "ue&lt;/property&gt;\n"
 "                            &lt;child&gt;\n"
 "                              &lt;object class=&quot;GtkLabel&quot; id="
-"&quot;label30&quot;&gt;\n"
+"&quot;label56&quot;&gt;\n"
 "                                &lt;property name=&quot;visible&quot;&g"
 "t;True&lt;/property&gt;\n"
 "                                &lt;property name=&quot;xalign&quot;&gt"
 "                            &lt;/child&gt;\n"
 "                            &lt;child&gt;\n"
 "                              &lt;object class=&quot;GtkAlignment&quot;"
-" id=&quot;alignment6&quot;&gt;\n"
+" id=&quot;alignment14&quot;&gt;\n"
 "                                &lt;property name=&quot;visible&quot;&g"
 "t;True&lt;/property&gt;\n"
 "                                &lt;property name=&quot;xalign&quot;&gt"
 "                  &lt;/object&gt;\n"
 "                &lt;/child&gt;\n"
 "                &lt;child type=&quot;label&quot;&gt;\n"
-"                  &lt;object class=&quot;GtkLabel&quot; id=&quot;label3"
-"3&quot;&gt;\n"
+"                  &lt;object class=&quot;GtkLabel&quot; id=&quot;label6"
+"6&quot;&gt;\n"
 "                    &lt;property name=&quot;visible&quot;&gt;True&lt;/p"
 "roperty&gt;\n"
 "                    &lt;property name=&quot;events&quot;&gt;GDK_POINTER"
 "              &lt;/packing&gt;\n"
 "            &lt;/child&gt;\n"
 "            &lt;child&gt;\n"
-"              &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox1&quot;"
-"&gt;\n"
+"              &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox41&quot"
+";&gt;\n"
 "                &lt;property name=&quot;visible&quot;&gt;True&lt;/prope"
 "rty&gt;\n"
 "                &lt;child&gt;\n"
-"                  &lt;object class=&quot;GtkLabel&quot; id=&quot;label3"
-"&quot;&gt;\n"
+"                  &lt;object class=&quot;GtkLabel&quot; id=&quot;label2"
+"2&quot;&gt;\n"
 "                    &lt;property name=&quot;visible&quot;&gt;True&lt;/p"
 "roperty&gt;\n"
 "                    &lt;property name=&quot;xalign&quot;&gt;0&lt;/prope"
 "                  &lt;/packing&gt;\n"
 "                &lt;/child&gt;\n"
 "                &lt;child&gt;\n"
-"                  &lt;object class=&quot;GtkFrame&quot; id=&quot;frame2"
-"&quot;&gt;\n"
+"                  &lt;object class=&quot;GtkFrame&quot; id=&quot;frame1"
+"5&quot;&gt;\n"
 "                    &lt;property name=&quot;visible&quot;&gt;True&lt;/p"
 "roperty&gt;\n"
 "                    &lt;property name=&quot;label_xalign&quot;&gt;0&lt;"
 "                      <true />\n"
 "                      <key>show_presets</key>\n"
 "                      <false />\n"
+"                      <key>title_no_in_destination</key>\n"
+"                      <false />\n"
 "                      <key>update_skip_version</key>\n"
 "                      <integer>0</integer>\n"
 "                      <key>use_source_name</key>\n"
 "              <key>use_source_name</key>\n"
 "              <array>\n"
 "                      <string>chapters_in_destination</string>\n"
+"                      <string>title_no_in_destination</string>\n"
 "              </array>\n"
 "              <key>vquality_type_bitrate</key>\n"
 "              <array>\n"
 "                              <true />\n"
 "                      </array>\n"
 "              </array>\n"
+"              <key>title_no_in_destination</key>\n"
+"              <array>\n"
+"                      <array>\n"
+"                              <string>use_source_name</string>\n"
+"                              <string>TRUE</string>\n"
+"                              <false />\n"
+"                      </array>\n"
+"              </array>\n"
 "              <key>tweak_PictureDeinterlace</key>\n"
 "              <array>\n"
 "                      <array>\n"
index 5f11666126b275e7b73cae4e322c4d146a2a11d4..da361728b264de746ca8c80faf6abbd6dccaf3a0 100644 (file)
     &lt;signal handler=&quot;window_destroy_event_cb&quot; name=&quot;destroy_event&quot;/&gt;
     &lt;signal handler=&quot;window_delete_event_cb&quot; name=&quot;delete_event&quot;/&gt;
     &lt;child&gt;
-      &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox_j1&quot;&gt;
+      &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox48&quot;&gt;
         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
         &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
         &lt;child&gt;
                           &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox3&quot;&gt;
                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                             &lt;child&gt;
-                              &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox2&quot;&gt;
+                              &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox54&quot;&gt;
                                 &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                 &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                 &lt;property name=&quot;spacing&quot;&gt;5&lt;/property&gt;
                         &lt;property name=&quot;top_padding&quot;&gt;6&lt;/property&gt;
                         &lt;property name=&quot;bottom_padding&quot;&gt;6&lt;/property&gt;
                         &lt;child&gt;
-                          &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox_j4&quot;&gt;
+                          &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox67&quot;&gt;
                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                             &lt;property name=&quot;spacing&quot;&gt;12&lt;/property&gt;
                             &lt;child&gt;
                                   &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox3&quot;&gt;
                                     &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                     &lt;child&gt;
-                                      &lt;object class=&quot;GtkLabel&quot; id=&quot;label27&quot;&gt;
+                                      &lt;object class=&quot;GtkLabel&quot; id=&quot;label45&quot;&gt;
                                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                         &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Container:&lt;/property&gt;
                                       &lt;/object&gt;
                     &lt;property name=&quot;spacing&quot;&gt;3&lt;/property&gt;
 
                     &lt;child&gt;
-                      &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment_a&quot;&gt;
+                      &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment55&quot;&gt;
                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                         &lt;property name=&quot;top_padding&quot;&gt;10&lt;/property&gt;
                         &lt;property name=&quot;left_padding&quot;&gt;10&lt;/property&gt;
 
                     &lt;child&gt;
-                      &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox5&quot;&gt;
+                      &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox43&quot;&gt;
                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                         &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                        &lt;property name=&quot;spacing&quot;&gt;14&lt;/property&gt;
                                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                         &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                         &lt;child&gt;
-                                          &lt;object class=&quot;GtkLabel&quot; id=&quot;label24&quot;&gt;
+                                          &lt;object class=&quot;GtkLabel&quot; id=&quot;label42&quot;&gt;
                                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                             &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                             &lt;property name=&quot;xalign&quot;&gt;0&lt;/property&gt;
                                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                         &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                         &lt;child&gt;
-                                          &lt;object class=&quot;GtkLabel&quot; id=&quot;label25&quot;&gt;
+                                          &lt;object class=&quot;GtkLabel&quot; id=&quot;label43&quot;&gt;
                                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                             &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                             &lt;property name=&quot;xalign&quot;&gt;0&lt;/property&gt;
                               &lt;/object&gt;
                             &lt;/child&gt;
                             &lt;child type=&quot;label&quot;&gt;
-                              &lt;object class=&quot;GtkLabel&quot; id=&quot;label26&quot;&gt;
+                              &lt;object class=&quot;GtkLabel&quot; id=&quot;label44&quot;&gt;
                                 &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                 &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                 &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;&amp;lt;b&amp;gt;Source Picture Parameters&amp;lt;/b&amp;gt;&lt;/property&gt;
                                 &lt;property name=&quot;left_padding&quot;&gt;12&lt;/property&gt;
                                 &lt;property name=&quot;right_padding&quot;&gt;2&lt;/property&gt;
                                 &lt;child&gt;
-                                  &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox6&quot;&gt;
+                                  &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox44&quot;&gt;
                                     &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                     &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                     &lt;child&gt;
-                                      &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox54&quot;&gt;
+                                      &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox61&quot;&gt;
                                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                         &lt;child&gt;
                                           &lt;object class=&quot;GtkLabel&quot; id=&quot;label13&quot;&gt;
                           &lt;/packing&gt;
                         &lt;/child&gt;
                         &lt;child&gt;
-                          &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox7&quot;&gt;
+                          &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox45&quot;&gt;
                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                             &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                             &lt;child&gt;
-                              &lt;object class=&quot;GtkFrame&quot; id=&quot;frame3&quot;&gt;
+                              &lt;object class=&quot;GtkFrame&quot; id=&quot;frame16&quot;&gt;
                                 &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                 &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                 &lt;property name=&quot;label_xalign&quot;&gt;0&lt;/property&gt;
                                 &lt;property name=&quot;shadow_type&quot;&gt;GTK_SHADOW_NONE&lt;/property&gt;
                                 &lt;child&gt;
-                                  &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment7&quot;&gt;
+                                  &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment20&quot;&gt;
                                     &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                     &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                     &lt;property name=&quot;top_padding&quot;&gt;6&lt;/property&gt;
                                     &lt;property name=&quot;left_padding&quot;&gt;12&lt;/property&gt;
                                     &lt;property name=&quot;right_padding&quot;&gt;2&lt;/property&gt;
                                     &lt;child&gt;
-                                      &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox8&quot;&gt;
+                                      &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox46&quot;&gt;
                                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                         &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                         &lt;child&gt;
                                           &lt;/object&gt;
                                         &lt;/child&gt;
                                         &lt;child&gt;
-                                          &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox26&quot;&gt;
+                                          &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox68&quot;&gt;
                                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                             &lt;child&gt;
                                               &lt;object class=&quot;GtkLabel&quot; id=&quot;label15&quot;&gt;
                                           &lt;/packing&gt;
                                         &lt;/child&gt;
                                         &lt;child&gt;
-                                          &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox27&quot;&gt;
+                                          &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox69&quot;&gt;
                                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                             &lt;child&gt;
                                               &lt;object class=&quot;GtkLabel&quot; id=&quot;label17&quot;&gt;
                     &lt;/child&gt;
 
                     &lt;child&gt;
-                      &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment_b&quot;&gt;
+                      &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment56&quot;&gt;
                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                         &lt;property name=&quot;right_padding&quot;&gt;10&lt;/property&gt;
 
                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                         &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                         &lt;child&gt;
-                          &lt;object class=&quot;GtkLabel&quot; id=&quot;label8&quot;&gt;
+                          &lt;object class=&quot;GtkLabel&quot; id=&quot;label73&quot;&gt;
                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                           &lt;/object&gt;
                           &lt;packing&gt;
                     &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
 
                     &lt;child&gt;
-                      &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox_j18&quot;&gt;
+                      &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox47&quot;&gt;
                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                         &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                         &lt;child&gt;
                                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                         &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                         &lt;child&gt;
-                                          &lt;object class=&quot;GtkLabel&quot; id=&quot;label28&quot;&gt;
+                                          &lt;object class=&quot;GtkLabel&quot; id=&quot;label46&quot;&gt;
                                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                             &lt;property name=&quot;xalign&quot;&gt;0&lt;/property&gt;
                                             &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Video Codec:&lt;/property&gt;
                                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                         &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                         &lt;child&gt;
-                                          &lt;object class=&quot;GtkLabel&quot; id=&quot;label29&quot;&gt;
+                                          &lt;object class=&quot;GtkLabel&quot; id=&quot;label47&quot;&gt;
                                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                             &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                             &lt;property name=&quot;xalign&quot;&gt;0&lt;/property&gt;
                                       &lt;/packing&gt;
                                     &lt;/child&gt;
                                     &lt;child&gt;
-                                      &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox20&quot;&gt;
+                                      &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox62&quot;&gt;
                                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                         &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                         &lt;child&gt;
                                       &lt;/packing&gt;
                                     &lt;/child&gt;
                                     &lt;child&gt;
-                                      &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox21&quot;&gt;
+                                      &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox56&quot;&gt;
                                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                         &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                         &lt;child&gt;
                                       &lt;/packing&gt;
                                     &lt;/child&gt;
                                     &lt;child&gt;
-                                      &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox22&quot;&gt;
+                                      &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox57&quot;&gt;
                                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                         &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                         &lt;child&gt;
                   &lt;/object&gt;
                 &lt;/child&gt;
                 &lt;child type=&quot;tab&quot;&gt;
-                  &lt;object class=&quot;GtkLabel&quot; id=&quot;label32&quot;&gt;
+                  &lt;object class=&quot;GtkLabel&quot; id=&quot;label65&quot;&gt;
                     &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                     &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Video&lt;/property&gt;
                   &lt;/object&gt;
                                 &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                 &lt;property name=&quot;spacing&quot;&gt;2&lt;/property&gt;
                                 &lt;child&gt;
-                                  &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox23&quot;&gt;
+                                  &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox58&quot;&gt;
                                     &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                     &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                     &lt;property name=&quot;spacing&quot;&gt;5&lt;/property&gt;
                                   &lt;/packing&gt;
                                 &lt;/child&gt;
                                 &lt;child&gt;
-                                  &lt;object class=&quot;GtkTable&quot; id=&quot;table2&quot;&gt;
+                                  &lt;object class=&quot;GtkTable&quot; id=&quot;table1&quot;&gt;
                                     &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                     &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                     &lt;property name=&quot;n_rows&quot;&gt;2&lt;/property&gt;
                                       &lt;/packing&gt;
                                     &lt;/child&gt;
                                     &lt;child&gt;
-                                      &lt;object class=&quot;GtkLabel&quot; id=&quot;label36&quot;&gt;
+                                      &lt;object class=&quot;GtkLabel&quot; id=&quot;label68&quot;&gt;
                                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                         &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                         &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Codec&lt;/property&gt;
                                       &lt;/packing&gt;
                                     &lt;/child&gt;
                                     &lt;child&gt;
-                                      &lt;object class=&quot;GtkLabel&quot; id=&quot;label37&quot;&gt;
+                                      &lt;object class=&quot;GtkLabel&quot; id=&quot;label69&quot;&gt;
                                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                         &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                         &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Bitrate&lt;/property&gt;
                       &lt;/object&gt;
                     &lt;/child&gt;
                     &lt;child&gt;
-                      &lt;object class=&quot;GtkHBox&quot; id=&quot;hboxj01&quot;&gt;
+                      &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox63&quot;&gt;
                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                         &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                         &lt;property name=&quot;spacing&quot;&gt;5&lt;/property&gt;
                         &lt;child&gt;
-                          &lt;object class=&quot;GtkFrame&quot; id=&quot;framej01&quot;&gt;
+                          &lt;object class=&quot;GtkFrame&quot; id=&quot;frame18&quot;&gt;
                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                             &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                             &lt;property name=&quot;label_xalign&quot;&gt;0&lt;/property&gt;
                             &lt;property name=&quot;shadow_type&quot;&gt;none&lt;/property&gt;
                             &lt;child&gt;
-                              &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignmentj01&quot;&gt;
+                              &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment57&quot;&gt;
                                 &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                 &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                 &lt;property name=&quot;top_padding&quot;&gt;6&lt;/property&gt;
                                 &lt;property name=&quot;left_padding&quot;&gt;12&lt;/property&gt;
                                 &lt;property name=&quot;right_padding&quot;&gt;2&lt;/property&gt;
                                 &lt;child&gt;
-                                  &lt;object class=&quot;GtkHBox&quot; id=&quot;hboxj02&quot;&gt;
+                                  &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox64&quot;&gt;
                                     &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                     &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                     &lt;property name=&quot;spacing&quot;&gt;5&lt;/property&gt;
                               &lt;/object&gt;
                             &lt;/child&gt;
                             &lt;child type=&quot;label&quot;&gt;
-                              &lt;object class=&quot;GtkLabel&quot; id=&quot;labelj01&quot;&gt;
+                              &lt;object class=&quot;GtkLabel&quot; id=&quot;label74&quot;&gt;
                                 &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                 &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                 &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;&amp;lt;b&amp;gt;Preferred Audio Language&amp;lt;/b&amp;gt;&lt;/property&gt;
                           &lt;/object&gt;
                         &lt;/child&gt;
                         &lt;child&gt;
-                          &lt;object class=&quot;GtkFrame&quot; id=&quot;framej02&quot;&gt;
+                          &lt;object class=&quot;GtkFrame&quot; id=&quot;frame19&quot;&gt;
                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                             &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                             &lt;property name=&quot;label_xalign&quot;&gt;0&lt;/property&gt;
                             &lt;property name=&quot;shadow_type&quot;&gt;none&lt;/property&gt;
                             &lt;child&gt;
-                              &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignmentj02&quot;&gt;
+                              &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment58&quot;&gt;
                                 &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                 &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                 &lt;property name=&quot;top_padding&quot;&gt;6&lt;/property&gt;
                                 &lt;property name=&quot;left_padding&quot;&gt;12&lt;/property&gt;
                                 &lt;property name=&quot;right_padding&quot;&gt;2&lt;/property&gt;
                                 &lt;child&gt;
-                                  &lt;object class=&quot;GtkHBox&quot; id=&quot;hboxj03&quot;&gt;
+                                  &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox65&quot;&gt;
                                     &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                     &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                     &lt;property name=&quot;spacing&quot;&gt;5&lt;/property&gt;
                               &lt;/object&gt;
                             &lt;/child&gt;
                             &lt;child type=&quot;label&quot;&gt;
-                              &lt;object class=&quot;GtkLabel&quot; id=&quot;labelj02&quot;&gt;
+                              &lt;object class=&quot;GtkLabel&quot; id=&quot;label75&quot;&gt;
                                 &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                 &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                 &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;&amp;lt;b&amp;gt;Subtitles&amp;lt;/b&amp;gt;&lt;/property&gt;
@@ -2443,7 +2443,7 @@ no-fast-pskip=0:no-dct-decimate=0:cabac=1&lt;/property&gt;
                       &lt;/packing&gt;
                     &lt;/child&gt;
                     &lt;child&gt;
-                      &lt;object class=&quot;GtkVSeparator&quot; id=&quot;vseparator_j3&quot;&gt;
+                      &lt;object class=&quot;GtkVSeparator&quot; id=&quot;vseparator1&quot;&gt;
                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                       &lt;/object&gt;
                       &lt;packing&gt;
@@ -2611,7 +2611,7 @@ no-fast-pskip=0:no-dct-decimate=0:cabac=1&lt;/property&gt;
                                           &lt;/packing&gt;
                                         &lt;/child&gt;
                                         &lt;child&gt;
-                                          &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment34&quot;&gt;
+                                          &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment37&quot;&gt;
                                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                             &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                                             &lt;property name=&quot;xalign&quot;&gt;0&lt;/property&gt;
@@ -3137,10 +3137,10 @@ no-fast-pskip=0:no-dct-decimate=0:cabac=1&lt;/property&gt;
         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
         &lt;property name=&quot;spacing&quot;&gt;2&lt;/property&gt;
         &lt;child&gt;
-          &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox24&quot;&gt;
+          &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox59&quot;&gt;
             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
             &lt;child&gt;
-              &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox19&quot;&gt;
+              &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox20&quot;&gt;
                 &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                 &lt;child&gt;
                   &lt;object class=&quot;GtkEventBox&quot; id=&quot;eventbox1&quot;&gt;
@@ -3169,11 +3169,11 @@ no-fast-pskip=0:no-dct-decimate=0:cabac=1&lt;/property&gt;
             &lt;/child&gt;
 
                 &lt;child&gt;
-                  &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment6&quot;&gt;
+                  &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment22&quot;&gt;
                     &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                     &lt;property name=&quot;left_padding&quot;&gt;12&lt;/property&gt;
                     &lt;child&gt;
-                      &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox29&quot;&gt;
+                      &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox42&quot;&gt;
                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                         &lt;child&gt;
                           &lt;object class=&quot;GtkCheckButton&quot; id=&quot;use_source_name&quot;&gt;
@@ -3186,19 +3186,56 @@ label.&lt;/property&gt;
                             &lt;property name=&quot;draw_indicator&quot;&gt;True&lt;/property&gt;
                             &lt;signal name=&quot;toggled&quot; handler=&quot;pref_changed_cb&quot;/&gt;
                           &lt;/object&gt;
+                          &lt;packing&gt;
+                            &lt;property name=&quot;expand&quot;&gt;False&lt;/property&gt;
+                          &lt;/packing&gt;
                         &lt;/child&gt;
+
                         &lt;child&gt;
-                          &lt;object class=&quot;GtkCheckButton&quot; id=&quot;chapters_in_destination&quot;&gt;
+                          &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment6&quot;&gt;
                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
-                            &lt;property name=&quot;can_focus&quot;&gt;True&lt;/property&gt;
-                            &lt;property name=&quot;tooltip_text&quot;&gt;Add chapter numbers to the 
+                            &lt;property name=&quot;left_padding&quot;&gt;18&lt;/property&gt;
+                            &lt;child&gt;
+                              &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox29&quot;&gt;
+                                &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
+
+                                &lt;child&gt;
+                                  &lt;object class=&quot;GtkCheckButton&quot; id=&quot;chapters_in_destination&quot;&gt;
+                                    &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
+                                    &lt;property name=&quot;can_focus&quot;&gt;True&lt;/property&gt;
+                                    &lt;property name=&quot;tooltip_text&quot;&gt;Add chapter numbers to the 
 auto-generated destination name.&lt;/property&gt;
-                            &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Add chapters to destination name&lt;/property&gt;
-                            &lt;property name=&quot;draw_indicator&quot;&gt;True&lt;/property&gt;
-                            &lt;signal name=&quot;toggled&quot; handler=&quot;pref_changed_cb&quot;/&gt;
+                                    &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Add chapters to destination name&lt;/property&gt;
+                                    &lt;property name=&quot;active&quot;&gt;True&lt;/property&gt;
+                                    &lt;property name=&quot;draw_indicator&quot;&gt;True&lt;/property&gt;
+                                    &lt;signal name=&quot;toggled&quot; handler=&quot;pref_changed_cb&quot;/&gt;
+                                  &lt;/object&gt;
+                                  &lt;packing&gt;
+                                    &lt;property name=&quot;expand&quot;&gt;False&lt;/property&gt;
+                                  &lt;/packing&gt;
+                                &lt;/child&gt;
+                                &lt;child&gt;
+                                  &lt;object class=&quot;GtkCheckButton&quot; id=&quot;title_no_in_destination&quot;&gt;
+                                    &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
+                                    &lt;property name=&quot;can_focus&quot;&gt;True&lt;/property&gt;
+                                    &lt;property name=&quot;tooltip_text&quot;&gt;Add title number to the 
+auto-generated destination name.&lt;/property&gt;
+                                    &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Add title # to destination name&lt;/property&gt;
+                                    &lt;property name=&quot;active&quot;&gt;True&lt;/property&gt;
+                                    &lt;property name=&quot;draw_indicator&quot;&gt;True&lt;/property&gt;
+                                    &lt;signal name=&quot;toggled&quot; handler=&quot;pref_changed_cb&quot;/&gt;
+                                  &lt;/object&gt;
+                                  &lt;packing&gt;
+                                    &lt;property name=&quot;expand&quot;&gt;False&lt;/property&gt;
+                                    &lt;property name=&quot;position&quot;&gt;1&lt;/property&gt;
+                                  &lt;/packing&gt;
+                                &lt;/child&gt;
+                              &lt;/object&gt;
+                            &lt;/child&gt;
                           &lt;/object&gt;
                           &lt;packing&gt;
-                            &lt;property name=&quot;position&quot;&gt;1&lt;/property&gt;
+                              &lt;property name=&quot;expand&quot;&gt;False&lt;/property&gt;
+                              &lt;property name=&quot;position&quot;&gt;1&lt;/property&gt;
                           &lt;/packing&gt;
                         &lt;/child&gt;
                         &lt;child&gt;
@@ -3213,6 +3250,7 @@ non-hidef screens.  &lt;/property&gt;
                             &lt;signal name=&quot;toggled&quot; handler=&quot;pref_changed_cb&quot;/&gt;
                           &lt;/object&gt;
                           &lt;packing&gt;
+                            &lt;property name=&quot;expand&quot;&gt;False&lt;/property&gt;
                             &lt;property name=&quot;position&quot;&gt;2&lt;/property&gt;
                           &lt;/packing&gt;
                         &lt;/child&gt;
@@ -3230,6 +3268,7 @@ the required multiple.&lt;/property&gt;
                             &lt;signal name=&quot;toggled&quot; handler=&quot;pref_changed_cb&quot;/&gt;
                           &lt;/object&gt;
                           &lt;packing&gt;
+                            &lt;property name=&quot;expand&quot;&gt;False&lt;/property&gt;
                             &lt;property name=&quot;position&quot;&gt;3&lt;/property&gt;
                           &lt;/packing&gt;
                         &lt;/child&gt;
@@ -3249,6 +3288,7 @@ this setting.&lt;/property&gt;
                             &lt;signal name=&quot;toggled&quot; handler=&quot;vcodec_changed_cb&quot;/&gt;
                           &lt;/object&gt;
                           &lt;packing&gt;
+                            &lt;property name=&quot;expand&quot;&gt;False&lt;/property&gt;
                             &lt;property name=&quot;position&quot;&gt;4&lt;/property&gt;
                           &lt;/packing&gt;
                         &lt;/child&gt;
@@ -3265,16 +3305,17 @@ location as the movie.&lt;/property&gt;
                             &lt;signal name=&quot;toggled&quot; handler=&quot;pref_changed_cb&quot;/&gt;
                           &lt;/object&gt;
                           &lt;packing&gt;
+                            &lt;property name=&quot;expand&quot;&gt;False&lt;/property&gt;
                             &lt;property name=&quot;position&quot;&gt;5&lt;/property&gt;
                           &lt;/packing&gt;
                         &lt;/child&gt;
 
                         &lt;child&gt;
-                          &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment_j6&quot;&gt;
+                          &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment50&quot;&gt;
                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                             &lt;property name=&quot;left_padding&quot;&gt;4&lt;/property&gt;
                             &lt;child&gt;
-                              &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox_j3&quot;&gt;
+                              &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox66&quot;&gt;
                                 &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                 &lt;child&gt;
                                   &lt;object class=&quot;GtkSpinButton&quot; id=&quot;preview_count&quot;&gt;
@@ -3292,7 +3333,7 @@ location as the movie.&lt;/property&gt;
                                   &lt;/packing&gt;
                                 &lt;/child&gt;
                                 &lt;child&gt;
-                                  &lt;object class=&quot;GtkLabel&quot; id=&quot;label_j3&quot;&gt;
+                                  &lt;object class=&quot;GtkLabel&quot; id=&quot;label77&quot;&gt;
                                     &lt;property name=&quot;justify&quot;&gt;GTK_JUSTIFY_LEFT&lt;/property&gt;
                                     &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                     &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt; Number of previews &lt;/property&gt;
@@ -3307,16 +3348,17 @@ location as the movie.&lt;/property&gt;
                             &lt;/child&gt;
                           &lt;/object&gt;
                           &lt;packing&gt;
+                            &lt;property name=&quot;expand&quot;&gt;False&lt;/property&gt;
                             &lt;property name=&quot;position&quot;&gt;6&lt;/property&gt;
                           &lt;/packing&gt;
                         &lt;/child&gt;
 
                         &lt;child&gt;
-                          &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment_j6&quot;&gt;
+                          &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment51&quot;&gt;
                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                             &lt;property name=&quot;left_padding&quot;&gt;4&lt;/property&gt;
                             &lt;child&gt;
-                              &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox1&quot;&gt;
+                              &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox50&quot;&gt;
                                 &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                 &lt;property name=&quot;spacing&quot;&gt;4&lt;/property&gt;
                                 &lt;child&gt;
@@ -3344,6 +3386,7 @@ location as the movie.&lt;/property&gt;
                             &lt;/child&gt;
                           &lt;/object&gt;
                           &lt;packing&gt;
+                            &lt;property name=&quot;expand&quot;&gt;False&lt;/property&gt;
                             &lt;property name=&quot;position&quot;&gt;7&lt;/property&gt;
                           &lt;/packing&gt;
                         &lt;/child&gt;
@@ -3356,6 +3399,7 @@ location as the movie.&lt;/property&gt;
                             &lt;signal name=&quot;toggled&quot; handler=&quot;tweaks_changed_cb&quot;/&gt;
                           &lt;/object&gt;
                           &lt;packing&gt;
+                            &lt;property name=&quot;expand&quot;&gt;False&lt;/property&gt;
                             &lt;property name=&quot;position&quot;&gt;8&lt;/property&gt;
                           &lt;/packing&gt;
                         &lt;/child&gt;
@@ -3367,6 +3411,7 @@ location as the movie.&lt;/property&gt;
                             &lt;signal name=&quot;toggled&quot; handler=&quot;hbfd_feature_changed_cb&quot;/&gt;
                           &lt;/object&gt;
                           &lt;packing&gt;
+                            &lt;property name=&quot;expand&quot;&gt;False&lt;/property&gt;
                             &lt;property name=&quot;position&quot;&gt;9&lt;/property&gt;
                           &lt;/packing&gt;
                         &lt;/child&gt;
@@ -3880,11 +3925,11 @@ location as the movie.&lt;/property&gt;
         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
         &lt;property name=&quot;spacing&quot;&gt;4&lt;/property&gt;
         &lt;child&gt;
-          &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox1&quot;&gt;
+          &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox40&quot;&gt;
             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
             &lt;property name=&quot;spacing&quot;&gt;5&lt;/property&gt;
             &lt;child&gt;
-              &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment_j1&quot;&gt;
+              &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment52&quot;&gt;
                 &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                 &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                 &lt;property name=&quot;xscale&quot;&gt;0&lt;/property&gt;
@@ -3905,13 +3950,13 @@ location as the movie.&lt;/property&gt;
               &lt;/packing&gt;
             &lt;/child&gt;
             &lt;child&gt;
-              &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment_j2&quot;&gt;
+              &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment53&quot;&gt;
                 &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                 &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                 &lt;property name=&quot;left_padding&quot;&gt;10&lt;/property&gt;
                 &lt;property name=&quot;right_padding&quot;&gt;10&lt;/property&gt;
                 &lt;child&gt;
-                  &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox3&quot;&gt;
+                  &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox70&quot;&gt;
                     &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                     &lt;property name=&quot;spacing&quot;&gt;5&lt;/property&gt;
                     &lt;child&gt;
@@ -3950,7 +3995,7 @@ location as the movie.&lt;/property&gt;
                       &lt;object class=&quot;GtkVBox&quot; id=&quot;live_progress_box&quot;&gt;
                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                         &lt;child&gt;
-                          &lt;object class=&quot;GtkLabel&quot; id=&quot;label4&quot;&gt;
+                          &lt;object class=&quot;GtkLabel&quot; id=&quot;label71&quot;&gt;
                             &lt;property name=&quot;height_request&quot;&gt;1&lt;/property&gt;
                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                           &lt;/object&gt;
@@ -3970,7 +4015,7 @@ location as the movie.&lt;/property&gt;
                           &lt;/packing&gt;
                         &lt;/child&gt;
                         &lt;child&gt;
-                          &lt;object class=&quot;GtkLabel&quot; id=&quot;label5&quot;&gt;
+                          &lt;object class=&quot;GtkLabel&quot; id=&quot;label72&quot;&gt;
                             &lt;property name=&quot;height_request&quot;&gt;1&lt;/property&gt;
                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                           &lt;/object&gt;
@@ -4036,7 +4081,7 @@ location as the movie.&lt;/property&gt;
                       &lt;/packing&gt;
                     &lt;/child&gt;
                     &lt;child&gt;
-                      &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox28&quot;&gt;
+                      &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox60&quot;&gt;
                         &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                         &lt;property name=&quot;spacing&quot;&gt;2&lt;/property&gt;
                         &lt;child&gt;
@@ -4082,7 +4127,7 @@ location as the movie.&lt;/property&gt;
           &lt;/packing&gt;
         &lt;/child&gt;
         &lt;child&gt;
-          &lt;object class=&quot;GtkVSeparator&quot; id=&quot;vseparator_j3&quot;&gt;
+          &lt;object class=&quot;GtkVSeparator&quot; id=&quot;vseparator2&quot;&gt;
             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
           &lt;/object&gt;
           &lt;packing&gt;
@@ -4092,7 +4137,7 @@ location as the movie.&lt;/property&gt;
         &lt;/child&gt;
 
         &lt;child&gt;
-          &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment_j7&quot;&gt;
+          &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment54&quot;&gt;
             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
             &lt;property name=&quot;top_padding&quot;&gt;6&lt;/property&gt;
             &lt;property name=&quot;bottom_padding&quot;&gt;6&lt;/property&gt;
@@ -4119,7 +4164,7 @@ location as the movie.&lt;/property&gt;
                         &lt;property name=&quot;n_rows&quot;&gt;5&lt;/property&gt;
                         &lt;property name=&quot;n_columns&quot;&gt;5&lt;/property&gt;
                         &lt;child&gt;
-                          &lt;object class=&quot;GtkLabel&quot; id=&quot;label19&quot;&gt;
+                          &lt;object class=&quot;GtkLabel&quot; id=&quot;label20&quot;&gt;
                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                             &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                             &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Left&lt;/property&gt;
@@ -4132,7 +4177,7 @@ location as the movie.&lt;/property&gt;
                           &lt;/packing&gt;
                         &lt;/child&gt;
                         &lt;child&gt;
-                          &lt;object class=&quot;GtkLabel&quot; id=&quot;label23&quot;&gt;
+                          &lt;object class=&quot;GtkLabel&quot; id=&quot;label41&quot;&gt;
                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                             &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                             &lt;property name=&quot;yalign&quot;&gt;1&lt;/property&gt;
@@ -4355,7 +4400,7 @@ location as the movie.&lt;/property&gt;
                         &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                         &lt;property name=&quot;spacing&quot;&gt;2&lt;/property&gt;
                         &lt;child&gt;
-                          &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox17&quot;&gt;
+                          &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox51&quot;&gt;
                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                             &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                             &lt;property name=&quot;spacing&quot;&gt;4&lt;/property&gt;
@@ -4415,7 +4460,7 @@ location as the movie.&lt;/property&gt;
                           &lt;/packing&gt;
                         &lt;/child&gt;
                         &lt;child&gt;
-                          &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox18&quot;&gt;
+                          &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox71&quot;&gt;
                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                             &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                             &lt;child&gt;
@@ -4438,7 +4483,7 @@ location as the movie.&lt;/property&gt;
                           &lt;/packing&gt;
                         &lt;/child&gt;
                         &lt;child&gt;
-                          &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox19&quot;&gt;
+                          &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox72&quot;&gt;
                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                             &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                             &lt;child&gt;
@@ -4534,13 +4579,13 @@ location as the movie.&lt;/property&gt;
               &lt;/packing&gt;
             &lt;/child&gt;
             &lt;child&gt;
-              &lt;object class=&quot;GtkFrame&quot; id=&quot;frame5&quot;&gt;
+              &lt;object class=&quot;GtkFrame&quot; id=&quot;frame17&quot;&gt;
                 &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                 &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                 &lt;property name=&quot;label_xalign&quot;&gt;0&lt;/property&gt;
                 &lt;property name=&quot;shadow_type&quot;&gt;none&lt;/property&gt;
                 &lt;child&gt;
-                  &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment5&quot;&gt;
+                  &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment8&quot;&gt;
                     &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                     &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                     &lt;property name=&quot;top_padding&quot;&gt;6&lt;/property&gt;
@@ -4600,7 +4645,7 @@ location as the movie.&lt;/property&gt;
                           &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox21&quot;&gt;
                             &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                             &lt;child&gt;
-                              &lt;object class=&quot;GtkLabel&quot; id=&quot;label30&quot;&gt;
+                              &lt;object class=&quot;GtkLabel&quot; id=&quot;label56&quot;&gt;
                                 &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                 &lt;property name=&quot;xalign&quot;&gt;0&lt;/property&gt;
                                 &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Deblock:&lt;/property&gt;
@@ -4612,7 +4657,7 @@ location as the movie.&lt;/property&gt;
                               &lt;/packing&gt;
                             &lt;/child&gt;
                             &lt;child&gt;
-                              &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment6&quot;&gt;
+                              &lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment14&quot;&gt;
                                 &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                                 &lt;property name=&quot;xalign&quot;&gt;0&lt;/property&gt;
                                 &lt;property name=&quot;xscale&quot;&gt;0.55000001192092896&lt;/property&gt;
@@ -4736,7 +4781,7 @@ location as the movie.&lt;/property&gt;
                   &lt;/object&gt;
                 &lt;/child&gt;
                 &lt;child type=&quot;label&quot;&gt;
-                  &lt;object class=&quot;GtkLabel&quot; id=&quot;label33&quot;&gt;
+                  &lt;object class=&quot;GtkLabel&quot; id=&quot;label66&quot;&gt;
                     &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                     &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;
                     &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;&amp;lt;b&amp;gt;Filters&amp;lt;/b&amp;gt;&lt;/property&gt;
@@ -5034,10 +5079,10 @@ libxvidcore authors:
               &lt;/packing&gt;
             &lt;/child&gt;
             &lt;child&gt;
-              &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox1&quot;&gt;
+              &lt;object class=&quot;GtkVBox&quot; id=&quot;vbox41&quot;&gt;
                 &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                 &lt;child&gt;
-                  &lt;object class=&quot;GtkLabel&quot; id=&quot;label3&quot;&gt;
+                  &lt;object class=&quot;GtkLabel&quot; id=&quot;label22&quot;&gt;
                     &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                     &lt;property name=&quot;xalign&quot;&gt;0&lt;/property&gt;
                     &lt;property name=&quot;xpad&quot;&gt;10&lt;/property&gt;
@@ -5064,7 +5109,7 @@ libxvidcore authors:
                   &lt;/packing&gt;
                 &lt;/child&gt;
                 &lt;child&gt;
-                  &lt;object class=&quot;GtkFrame&quot; id=&quot;frame2&quot;&gt;
+                  &lt;object class=&quot;GtkFrame&quot; id=&quot;frame15&quot;&gt;
                     &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
                     &lt;property name=&quot;label_xalign&quot;&gt;0&lt;/property&gt;
                     &lt;property name=&quot;shadow_type&quot;&gt;etched-out&lt;/property&gt;
@@ -5374,6 +5419,8 @@ R2RrUAAABBgBAQACAAAAQAAAABAAAAAQ////AP///wD///8A////AP///wD///8A////AP///wD///8A
                        <true />
                        <key>show_presets</key>
                        <false />
+                       <key>title_no_in_destination</key>
+                       <false />
                        <key>update_skip_version</key>
                        <integer>0</integer>
                        <key>use_source_name</key>
@@ -7154,6 +7201,7 @@ R2RrUAAABBgBAQACAAAAQAAAABAAAAAQ////AP///wD///8A////AP///wD///8A////AP///wD///8A
                <key>use_source_name</key>
                <array>
                        <string>chapters_in_destination</string>
+                       <string>title_no_in_destination</string>
                </array>
                <key>vquality_type_bitrate</key>
                <array>
@@ -7495,6 +7543,14 @@ R2RrUAAABBgBAQACAAAAQAAAABAAAAAQ////AP///wD///8A////AP///wD///8A////AP///wD///8A
                                <true />
                        </array>
                </array>
+               <key>title_no_in_destination</key>
+               <array>
+                       <array>
+                               <string>use_source_name</string>
+                               <string>TRUE</string>
+                               <false />
+                       </array>
+               </array>
                <key>tweak_PictureDeinterlace</key>
                <array>
                        <array>
index 797b239b52f21f7ab24d34387f8dbdac927f2694..c3df7f5cc3ff043bcd32b1379eb99596fd6ba905 100644 (file)
@@ -74,6 +74,7 @@
        <key>use_source_name</key>
        <array>
                <string>chapters_in_destination</string>
+               <string>title_no_in_destination</string>
        </array>
        <key>vquality_type_bitrate</key>
        <array>
index 0c767d5d0cdc87061c52e972e58af9975171efa1..5128ffea1f41fd4179a1675b85e26536c21a478c 100644 (file)
                        <true />
                </array>
        </array>
+       <key>title_no_in_destination</key>
+       <array>
+               <array>
+                       <string>use_source_name</string>
+                       <string>TRUE</string>
+                       <false />
+               </array>
+       </array>
        <key>tweak_PictureDeinterlace</key>
        <array>
                <array>