summaryrefslogtreecommitdiffstats
path: root/gtk/src
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2009-01-24 21:13:05 +0000
committerjstebbins <[email protected]>2009-01-24 21:13:05 +0000
commit8586f9e6099b730fc89ff1202cb524e9595ca052 (patch)
treeb2ca963f530ca44fa1907ec15886fd1e29bd9dfe /gtk/src
parent5c379b6636abf8626e0bf2c323a5d77fd42f7fe5 (diff)
LinGui: add option for title numbers to
automatically generated destination names git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2095 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src')
-rw-r--r--gtk/src/callbacks.c46
-rw-r--r--gtk/src/ghb.ui203
-rw-r--r--gtk/src/internal_defaults.xml2
-rw-r--r--gtk/src/makedeps.c1
-rw-r--r--gtk/src/resource_data.h274
-rw-r--r--gtk/src/resources.plist214
-rw-r--r--gtk/src/widget_deps1
-rw-r--r--gtk/src/widget_reverse_deps8
8 files changed, 481 insertions, 268 deletions
diff --git a/gtk/src/callbacks.c b/gtk/src/callbacks.c
index 3e10696c1..6d745ed41 100644
--- a/gtk/src/callbacks.c
+++ b/gtk/src/callbacks.c
@@ -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
diff --git a/gtk/src/ghb.ui b/gtk/src/ghb.ui
index 9d69a29e4..aa5b29df7 100644
--- a/gtk/src/ghb.ui
+++ b/gtk/src/ghb.ui
@@ -373,7 +373,7 @@
<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>
@@ -516,7 +516,7 @@
<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>
@@ -706,7 +706,7 @@
<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>
@@ -771,7 +771,7 @@
<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>
@@ -888,13 +888,13 @@
<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>
@@ -949,7 +949,7 @@
<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>
@@ -980,7 +980,7 @@
<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>
@@ -1011,7 +1011,7 @@
</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>
@@ -1039,11 +1039,11 @@
<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">
@@ -1146,17 +1146,17 @@
</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>
@@ -1164,7 +1164,7 @@
<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>
@@ -1193,7 +1193,7 @@
</object>
</child>
<child>
- <object class="GtkHBox" id="hbox26">
+ <object class="GtkHBox" id="hbox68">
<property name="visible">True</property>
<child>
<object class="GtkLabel" id="label15">
@@ -1221,7 +1221,7 @@
</packing>
</child>
<child>
- <object class="GtkHBox" id="hbox27">
+ <object class="GtkHBox" id="hbox69">
<property name="visible">True</property>
<child>
<object class="GtkLabel" id="label17">
@@ -1281,7 +1281,7 @@
</child>
<child>
- <object class="GtkAlignment" id="alignment_b">
+ <object class="GtkAlignment" id="alignment56">
<property name="visible">True</property>
<property name="right_padding">10</property>
@@ -1290,7 +1290,7 @@
<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>
@@ -1408,7 +1408,7 @@
<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>
@@ -1434,7 +1434,7 @@
<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>
@@ -1472,7 +1472,7 @@
<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>
@@ -1543,7 +1543,7 @@
</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>
@@ -1585,7 +1585,7 @@
</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>
@@ -1628,7 +1628,7 @@
</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>
@@ -1717,7 +1717,7 @@
</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>
@@ -1750,7 +1750,7 @@
<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>
@@ -1842,7 +1842,7 @@
</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>
@@ -1898,7 +1898,7 @@
</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>
@@ -1911,7 +1911,7 @@
</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>
@@ -2008,18 +2008,18 @@
</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>
@@ -2027,7 +2027,7 @@
<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>
@@ -2045,7 +2045,7 @@
</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>
@@ -2055,13 +2055,13 @@
</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>
@@ -2069,7 +2069,7 @@
<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>
@@ -2101,7 +2101,7 @@
</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>
diff --git a/gtk/src/internal_defaults.xml b/gtk/src/internal_defaults.xml
index 7c167453f..98b1e5d6a 100644
--- a/gtk/src/internal_defaults.xml
+++ b/gtk/src/internal_defaults.xml
@@ -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>
diff --git a/gtk/src/makedeps.c b/gtk/src/makedeps.c
index d3711645e..308786f48 100644
--- a/gtk/src/makedeps.c
+++ b/gtk/src/makedeps.c
@@ -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
diff --git a/gtk/src/resource_data.h b/gtk/src/resource_data.h
index 53334463b..8187e931f 100644
--- a/gtk/src/resource_data.h
+++ b/gtk/src/resource_data.h
@@ -520,7 +520,7 @@
" &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"
@@ -759,7 +759,7 @@
"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"
@@ -1063,7 +1063,7 @@
";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"
@@ -1168,7 +1168,7 @@
"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"
@@ -1357,7 +1357,7 @@
"\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"
@@ -1367,7 +1367,7 @@
"\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"
@@ -1467,7 +1467,7 @@
"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"
@@ -1517,7 +1517,7 @@
"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"
@@ -1563,7 +1563,7 @@
" &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"
@@ -1614,7 +1614,7 @@
"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"
@@ -1622,7 +1622,7 @@
"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"
@@ -1780,7 +1780,7 @@
" &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"
@@ -1788,7 +1788,7 @@
"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"
@@ -1800,7 +1800,7 @@
"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"
@@ -1816,7 +1816,7 @@
"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&"
@@ -1862,7 +1862,7 @@
" &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"
@@ -1904,7 +1904,7 @@
" &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"
@@ -1989,7 +1989,7 @@
"\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;"
@@ -2005,7 +2005,7 @@
" | 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"
@@ -2182,7 +2182,7 @@
"\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"
@@ -2234,7 +2234,7 @@
"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"
@@ -2294,7 +2294,7 @@
"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"
@@ -2413,7 +2413,7 @@
" &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&"
@@ -2484,7 +2484,7 @@
" &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&"
@@ -2557,7 +2557,7 @@
" &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&"
@@ -2699,8 +2699,8 @@
" &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"
@@ -2761,7 +2761,7 @@
"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"
@@ -2920,7 +2920,7 @@
" &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"
@@ -3016,7 +3016,7 @@
" &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&"
@@ -3038,7 +3038,7 @@
" &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&"
@@ -3197,7 +3197,7 @@
" &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"
@@ -3207,7 +3207,7 @@
"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"
@@ -3219,7 +3219,7 @@
"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"
@@ -3235,7 +3235,7 @@
"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"
@@ -3264,7 +3264,7 @@
" &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"
@@ -3281,7 +3281,7 @@
" &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"
@@ -3293,7 +3293,7 @@
"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"
@@ -3309,7 +3309,7 @@
"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"
@@ -3363,7 +3363,7 @@
" &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"
@@ -3943,7 +3943,7 @@
" &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"
@@ -4241,7 +4241,7 @@
" &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"
@@ -5117,12 +5117,12 @@
" &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"
@@ -5168,14 +5168,14 @@
"\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"
@@ -5197,28 +5197,85 @@
" &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"
@@ -5241,6 +5298,8 @@
"=&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"
@@ -5266,6 +5325,8 @@
"=&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"
@@ -5293,6 +5354,8 @@
"=&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"
@@ -5318,6 +5381,8 @@
"=&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"
@@ -5325,14 +5390,14 @@
"\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"
@@ -5362,7 +5427,7 @@
" &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"
@@ -5383,6 +5448,8 @@
" &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"
@@ -5390,14 +5457,14 @@
"\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"
@@ -5438,6 +5505,8 @@
" &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"
@@ -5456,6 +5525,8 @@
"=&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"
@@ -5473,6 +5544,8 @@
"=&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"
@@ -6301,15 +6374,15 @@
" &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"
@@ -6344,7 +6417,7 @@
" &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"
@@ -6355,8 +6428,8 @@
" &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"
@@ -6419,7 +6492,7 @@
"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"
@@ -6450,7 +6523,7 @@
" &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"
@@ -6551,7 +6624,7 @@
" &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;/"
@@ -6619,7 +6692,7 @@
" &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"
@@ -6632,8 +6705,8 @@
" &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"
@@ -6684,7 +6757,7 @@
";/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"
@@ -6706,7 +6779,7 @@
" &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"
@@ -7053,7 +7126,7 @@
"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"
@@ -7153,7 +7226,7 @@
" &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"
@@ -7190,7 +7263,7 @@
" &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"
@@ -7348,8 +7421,8 @@
" &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"
@@ -7361,7 +7434,7 @@
"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"
@@ -7467,7 +7540,7 @@
"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"
@@ -7486,7 +7559,7 @@
" &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"
@@ -7683,8 +7756,8 @@
" &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"
@@ -8051,13 +8124,13 @@
" &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"
@@ -8102,8 +8175,8 @@
" &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;"
@@ -10833,6 +10906,8 @@
" <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"
@@ -12655,6 +12730,7 @@
" <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"
@@ -12996,6 +13072,14 @@
" <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"
diff --git a/gtk/src/resources.plist b/gtk/src/resources.plist
index 5f1166612..da361728b 100644
--- a/gtk/src/resources.plist
+++ b/gtk/src/resources.plist
@@ -378,7 +378,7 @@
&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;
@@ -521,7 +521,7 @@
&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;
@@ -711,7 +711,7 @@
&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;
@@ -776,7 +776,7 @@
&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;
@@ -893,13 +893,13 @@
&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;
@@ -954,7 +954,7 @@
&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;
@@ -985,7 +985,7 @@
&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;
@@ -1016,7 +1016,7 @@
&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;
@@ -1044,11 +1044,11 @@
&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;
@@ -1151,17 +1151,17 @@
&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;
@@ -1169,7 +1169,7 @@
&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;
@@ -1198,7 +1198,7 @@
&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;
@@ -1226,7 +1226,7 @@
&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;
@@ -1286,7 +1286,7 @@
&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;
@@ -1295,7 +1295,7 @@
&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;
@@ -1413,7 +1413,7 @@
&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;
@@ -1439,7 +1439,7 @@
&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;
@@ -1477,7 +1477,7 @@
&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;
@@ -1548,7 +1548,7 @@
&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;
@@ -1590,7 +1590,7 @@
&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;
@@ -1633,7 +1633,7 @@
&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;
@@ -1722,7 +1722,7 @@
&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;
@@ -1755,7 +1755,7 @@
&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;
@@ -1847,7 +1847,7 @@
&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;
@@ -1903,7 +1903,7 @@
&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;
@@ -1916,7 +1916,7 @@
&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;
@@ -2013,18 +2013,18 @@
&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;
@@ -2032,7 +2032,7 @@
&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;
@@ -2050,7 +2050,7 @@
&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;
@@ -2060,13 +2060,13 @@
&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;
@@ -2074,7 +2074,7 @@
&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;
@@ -2106,7 +2106,7 @@
&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>
diff --git a/gtk/src/widget_deps b/gtk/src/widget_deps
index 797b239b5..c3df7f5cc 100644
--- a/gtk/src/widget_deps
+++ b/gtk/src/widget_deps
@@ -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>
diff --git a/gtk/src/widget_reverse_deps b/gtk/src/widget_reverse_deps
index 0c767d5d0..5128ffea1 100644
--- a/gtk/src/widget_reverse_deps
+++ b/gtk/src/widget_reverse_deps
@@ -310,6 +310,14 @@
<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>