summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2008-11-26 20:01:49 +0000
committerjstebbins <[email protected]>2008-11-26 20:01:49 +0000
commitb78331a269ee8b8ee3bcc3a9754b50407de83964 (patch)
treeb532b9d264750c356caec661995a1c22a0d1ea8b
parent111377b18e7c6878bfc7e6d4d4adfab69dfdf180 (diff)
LinGui: reposition the presets frame below toolbar
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1960 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--gtk/src/callbacks.c6
-rw-r--r--gtk/src/ghb.ui289
-rw-r--r--gtk/src/resource_data.h468
-rw-r--r--gtk/src/resources.plist289
4 files changed, 460 insertions, 592 deletions
diff --git a/gtk/src/callbacks.c b/gtk/src/callbacks.c
index 3223f91cd..c5234e59b 100644
--- a/gtk/src/callbacks.c
+++ b/gtk/src/callbacks.c
@@ -2041,14 +2041,15 @@ show_queue_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
}
void
-show_presets_toggled_cb(GtkToggleButton *button, signal_user_data_t *ud)
+show_presets_toggled_cb(GtkWidget *action, signal_user_data_t *ud)
{
GtkWidget *widget;
GtkWindow *hb_window;
g_debug("show_presets_clicked_cb ()");
widget = GHB_WIDGET (ud->builder, "presets_frame");
- if (gtk_toggle_button_get_active(button))
+ ghb_widget_to_setting(ud->settings, action);
+ if (ghb_settings_get_boolean(ud->settings, "show_presets"))
{
gtk_widget_show_now(widget);
}
@@ -2058,7 +2059,6 @@ show_presets_toggled_cb(GtkToggleButton *button, signal_user_data_t *ud)
hb_window = GTK_WINDOW(GHB_WIDGET (ud->builder, "hb_window"));
gtk_window_resize(hb_window, 16, 16);
}
- ghb_widget_to_setting(ud->settings, GTK_WIDGET(button));
ghb_pref_save(ud->settings, "show_presets");
}
diff --git a/gtk/src/ghb.ui b/gtk/src/ghb.ui
index e1abfd492..a88f7d9d6 100644
--- a/gtk/src/ghb.ui
+++ b/gtk/src/ghb.ui
@@ -264,6 +264,15 @@
</object>
</child>
<child>
+ <object class="GtkToggleAction" id="show_presets">
+ <property name="visible">True</property>
+ <property name="active">False</property>
+ <property name="name">show_presets</property>
+ <property name="label" translatable="yes">Show Presets</property>
+ <signal handler="show_presets_toggled_cb" name="toggled"/>
+ </object>
+ </child>
+ <child>
<object class="GtkAction" id="show_activity_menu">
<property name="icon-name">hb-activity</property>
<property name="name">show_activity_menu</property>
@@ -326,6 +335,7 @@
</menu>
<menu action="menuitem3">
<menuitem action="hbfd"/>
+ <menuitem action="show_presets"/>
<menuitem action="show_activity_menu"/>
<menuitem action="show_preview_menu"/>
<menuitem action="show_queue_menu"/>
@@ -346,6 +356,111 @@
<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">
+ <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="GtkMenuBar" constructor="uimanager1" id="menubar1">
+ <property name="visible">True</property>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ <property name="fill">False</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GtkToolbar" id="toolbar1">
+ <property name="visible">True</property>
+ <property name="toolbar_style">GTK_TOOLBAR_BOTH</property>
+ <property name="icon_size">GTK_ICON_SIZE_DND</property>
+ <child>
+ <object class="GtkToolButton" id="toolbutton1">
+ <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="tooltip-text" translatable="yes">Choose Video Source</property>
+ <property name="label" translatable="yes">Source</property>
+ <property name="icon_name">hb-source</property>
+ <signal handler="source_button_clicked_cb" name="clicked"/>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GtkToolButton" id="queue_start1">
+ <property name="visible">True</property>
+ <property name="sensitive">False</property>
+ <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
+ <property name="tooltip-text" translatable="yes">Start Encoding</property>
+ <property name="label" translatable="yes">Start</property>
+ <property name="icon_name">hb-play</property>
+ <signal handler="queue_start_clicked_cb" name="clicked"/>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GtkToolButton" id="queue_pause1">
+ <property name="visible">True</property>
+ <property name="sensitive">False</property>
+ <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
+ <property name="tooltip-text" translatable="yes">Pause Encoding</property>
+ <property name="label" translatable="yes">Pause</property>
+ <property name="icon_name">hb-pause</property>
+ <signal handler="queue_pause_clicked_cb" name="clicked"/>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GtkToolButton" id="queue_add">
+ <property name="visible">True</property>
+ <property name="sensitive">False</property>
+ <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
+ <property name="tooltip-text" translatable="yes">Add to Queue</property>
+ <property name="label" translatable="yes">Add to Queue</property>
+ <property name="icon_name">hb-add-queue</property>
+ <signal handler="queue_add_clicked_cb" name="clicked"/>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GtkToolButton" id="show_queue">
+ <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="tooltip-text" translatable="yes">Show Queue</property>
+ <property name="label" translatable="yes">Show Queue</property>
+ <property name="icon_name">hb-queue</property>
+ <signal handler="show_queue_clicked_cb" name="clicked"/>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GtkToolButton" id="show_activity">
+ <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="tooltip-text" translatable="yes">Show Activity Window</property>
+ <property name="label" translatable="yes">Activity Window</property>
+ <property name="icon_name">hb-activity</property>
+ <signal handler="show_activity_clicked_cb" name="clicked"/>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ </packing>
+ </child>
+ </object>
+ <packing>
+ <property name="position">1</property>
+ </packing>
+ </child>
+
+ <child>
<object class="GtkHBox" id="hbox1">
<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>
@@ -356,154 +471,6 @@
<object class="GtkVBox" id="vbox2">
<property name="visible">True</property>
<child>
- <object class="GtkMenuBar" constructor="uimanager1" id="menubar1">
- <property name="visible">True</property>
- </object>
- <packing>
- <property name="expand">False</property>
- <property name="fill">False</property>
- </packing>
- </child>
- <child>
- <object class="GtkHBox" id="hbox3">
- <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="GtkToolbar" id="toolbar1">
- <property name="visible">True</property>
- <property name="toolbar_style">GTK_TOOLBAR_BOTH</property>
- <property name="icon_size">GTK_ICON_SIZE_DND</property>
- <child>
- <object class="GtkToolButton" id="toolbutton1">
- <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="tooltip-text" translatable="yes">Choose Video Source</property>
- <property name="label" translatable="yes">Source</property>
- <property name="icon_name">hb-source</property>
- <signal handler="source_button_clicked_cb" name="clicked"/>
- </object>
- <packing>
- <property name="expand">False</property>
- </packing>
- </child>
- <child>
- <object class="GtkToolButton" id="queue_start1">
- <property name="visible">True</property>
- <property name="sensitive">False</property>
- <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
- <property name="tooltip-text" translatable="yes">Start Encoding</property>
- <property name="label" translatable="yes">Start</property>
- <property name="icon_name">hb-play</property>
- <signal handler="queue_start_clicked_cb" name="clicked"/>
- </object>
- <packing>
- <property name="expand">False</property>
- </packing>
- </child>
- <child>
- <object class="GtkToolButton" id="queue_pause1">
- <property name="visible">True</property>
- <property name="sensitive">False</property>
- <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
- <property name="tooltip-text" translatable="yes">Pause Encoding</property>
- <property name="label" translatable="yes">Pause</property>
- <property name="icon_name">hb-pause</property>
- <signal handler="queue_pause_clicked_cb" name="clicked"/>
- </object>
- <packing>
- <property name="expand">False</property>
- </packing>
- </child>
- <child>
- <object class="GtkToolButton" id="queue_add">
- <property name="visible">True</property>
- <property name="sensitive">False</property>
- <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
- <property name="tooltip-text" translatable="yes">Add to Queue</property>
- <property name="label" translatable="yes">Add to Queue</property>
- <property name="icon_name">hb-add-queue</property>
- <signal handler="queue_add_clicked_cb" name="clicked"/>
- </object>
- <packing>
- <property name="expand">False</property>
- </packing>
- </child>
- <child>
- <object class="GtkToolButton" id="show_queue">
- <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="tooltip-text" translatable="yes">Show Queue</property>
- <property name="label" translatable="yes">Show Queue</property>
- <property name="icon_name">hb-queue</property>
- <signal handler="show_queue_clicked_cb" name="clicked"/>
- </object>
- <packing>
- <property name="expand">False</property>
- </packing>
- </child>
- <child>
- <object class="GtkToolButton" id="show_activity">
- <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="tooltip-text" translatable="yes">Show Activity Window</property>
- <property name="label" translatable="yes">Activity Window</property>
- <property name="icon_name">hb-activity</property>
- <signal handler="show_activity_clicked_cb" name="clicked"/>
- </object>
- <packing>
- <property name="expand">False</property>
- </packing>
- </child>
- </object>
- </child>
- <child>
- <object class="GtkHBox" id="hbox48">
- <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>
- <placeholder/>
- </child>
- <child>
- <placeholder/>
- </child>
- <child>
- <object class="GtkCheckButton" id="show_presets">
- <property name="visible">True</property>
- <property name="can_focus">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="tooltip-text" translatable="yes">Show/Hide the presets list</property>
- <property name="relief">GTK_RELIEF_NONE</property>
- <property name="active">True</property>
- <property name="draw_indicator">True</property>
- <signal handler="show_presets_toggled_cb" name="toggled"/>
- <child>
- <object class="GtkImage" id="drawerimage">
- <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="icon_size">5</property>
- <property name="icon_name">hb-drawer</property>
- </object>
- </child>
- </object>
- <packing>
- <property name="expand">False</property>
- <property name="position">2</property>
- </packing>
- </child>
- </object>
- <packing>
- <property name="expand">False</property>
- <property name="position">1</property>
- </packing>
- </child>
- </object>
- <packing>
- <property name="expand">False</property>
- <property name="fill">False</property>
- <property name="position">1</property>
- </packing>
- </child>
- <child>
<object class="GtkFrame" id="frame1">
<property name="visible">True</property>
<property name="label_xalign">0</property>
@@ -687,7 +654,7 @@
</object>
<packing>
<property name="expand">False</property>
- <property name="position">2</property>
+ <property name="position">0</property>
</packing>
</child>
<child>
@@ -696,7 +663,7 @@
</object>
<packing>
<property name="expand">False</property>
- <property name="position">3</property>
+ <property name="position">1</property>
</packing>
</child>
<child>
@@ -859,16 +826,7 @@
</object>
<packing>
<property name="expand">False</property>
- <property name="position">4</property>
- </packing>
- </child>
- <child>
- <object class="GtkHSeparator" id="hseparator2">
- <property name="visible">True</property>
- </object>
- <packing>
- <property name="expand">False</property>
- <property name="position">5</property>
+ <property name="position">2</property>
</packing>
</child>
</object>
@@ -2994,11 +2952,11 @@ no-fast-pskip=0:no-dct-decimate=0:cabac=1</property>
</child>
<child>
<object class="GtkFrame" id="presets_frame">
- <property name="visible">True</property>
+ <property name="visible">False</property>
<property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
<property name="border_width">3</property>
<property name="label_xalign">0</property>
- <property name="shadow_type">GTK_SHADOW_ETCHED_OUT</property>
+ <property name="shadow_type">out</property>
<signal handler="presets_frame_size_allocate_cb" name="size_allocate"/>
<child>
<object class="GtkAlignment" id="alignment21">
@@ -3152,7 +3110,14 @@ no-fast-pskip=0:no-dct-decimate=0:cabac=1</property>
</packing>
</child>
</object>
+ <packing>
+ <property name="position">2</property>
+ </packing>
+ </child>
+
+ </object>
</child>
+
</object>
<object class="GtkDialog" id="prefs_dialog">
<property name="border_width">5</property>
diff --git a/gtk/src/resource_data.h b/gtk/src/resource_data.h
index 4392d75fc..238371ca8 100644
--- a/gtk/src/resource_data.h
+++ b/gtk/src/resource_data.h
@@ -369,6 +369,21 @@
" &lt;/object&gt;\n"
" &lt;/child&gt;\n"
" &lt;child&gt;\n"
+" &lt;object class=&quot;GtkToggleAction&quot; id=&quot;show_pr"
+"esets&quot;&gt;\n"
+" &lt;property name=&quot;visible&quot;&gt;True&lt;/property&"
+"gt;\n"
+" &lt;property name=&quot;active&quot;&gt;False&lt;/property&"
+"gt;\n"
+" &lt;property name=&quot;name&quot;&gt;show_presets&lt;/prop"
+"erty&gt;\n"
+" &lt;property name=&quot;label&quot; translatable=&quot;yes&"
+"quot;&gt;Show Presets&lt;/property&gt;\n"
+" &lt;signal handler=&quot;show_presets_toggled_cb&quot; name"
+"=&quot;toggled&quot;/&gt;\n"
+" &lt;/object&gt;\n"
+" &lt;/child&gt;\n"
+" &lt;child&gt;\n"
" &lt;object class=&quot;GtkAction&quot; id=&quot;show_activity"
"_menu&quot;&gt;\n"
" &lt;property name=&quot;icon-name&quot;&gt;hb-activity&lt;/"
@@ -456,6 +471,7 @@
" &lt;/menu&gt;\n"
" &lt;menu action=&quot;menuitem3&quot;&gt;\n"
" &lt;menuitem action=&quot;hbfd&quot;/&gt;\n"
+" &lt;menuitem action=&quot;show_presets&quot;/&gt;\n"
" &lt;menuitem action=&quot;show_activity_menu&quot;/&gt;\n"
" &lt;menuitem action=&quot;show_preview_menu&quot;/&gt;\n"
" &lt;menuitem action=&quot;show_queue_menu&quot;/&gt;\n"
@@ -482,6 +498,179 @@
" &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;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"
+"LEASE_MASK&lt;/property&gt;\n"
+" &lt;child&gt;\n"
+" &lt;object class=&quot;GtkMenuBar&quot; constructor=&quot;uim"
+"anager1&quot; id=&quot;menubar1&quot;&gt;\n"
+" &lt;property name=&quot;visible&quot;&gt;True&lt;/property&"
+"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;fill&quot;&gt;False&lt;/property&gt"
+";\n"
+" &lt;/packing&gt;\n"
+" &lt;/child&gt;\n"
+" &lt;child&gt;\n"
+" &lt;object class=&quot;GtkToolbar&quot; id=&quot;toolbar1&quo"
+"t;&gt;\n"
+" &lt;property name=&quot;visible&quot;&gt;True&lt;/property&"
+"gt;\n"
+" &lt;property name=&quot;toolbar_style&quot;&gt;GTK_TOOLBAR_"
+"BOTH&lt;/property&gt;\n"
+" &lt;property name=&quot;icon_size&quot;&gt;GTK_ICON_SIZE_DN"
+"D&lt;/property&gt;\n"
+" &lt;child&gt;\n"
+" &lt;object class=&quot;GtkToolButton&quot; id=&quot;toolb"
+"utton1&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"
+"ION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_B"
+"UTTON_RELEASE_MASK&lt;/property&gt;\n"
+" &lt;property name=&quot;tooltip-text&quot; translatable"
+"=&quot;yes&quot;&gt;Choose Video Source&lt;/property&gt;\n"
+" &lt;property name=&quot;label&quot; translatable=&quot;"
+"yes&quot;&gt;Source&lt;/property&gt;\n"
+" &lt;property name=&quot;icon_name&quot;&gt;hb-source&lt"
+";/property&gt;\n"
+" &lt;signal handler=&quot;source_button_clicked_cb&quot;"
+" name=&quot;clicked&quot;/&gt;\n"
+" &lt;/object&gt;\n"
+" &lt;packing&gt;\n"
+" &lt;property name=&quot;expand&quot;&gt;False&lt;/prope"
+"rty&gt;\n"
+" &lt;/packing&gt;\n"
+" &lt;/child&gt;\n"
+" &lt;child&gt;\n"
+" &lt;object class=&quot;GtkToolButton&quot; id=&quot;queue"
+"_start1&quot;&gt;\n"
+" &lt;property name=&quot;visible&quot;&gt;True&lt;/prope"
+"rty&gt;\n"
+" &lt;property name=&quot;sensitive&quot;&gt;False&lt;/pr"
+"operty&gt;\n"
+" &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOT"
+"ION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_B"
+"UTTON_RELEASE_MASK&lt;/property&gt;\n"
+" &lt;property name=&quot;tooltip-text&quot; translatable"
+"=&quot;yes&quot;&gt;Start Encoding&lt;/property&gt;\n"
+" &lt;property name=&quot;label&quot; translatable=&quot;"
+"yes&quot;&gt;Start&lt;/property&gt;\n"
+" &lt;property name=&quot;icon_name&quot;&gt;hb-play&lt;/"
+"property&gt;\n"
+" &lt;signal handler=&quot;queue_start_clicked_cb&quot; n"
+"ame=&quot;clicked&quot;/&gt;\n"
+" &lt;/object&gt;\n"
+" &lt;packing&gt;\n"
+" &lt;property name=&quot;expand&quot;&gt;False&lt;/prope"
+"rty&gt;\n"
+" &lt;/packing&gt;\n"
+" &lt;/child&gt;\n"
+" &lt;child&gt;\n"
+" &lt;object class=&quot;GtkToolButton&quot; id=&quot;queue"
+"_pause1&quot;&gt;\n"
+" &lt;property name=&quot;visible&quot;&gt;True&lt;/prope"
+"rty&gt;\n"
+" &lt;property name=&quot;sensitive&quot;&gt;False&lt;/pr"
+"operty&gt;\n"
+" &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOT"
+"ION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_B"
+"UTTON_RELEASE_MASK&lt;/property&gt;\n"
+" &lt;property name=&quot;tooltip-text&quot; translatable"
+"=&quot;yes&quot;&gt;Pause Encoding&lt;/property&gt;\n"
+" &lt;property name=&quot;label&quot; translatable=&quot;"
+"yes&quot;&gt;Pause&lt;/property&gt;\n"
+" &lt;property name=&quot;icon_name&quot;&gt;hb-pause&lt;"
+"/property&gt;\n"
+" &lt;signal handler=&quot;queue_pause_clicked_cb&quot; n"
+"ame=&quot;clicked&quot;/&gt;\n"
+" &lt;/object&gt;\n"
+" &lt;packing&gt;\n"
+" &lt;property name=&quot;expand&quot;&gt;False&lt;/prope"
+"rty&gt;\n"
+" &lt;/packing&gt;\n"
+" &lt;/child&gt;\n"
+" &lt;child&gt;\n"
+" &lt;object class=&quot;GtkToolButton&quot; id=&quot;queue"
+"_add&quot;&gt;\n"
+" &lt;property name=&quot;visible&quot;&gt;True&lt;/prope"
+"rty&gt;\n"
+" &lt;property name=&quot;sensitive&quot;&gt;False&lt;/pr"
+"operty&gt;\n"
+" &lt;property name=&quot;events&quot;&gt;GDK_POINTER_MOT"
+"ION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_B"
+"UTTON_RELEASE_MASK&lt;/property&gt;\n"
+" &lt;property name=&quot;tooltip-text&quot; translatable"
+"=&quot;yes&quot;&gt;Add to Queue&lt;/property&gt;\n"
+" &lt;property name=&quot;label&quot; translatable=&quot;"
+"yes&quot;&gt;Add to Queue&lt;/property&gt;\n"
+" &lt;property name=&quot;icon_name&quot;&gt;hb-add-queue"
+"&lt;/property&gt;\n"
+" &lt;signal handler=&quot;queue_add_clicked_cb&quot; nam"
+"e=&quot;clicked&quot;/&gt;\n"
+" &lt;/object&gt;\n"
+" &lt;packing&gt;\n"
+" &lt;property name=&quot;expand&quot;&gt;False&lt;/prope"
+"rty&gt;\n"
+" &lt;/packing&gt;\n"
+" &lt;/child&gt;\n"
+" &lt;child&gt;\n"
+" &lt;object class=&quot;GtkToolButton&quot; id=&quot;show_"
+"queue&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"
+"ION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_B"
+"UTTON_RELEASE_MASK&lt;/property&gt;\n"
+" &lt;property name=&quot;tooltip-text&quot; translatable"
+"=&quot;yes&quot;&gt;Show Queue&lt;/property&gt;\n"
+" &lt;property name=&quot;label&quot; translatable=&quot;"
+"yes&quot;&gt;Show Queue&lt;/property&gt;\n"
+" &lt;property name=&quot;icon_name&quot;&gt;hb-queue&lt;"
+"/property&gt;\n"
+" &lt;signal handler=&quot;show_queue_clicked_cb&quot; na"
+"me=&quot;clicked&quot;/&gt;\n"
+" &lt;/object&gt;\n"
+" &lt;packing&gt;\n"
+" &lt;property name=&quot;expand&quot;&gt;False&lt;/prope"
+"rty&gt;\n"
+" &lt;/packing&gt;\n"
+" &lt;/child&gt;\n"
+" &lt;child&gt;\n"
+" &lt;object class=&quot;GtkToolButton&quot; id=&quot;show_"
+"activity&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"
+"ION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_B"
+"UTTON_RELEASE_MASK&lt;/property&gt;\n"
+" &lt;property name=&quot;tooltip-text&quot; translatable"
+"=&quot;yes&quot;&gt;Show Activity Window&lt;/property&gt;\n"
+" &lt;property name=&quot;label&quot; translatable=&quot;"
+"yes&quot;&gt;Activity Window&lt;/property&gt;\n"
+" &lt;property name=&quot;icon_name&quot;&gt;hb-activity&"
+"lt;/property&gt;\n"
+" &lt;signal handler=&quot;show_activity_clicked_cb&quot;"
+" name=&quot;clicked&quot;/&gt;\n"
+" &lt;/object&gt;\n"
+" &lt;packing&gt;\n"
+" &lt;property name=&quot;expand&quot;&gt;False&lt;/prope"
+"rty&gt;\n"
+" &lt;/packing&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;/packing&gt;\n"
+" &lt;/child&gt;\n"
+"\n"
+" &lt;child&gt;\n"
" &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox1&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"
@@ -498,251 +687,6 @@
" &lt;property name=&quot;visible&quot;&gt;True&lt;/prope"
"rty&gt;\n"
" &lt;child&gt;\n"
-" &lt;object class=&quot;GtkMenuBar&quot; constructor=&"
-"quot;uimanager1&quot; id=&quot;menubar1&quot;&gt;\n"
-" &lt;property name=&quot;visible&quot;&gt;True&lt;/p"
-"roperty&gt;\n"
-" &lt;/object&gt;\n"
-" &lt;packing&gt;\n"
-" &lt;property name=&quot;expand&quot;&gt;False&lt;/p"
-"roperty&gt;\n"
-" &lt;property name=&quot;fill&quot;&gt;False&lt;/pro"
-"perty&gt;\n"
-" &lt;/packing&gt;\n"
-" &lt;/child&gt;\n"
-" &lt;child&gt;\n"
-" &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox3&q"
-"uot;&gt;\n"
-" &lt;property name=&quot;visible&quot;&gt;True&lt;/p"
-"roperty&gt;\n"
-" &lt;property name=&quot;events&quot;&gt;GDK_POINTER"
-"_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | G"
-"DK_BUTTON_RELEASE_MASK&lt;/property&gt;\n"
-" &lt;child&gt;\n"
-" &lt;object class=&quot;GtkToolbar&quot; id=&quot;"
-"toolbar1&quot;&gt;\n"
-" &lt;property name=&quot;visible&quot;&gt;True&l"
-"t;/property&gt;\n"
-" &lt;property name=&quot;toolbar_style&quot;&gt;"
-"GTK_TOOLBAR_BOTH&lt;/property&gt;\n"
-" &lt;property name=&quot;icon_size&quot;&gt;GTK_"
-"ICON_SIZE_DND&lt;/property&gt;\n"
-" &lt;child&gt;\n"
-" &lt;object class=&quot;GtkToolButton&quot; id"
-"=&quot;toolbutton1&quot;&gt;\n"
-" &lt;property name=&quot;visible&quot;&gt;Tr"
-"ue&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_RELEASE_MASK&lt;/property&gt;\n"
-" &lt;property name=&quot;tooltip-text&quot; "
-"translatable=&quot;yes&quot;&gt;Choose Video Source&lt;/property&gt;\n"
-" &lt;property name=&quot;label&quot; transla"
-"table=&quot;yes&quot;&gt;Source&lt;/property&gt;\n"
-" &lt;property name=&quot;icon_name&quot;&gt;"
-"hb-source&lt;/property&gt;\n"
-" &lt;signal handler=&quot;source_button_clic"
-"ked_cb&quot; name=&quot;clicked&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"
-" &lt;child&gt;\n"
-" &lt;object class=&quot;GtkToolButton&quot; id"
-"=&quot;queue_start1&quot;&gt;\n"
-" &lt;property name=&quot;visible&quot;&gt;Tr"
-"ue&lt;/property&gt;\n"
-" &lt;property name=&quot;sensitive&quot;&gt;"
-"False&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_RELEASE_MASK&lt;/property&gt;\n"
-" &lt;property name=&quot;tooltip-text&quot; "
-"translatable=&quot;yes&quot;&gt;Start Encoding&lt;/property&gt;\n"
-" &lt;property name=&quot;label&quot; transla"
-"table=&quot;yes&quot;&gt;Start&lt;/property&gt;\n"
-" &lt;property name=&quot;icon_name&quot;&gt;"
-"hb-play&lt;/property&gt;\n"
-" &lt;signal handler=&quot;queue_start_clicke"
-"d_cb&quot; name=&quot;clicked&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"
-" &lt;child&gt;\n"
-" &lt;object class=&quot;GtkToolButton&quot; id"
-"=&quot;queue_pause1&quot;&gt;\n"
-" &lt;property name=&quot;visible&quot;&gt;Tr"
-"ue&lt;/property&gt;\n"
-" &lt;property name=&quot;sensitive&quot;&gt;"
-"False&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_RELEASE_MASK&lt;/property&gt;\n"
-" &lt;property name=&quot;tooltip-text&quot; "
-"translatable=&quot;yes&quot;&gt;Pause Encoding&lt;/property&gt;\n"
-" &lt;property name=&quot;label&quot; transla"
-"table=&quot;yes&quot;&gt;Pause&lt;/property&gt;\n"
-" &lt;property name=&quot;icon_name&quot;&gt;"
-"hb-pause&lt;/property&gt;\n"
-" &lt;signal handler=&quot;queue_pause_clicke"
-"d_cb&quot; name=&quot;clicked&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"
-" &lt;child&gt;\n"
-" &lt;object class=&quot;GtkToolButton&quot; id"
-"=&quot;queue_add&quot;&gt;\n"
-" &lt;property name=&quot;visible&quot;&gt;Tr"
-"ue&lt;/property&gt;\n"
-" &lt;property name=&quot;sensitive&quot;&gt;"
-"False&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_RELEASE_MASK&lt;/property&gt;\n"
-" &lt;property name=&quot;tooltip-text&quot; "
-"translatable=&quot;yes&quot;&gt;Add to Queue&lt;/property&gt;\n"
-" &lt;property name=&quot;label&quot; transla"
-"table=&quot;yes&quot;&gt;Add to Queue&lt;/property&gt;\n"
-" &lt;property name=&quot;icon_name&quot;&gt;"
-"hb-add-queue&lt;/property&gt;\n"
-" &lt;signal handler=&quot;queue_add_clicked_"
-"cb&quot; name=&quot;clicked&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"
-" &lt;child&gt;\n"
-" &lt;object class=&quot;GtkToolButton&quot; id"
-"=&quot;show_queue&quot;&gt;\n"
-" &lt;property name=&quot;visible&quot;&gt;Tr"
-"ue&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_RELEASE_MASK&lt;/property&gt;\n"
-" &lt;property name=&quot;tooltip-text&quot; "
-"translatable=&quot;yes&quot;&gt;Show Queue&lt;/property&gt;\n"
-" &lt;property name=&quot;label&quot; transla"
-"table=&quot;yes&quot;&gt;Show Queue&lt;/property&gt;\n"
-" &lt;property name=&quot;icon_name&quot;&gt;"
-"hb-queue&lt;/property&gt;\n"
-" &lt;signal handler=&quot;show_queue_clicked"
-"_cb&quot; name=&quot;clicked&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"
-" &lt;child&gt;\n"
-" &lt;object class=&quot;GtkToolButton&quot; id"
-"=&quot;show_activity&quot;&gt;\n"
-" &lt;property name=&quot;visible&quot;&gt;Tr"
-"ue&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_RELEASE_MASK&lt;/property&gt;\n"
-" &lt;property name=&quot;tooltip-text&quot; "
-"translatable=&quot;yes&quot;&gt;Show Activity Window&lt;/property&gt;\n"
-" &lt;property name=&quot;label&quot; transla"
-"table=&quot;yes&quot;&gt;Activity Window&lt;/property&gt;\n"
-" &lt;property name=&quot;icon_name&quot;&gt;"
-"hb-activity&lt;/property&gt;\n"
-" &lt;signal handler=&quot;show_activity_clic"
-"ked_cb&quot; name=&quot;clicked&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"
-" &lt;/object&gt;\n"
-" &lt;/child&gt;\n"
-" &lt;child&gt;\n"
-" &lt;object class=&quot;GtkHBox&quot; id=&quot;hbo"
-"x48&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"
-"NTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK"
-" | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;\n"
-" &lt;child&gt;\n"
-" &lt;placeholder/&gt;\n"
-" &lt;/child&gt;\n"
-" &lt;child&gt;\n"
-" &lt;placeholder/&gt;\n"
-" &lt;/child&gt;\n"
-" &lt;child&gt;\n"
-" &lt;object class=&quot;GtkCheckButton&quot; i"
-"d=&quot;show_presets&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;events&quot;&gt;GDK"
-"_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_"
-"MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;\n"
-" &lt;property name=&quot;tooltip-text&quot; "
-"translatable=&quot;yes&quot;&gt;Show/Hide the presets list&lt;/property"
-"&gt;\n"
-" &lt;property name=&quot;relief&quot;&gt;GTK"
-"_RELIEF_NONE&lt;/property&gt;\n"
-" &lt;property name=&quot;active&quot;&gt;Tru"
-"e&lt;/property&gt;\n"
-" &lt;property name=&quot;draw_indicator&quot"
-";&gt;True&lt;/property&gt;\n"
-" &lt;signal handler=&quot;show_presets_toggl"
-"ed_cb&quot; name=&quot;toggled&quot;/&gt;\n"
-" &lt;child&gt;\n"
-" &lt;object class=&quot;GtkImage&quot; id="
-"&quot;drawerimage&quot;&gt;\n"
-" &lt;property name=&quot;visible&quot;&g"
-"t;True&lt;/property&gt;\n"
-" &lt;property name=&quot;events&quot;&gt"
-";GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PR"
-"ESS_MASK | GDK_BUTTON_RELEASE_MASK&lt;/property&gt;\n"
-" &lt;property name=&quot;icon_size&quot;"
-"&gt;5&lt;/property&gt;\n"
-" &lt;property name=&quot;icon_name&quot;"
-"&gt;hb-drawer&lt;/property&gt;\n"
-" &lt;/object&gt;\n"
-" &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;2"
-"&lt;/property&gt;\n"
-" &lt;/packing&gt;\n"
-" &lt;/child&gt;\n"
-" &lt;/object&gt;\n"
-" &lt;packing&gt;\n"
-" &lt;property name=&quot;expand&quot;&gt;False&l"
-"t;/property&gt;\n"
-" &lt;property name=&quot;position&quot;&gt;1&lt;"
-"/property&gt;\n"
-" &lt;/packing&gt;\n"
-" &lt;/child&gt;\n"
-" &lt;/object&gt;\n"
-" &lt;packing&gt;\n"
-" &lt;property name=&quot;expand&quot;&gt;False&lt;/p"
-"roperty&gt;\n"
-" &lt;property name=&quot;fill&quot;&gt;False&lt;/pro"
-"perty&gt;\n"
-" &lt;property name=&quot;position&quot;&gt;1&lt;/pro"
-"perty&gt;\n"
-" &lt;/packing&gt;\n"
-" &lt;/child&gt;\n"
-" &lt;child&gt;\n"
" &lt;object class=&quot;GtkFrame&quot; id=&quot;frame1"
"&quot;&gt;\n"
" &lt;property name=&quot;visible&quot;&gt;True&lt;/p"
@@ -1035,7 +979,7 @@
" &lt;packing&gt;\n"
" &lt;property name=&quot;expand&quot;&gt;False&lt;/p"
"roperty&gt;\n"
-" &lt;property name=&quot;position&quot;&gt;2&lt;/pro"
+" &lt;property name=&quot;position&quot;&gt;0&lt;/pro"
"perty&gt;\n"
" &lt;/packing&gt;\n"
" &lt;/child&gt;\n"
@@ -1048,7 +992,7 @@
" &lt;packing&gt;\n"
" &lt;property name=&quot;expand&quot;&gt;False&lt;/p"
"roperty&gt;\n"
-" &lt;property name=&quot;position&quot;&gt;3&lt;/pro"
+" &lt;property name=&quot;position&quot;&gt;1&lt;/pro"
"perty&gt;\n"
" &lt;/packing&gt;\n"
" &lt;/child&gt;\n"
@@ -1311,20 +1255,7 @@
" &lt;packing&gt;\n"
" &lt;property name=&quot;expand&quot;&gt;False&lt;/p"
"roperty&gt;\n"
-" &lt;property name=&quot;position&quot;&gt;4&lt;/pro"
-"perty&gt;\n"
-" &lt;/packing&gt;\n"
-" &lt;/child&gt;\n"
-" &lt;child&gt;\n"
-" &lt;object class=&quot;GtkHSeparator&quot; id=&quot;h"
-"separator2&quot;&gt;\n"
-" &lt;property name=&quot;visible&quot;&gt;True&lt;/p"
-"roperty&gt;\n"
-" &lt;/object&gt;\n"
-" &lt;packing&gt;\n"
-" &lt;property name=&quot;expand&quot;&gt;False&lt;/p"
-"roperty&gt;\n"
-" &lt;property name=&quot;position&quot;&gt;5&lt;/pro"
+" &lt;property name=&quot;position&quot;&gt;2&lt;/pro"
"perty&gt;\n"
" &lt;/packing&gt;\n"
" &lt;/child&gt;\n"
@@ -4888,8 +4819,8 @@
" &lt;child&gt;\n"
" &lt;object class=&quot;GtkFrame&quot; id=&quot;presets_frame&"
"quot;&gt;\n"
-" &lt;property name=&quot;visible&quot;&gt;True&lt;/property&"
-"gt;\n"
+" &lt;property name=&quot;visible&quot;&gt;False&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_BUTTO"
"N_RELEASE_MASK&lt;/property&gt;\n"
@@ -4897,8 +4828,8 @@
"y&gt;\n"
" &lt;property name=&quot;label_xalign&quot;&gt;0&lt;/propert"
"y&gt;\n"
-" &lt;property name=&quot;shadow_type&quot;&gt;GTK_SHADOW_ETC"
-"HED_OUT&lt;/property&gt;\n"
+" &lt;property name=&quot;shadow_type&quot;&gt;out&lt;/proper"
+"ty&gt;\n"
" &lt;signal handler=&quot;presets_frame_size_allocate_cb&quo"
"t; name=&quot;size_allocate&quot;/&gt;\n"
" &lt;child&gt;\n"
@@ -5156,7 +5087,14 @@
" &lt;/packing&gt;\n"
" &lt;/child&gt;\n"
" &lt;/object&gt;\n"
+" &lt;packing&gt;\n"
+" &lt;property name=&quot;position&quot;&gt;2&lt;/property&gt;\n"
+" &lt;/packing&gt;\n"
" &lt;/child&gt;\n"
+"\n"
+" &lt;/object&gt;\n"
+" &lt;/child&gt;\n"
+"\n"
" &lt;/object&gt;\n"
" &lt;object class=&quot;GtkDialog&quot; id=&quot;prefs_dialog&quot;&gt"
";\n"
diff --git a/gtk/src/resources.plist b/gtk/src/resources.plist
index 6ad8a9e08..0ef336a7b 100644
--- a/gtk/src/resources.plist
+++ b/gtk/src/resources.plist
@@ -269,6 +269,15 @@
&lt;/object&gt;
&lt;/child&gt;
&lt;child&gt;
+ &lt;object class=&quot;GtkToggleAction&quot; id=&quot;show_presets&quot;&gt;
+ &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
+ &lt;property name=&quot;active&quot;&gt;False&lt;/property&gt;
+ &lt;property name=&quot;name&quot;&gt;show_presets&lt;/property&gt;
+ &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Show Presets&lt;/property&gt;
+ &lt;signal handler=&quot;show_presets_toggled_cb&quot; name=&quot;toggled&quot;/&gt;
+ &lt;/object&gt;
+ &lt;/child&gt;
+ &lt;child&gt;
&lt;object class=&quot;GtkAction&quot; id=&quot;show_activity_menu&quot;&gt;
&lt;property name=&quot;icon-name&quot;&gt;hb-activity&lt;/property&gt;
&lt;property name=&quot;name&quot;&gt;show_activity_menu&lt;/property&gt;
@@ -331,6 +340,7 @@
&lt;/menu&gt;
&lt;menu action=&quot;menuitem3&quot;&gt;
&lt;menuitem action=&quot;hbfd&quot;/&gt;
+ &lt;menuitem action=&quot;show_presets&quot;/&gt;
&lt;menuitem action=&quot;show_activity_menu&quot;/&gt;
&lt;menuitem action=&quot;show_preview_menu&quot;/&gt;
&lt;menuitem action=&quot;show_queue_menu&quot;/&gt;
@@ -351,6 +361,111 @@
&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;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;GtkMenuBar&quot; constructor=&quot;uimanager1&quot; id=&quot;menubar1&quot;&gt;
+ &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
+ &lt;/object&gt;
+ &lt;packing&gt;
+ &lt;property name=&quot;expand&quot;&gt;False&lt;/property&gt;
+ &lt;property name=&quot;fill&quot;&gt;False&lt;/property&gt;
+ &lt;/packing&gt;
+ &lt;/child&gt;
+ &lt;child&gt;
+ &lt;object class=&quot;GtkToolbar&quot; id=&quot;toolbar1&quot;&gt;
+ &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
+ &lt;property name=&quot;toolbar_style&quot;&gt;GTK_TOOLBAR_BOTH&lt;/property&gt;
+ &lt;property name=&quot;icon_size&quot;&gt;GTK_ICON_SIZE_DND&lt;/property&gt;
+ &lt;child&gt;
+ &lt;object class=&quot;GtkToolButton&quot; id=&quot;toolbutton1&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;tooltip-text&quot; translatable=&quot;yes&quot;&gt;Choose Video Source&lt;/property&gt;
+ &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Source&lt;/property&gt;
+ &lt;property name=&quot;icon_name&quot;&gt;hb-source&lt;/property&gt;
+ &lt;signal handler=&quot;source_button_clicked_cb&quot; name=&quot;clicked&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;GtkToolButton&quot; id=&quot;queue_start1&quot;&gt;
+ &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
+ &lt;property name=&quot;sensitive&quot;&gt;False&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;tooltip-text&quot; translatable=&quot;yes&quot;&gt;Start Encoding&lt;/property&gt;
+ &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Start&lt;/property&gt;
+ &lt;property name=&quot;icon_name&quot;&gt;hb-play&lt;/property&gt;
+ &lt;signal handler=&quot;queue_start_clicked_cb&quot; name=&quot;clicked&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;GtkToolButton&quot; id=&quot;queue_pause1&quot;&gt;
+ &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
+ &lt;property name=&quot;sensitive&quot;&gt;False&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;tooltip-text&quot; translatable=&quot;yes&quot;&gt;Pause Encoding&lt;/property&gt;
+ &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Pause&lt;/property&gt;
+ &lt;property name=&quot;icon_name&quot;&gt;hb-pause&lt;/property&gt;
+ &lt;signal handler=&quot;queue_pause_clicked_cb&quot; name=&quot;clicked&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;GtkToolButton&quot; id=&quot;queue_add&quot;&gt;
+ &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
+ &lt;property name=&quot;sensitive&quot;&gt;False&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;tooltip-text&quot; translatable=&quot;yes&quot;&gt;Add to Queue&lt;/property&gt;
+ &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Add to Queue&lt;/property&gt;
+ &lt;property name=&quot;icon_name&quot;&gt;hb-add-queue&lt;/property&gt;
+ &lt;signal handler=&quot;queue_add_clicked_cb&quot; name=&quot;clicked&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;GtkToolButton&quot; id=&quot;show_queue&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;tooltip-text&quot; translatable=&quot;yes&quot;&gt;Show Queue&lt;/property&gt;
+ &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Show Queue&lt;/property&gt;
+ &lt;property name=&quot;icon_name&quot;&gt;hb-queue&lt;/property&gt;
+ &lt;signal handler=&quot;show_queue_clicked_cb&quot; name=&quot;clicked&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;GtkToolButton&quot; id=&quot;show_activity&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;tooltip-text&quot; translatable=&quot;yes&quot;&gt;Show Activity Window&lt;/property&gt;
+ &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Activity Window&lt;/property&gt;
+ &lt;property name=&quot;icon_name&quot;&gt;hb-activity&lt;/property&gt;
+ &lt;signal handler=&quot;show_activity_clicked_cb&quot; name=&quot;clicked&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;/object&gt;
+ &lt;packing&gt;
+ &lt;property name=&quot;position&quot;&gt;1&lt;/property&gt;
+ &lt;/packing&gt;
+ &lt;/child&gt;
+
+ &lt;child&gt;
&lt;object class=&quot;GtkHBox&quot; id=&quot;hbox1&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;
@@ -361,154 +476,6 @@
&lt;object class=&quot;GtkVBox&quot; id=&quot;vbox2&quot;&gt;
&lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
&lt;child&gt;
- &lt;object class=&quot;GtkMenuBar&quot; constructor=&quot;uimanager1&quot; id=&quot;menubar1&quot;&gt;
- &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
- &lt;/object&gt;
- &lt;packing&gt;
- &lt;property name=&quot;expand&quot;&gt;False&lt;/property&gt;
- &lt;property name=&quot;fill&quot;&gt;False&lt;/property&gt;
- &lt;/packing&gt;
- &lt;/child&gt;
- &lt;child&gt;
- &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox3&quot;&gt;
- &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
- &lt;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;GtkToolbar&quot; id=&quot;toolbar1&quot;&gt;
- &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
- &lt;property name=&quot;toolbar_style&quot;&gt;GTK_TOOLBAR_BOTH&lt;/property&gt;
- &lt;property name=&quot;icon_size&quot;&gt;GTK_ICON_SIZE_DND&lt;/property&gt;
- &lt;child&gt;
- &lt;object class=&quot;GtkToolButton&quot; id=&quot;toolbutton1&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;tooltip-text&quot; translatable=&quot;yes&quot;&gt;Choose Video Source&lt;/property&gt;
- &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Source&lt;/property&gt;
- &lt;property name=&quot;icon_name&quot;&gt;hb-source&lt;/property&gt;
- &lt;signal handler=&quot;source_button_clicked_cb&quot; name=&quot;clicked&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;GtkToolButton&quot; id=&quot;queue_start1&quot;&gt;
- &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
- &lt;property name=&quot;sensitive&quot;&gt;False&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;tooltip-text&quot; translatable=&quot;yes&quot;&gt;Start Encoding&lt;/property&gt;
- &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Start&lt;/property&gt;
- &lt;property name=&quot;icon_name&quot;&gt;hb-play&lt;/property&gt;
- &lt;signal handler=&quot;queue_start_clicked_cb&quot; name=&quot;clicked&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;GtkToolButton&quot; id=&quot;queue_pause1&quot;&gt;
- &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
- &lt;property name=&quot;sensitive&quot;&gt;False&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;tooltip-text&quot; translatable=&quot;yes&quot;&gt;Pause Encoding&lt;/property&gt;
- &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Pause&lt;/property&gt;
- &lt;property name=&quot;icon_name&quot;&gt;hb-pause&lt;/property&gt;
- &lt;signal handler=&quot;queue_pause_clicked_cb&quot; name=&quot;clicked&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;GtkToolButton&quot; id=&quot;queue_add&quot;&gt;
- &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
- &lt;property name=&quot;sensitive&quot;&gt;False&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;tooltip-text&quot; translatable=&quot;yes&quot;&gt;Add to Queue&lt;/property&gt;
- &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Add to Queue&lt;/property&gt;
- &lt;property name=&quot;icon_name&quot;&gt;hb-add-queue&lt;/property&gt;
- &lt;signal handler=&quot;queue_add_clicked_cb&quot; name=&quot;clicked&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;GtkToolButton&quot; id=&quot;show_queue&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;tooltip-text&quot; translatable=&quot;yes&quot;&gt;Show Queue&lt;/property&gt;
- &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Show Queue&lt;/property&gt;
- &lt;property name=&quot;icon_name&quot;&gt;hb-queue&lt;/property&gt;
- &lt;signal handler=&quot;show_queue_clicked_cb&quot; name=&quot;clicked&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;GtkToolButton&quot; id=&quot;show_activity&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;tooltip-text&quot; translatable=&quot;yes&quot;&gt;Show Activity Window&lt;/property&gt;
- &lt;property name=&quot;label&quot; translatable=&quot;yes&quot;&gt;Activity Window&lt;/property&gt;
- &lt;property name=&quot;icon_name&quot;&gt;hb-activity&lt;/property&gt;
- &lt;signal handler=&quot;show_activity_clicked_cb&quot; name=&quot;clicked&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;/object&gt;
- &lt;/child&gt;
- &lt;child&gt;
- &lt;object class=&quot;GtkHBox&quot; id=&quot;hbox48&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;placeholder/&gt;
- &lt;/child&gt;
- &lt;child&gt;
- &lt;placeholder/&gt;
- &lt;/child&gt;
- &lt;child&gt;
- &lt;object class=&quot;GtkCheckButton&quot; id=&quot;show_presets&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;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;tooltip-text&quot; translatable=&quot;yes&quot;&gt;Show/Hide the presets list&lt;/property&gt;
- &lt;property name=&quot;relief&quot;&gt;GTK_RELIEF_NONE&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 handler=&quot;show_presets_toggled_cb&quot; name=&quot;toggled&quot;/&gt;
- &lt;child&gt;
- &lt;object class=&quot;GtkImage&quot; id=&quot;drawerimage&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;icon_size&quot;&gt;5&lt;/property&gt;
- &lt;property name=&quot;icon_name&quot;&gt;hb-drawer&lt;/property&gt;
- &lt;/object&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;2&lt;/property&gt;
- &lt;/packing&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;1&lt;/property&gt;
- &lt;/packing&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;fill&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;
&lt;object class=&quot;GtkFrame&quot; id=&quot;frame1&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;
@@ -692,7 +659,7 @@
&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;property name=&quot;position&quot;&gt;0&lt;/property&gt;
&lt;/packing&gt;
&lt;/child&gt;
&lt;child&gt;
@@ -701,7 +668,7 @@
&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;property name=&quot;position&quot;&gt;1&lt;/property&gt;
&lt;/packing&gt;
&lt;/child&gt;
&lt;child&gt;
@@ -864,16 +831,7 @@
&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;
- &lt;child&gt;
- &lt;object class=&quot;GtkHSeparator&quot; id=&quot;hseparator2&quot;&gt;
- &lt;property name=&quot;visible&quot;&gt;True&lt;/property&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;property name=&quot;position&quot;&gt;2&lt;/property&gt;
&lt;/packing&gt;
&lt;/child&gt;
&lt;/object&gt;
@@ -2999,11 +2957,11 @@ no-fast-pskip=0:no-dct-decimate=0:cabac=1&lt;/property&gt;
&lt;/child&gt;
&lt;child&gt;
&lt;object class=&quot;GtkFrame&quot; id=&quot;presets_frame&quot;&gt;
- &lt;property name=&quot;visible&quot;&gt;True&lt;/property&gt;
+ &lt;property name=&quot;visible&quot;&gt;False&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;border_width&quot;&gt;3&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_ETCHED_OUT&lt;/property&gt;
+ &lt;property name=&quot;shadow_type&quot;&gt;out&lt;/property&gt;
&lt;signal handler=&quot;presets_frame_size_allocate_cb&quot; name=&quot;size_allocate&quot;/&gt;
&lt;child&gt;
&lt;object class=&quot;GtkAlignment&quot; id=&quot;alignment21&quot;&gt;
@@ -3157,7 +3115,14 @@ no-fast-pskip=0:no-dct-decimate=0:cabac=1&lt;/property&gt;
&lt;/packing&gt;
&lt;/child&gt;
&lt;/object&gt;
+ &lt;packing&gt;
+ &lt;property name=&quot;position&quot;&gt;2&lt;/property&gt;
+ &lt;/packing&gt;
+ &lt;/child&gt;
+
+ &lt;/object&gt;
&lt;/child&gt;
+
&lt;/object&gt;
&lt;object class=&quot;GtkDialog&quot; id=&quot;prefs_dialog&quot;&gt;
&lt;property name=&quot;border_width&quot;&gt;5&lt;/property&gt;