diff options
author | jstebbins <[email protected]> | 2014-01-15 00:28:20 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-01-15 00:28:20 +0000 |
commit | b67efeaaa45d2954197d60b27e9158defa6dc8cc (patch) | |
tree | 2994c91f66b4905c42f77f1b0352d182d8b85eb0 /gtk | |
parent | f8cacd9c5edbc626e41aaa2d1767a5277a7e290c (diff) |
LinGui: fix deprecation of GtkAction and GtkUIManager
Farely large change since these were the old way of creating menus :-\
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5974 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/src/callbacks.c | 134 | ||||
-rw-r--r-- | gtk/src/ghb.ui | 8047 | ||||
-rw-r--r-- | gtk/src/main.c | 4 | ||||
-rw-r--r-- | gtk/src/makedeps.py | 1 | ||||
-rw-r--r-- | gtk/src/presets.c | 6 | ||||
-rw-r--r-- | gtk/src/queuehandler.c | 65 | ||||
-rw-r--r-- | gtk/src/settings.c | 12 |
7 files changed, 4604 insertions, 3665 deletions
diff --git a/gtk/src/callbacks.c b/gtk/src/callbacks.c index 01a935338..bfb67bf6f 100644 --- a/gtk/src/callbacks.c +++ b/gtk/src/callbacks.c @@ -245,27 +245,19 @@ ghb_check_dependency( continue; } sensitive = dep_check(ud, dep_name, &hide); - if (GTK_IS_ACTION(dep_object)) + gtk_widget_set_sensitive(GTK_WIDGET(dep_object), sensitive); + if (!sensitive && hide) { - gtk_action_set_sensitive(GTK_ACTION(dep_object), sensitive); - gtk_action_set_visible(GTK_ACTION(dep_object), sensitive || !hide); + if (gtk_widget_get_visible(GTK_WIDGET(dep_object))) + { + gtk_widget_hide(GTK_WIDGET(dep_object)); + } } else { - gtk_widget_set_sensitive(GTK_WIDGET(dep_object), sensitive); - if (!sensitive && hide) - { - if (gtk_widget_get_visible(GTK_WIDGET(dep_object))) - { - gtk_widget_hide(GTK_WIDGET(dep_object)); - } - } - else + if (!gtk_widget_get_visible(GTK_WIDGET(dep_object))) { - if (!gtk_widget_get_visible(GTK_WIDGET(dep_object))) - { - gtk_widget_show_now(GTK_WIDGET(dep_object)); - } + gtk_widget_show_now(GTK_WIDGET(dep_object)); } } g_free(dep_name); @@ -298,22 +290,14 @@ ghb_check_all_depencencies(signal_user_data_t *ud) continue; } sensitive = dep_check(ud, dep_name, &hide); - if (GTK_IS_ACTION(dep_object)) + gtk_widget_set_sensitive(GTK_WIDGET(dep_object), sensitive); + if (!sensitive && hide) { - gtk_action_set_sensitive(GTK_ACTION(dep_object), sensitive); - gtk_action_set_visible(GTK_ACTION(dep_object), sensitive || !hide); + gtk_widget_hide(GTK_WIDGET(dep_object)); } else { - gtk_widget_set_sensitive(GTK_WIDGET(dep_object), sensitive); - if (!sensitive && hide) - { - gtk_widget_hide(GTK_WIDGET(dep_object)); - } - else - { - gtk_widget_show_now(GTK_WIDGET(dep_object)); - } + gtk_widget_show_now(GTK_WIDGET(dep_object)); } } } @@ -895,7 +879,6 @@ start_scan( gint preview_count) { GtkWidget *widget; - GtkAction *action; ghb_status_t status; ghb_get_status(&status); @@ -908,10 +891,10 @@ start_scan( gtk_tool_item_set_tooltip_text(GTK_TOOL_ITEM(widget), _("Stop Scan")); //gtk_widget_set_sensitive(widget, FALSE); - action = GHB_ACTION(ud->builder, "source_action"); - gtk_action_set_sensitive(action, FALSE); - action = GHB_ACTION(ud->builder, "source_single_action"); - gtk_action_set_sensitive(action, FALSE); + widget = GHB_WIDGET(ud->builder, "source_open"); + gtk_widget_set_sensitive(widget, FALSE); + widget = GHB_WIDGET(ud->builder, "source_title_open"); + gtk_widget_set_sensitive(widget, FALSE); ghb_backend_scan(path, titlenum, preview_count, 90000L * ghb_settings_get_int64(ud->settings, "MinTitleDuration")); } @@ -1059,13 +1042,13 @@ single_title_source_cb(GtkButton *button, signal_user_data_t *ud) } G_MODULE_EXPORT void -dvd_source_activate_cb(GtkAction *action, signal_user_data_t *ud) +dvd_source_activate_cb(GtkWidget *widget, signal_user_data_t *ud) { const gchar *filename; gchar *sourcename; sourcename = ghb_settings_get_string(ud->settings, "scan_source"); - filename = gtk_buildable_get_name(GTK_BUILDABLE(action)); + filename = gtk_buildable_get_name(GTK_BUILDABLE(widget)); ghb_do_scan(ud, filename, 0, TRUE); if (strcmp(sourcename, filename) != 0) { @@ -2914,17 +2897,16 @@ ghb_backend_events(signal_user_data_t *ud) GtkLabel *label; GtkWidget *widget; - GtkAction *action; widget = GHB_WIDGET(ud->builder, "sourcetoolbutton"); gtk_tool_button_set_icon_name(GTK_TOOL_BUTTON(widget), "hb-source"); gtk_tool_button_set_label(GTK_TOOL_BUTTON(widget), _("Source")); gtk_tool_item_set_tooltip_text(GTK_TOOL_ITEM(widget), _("Choose Video Source")); - action = GHB_ACTION(ud->builder, "source_action"); - gtk_action_set_sensitive(action, TRUE); - action = GHB_ACTION(ud->builder, "source_single_action"); - gtk_action_set_sensitive(action, TRUE); + widget = GHB_WIDGET(ud->builder, "source_open"); + gtk_widget_set_sensitive(widget, TRUE); + widget = GHB_WIDGET(ud->builder, "source_title_open"); + gtk_widget_set_sensitive(widget, TRUE); source = ghb_settings_get_string(ud->settings, "scan_source"); update_source_label(ud, source, FALSE); @@ -4016,76 +3998,74 @@ hbfd_feature_changed_cb(GtkWidget *widget, signal_user_data_t *ud) ghb_pref_save(ud->settings, name); gboolean hbfd = ghb_settings_get_boolean(ud->settings, "hbfd_feature"); - GtkAction *action; if (hbfd) { const GValue *val; val = ghb_settings_get_value(ud->settings, "hbfd"); ghb_ui_update(ud, "hbfd", val); } - action = GHB_ACTION (ud->builder, "hbfd"); - gtk_action_set_visible(action, hbfd); + widget = GHB_WIDGET (ud->builder, "hbfd"); + gtk_widget_set_visible(widget, hbfd); } gboolean ghb_file_menu_add_dvd(signal_user_data_t *ud) { GList *link, *drives; - static GtkActionGroup *agroup = NULL; - static gint merge_id; + static GList *dvd_items = NULL; g_debug("ghb_file_menu_add_dvd()"); + GtkMenu *menu = GTK_MENU(GHB_WIDGET(ud->builder, "file_submenu")); + + // Clear previous dvd items from list + link = dvd_items; + while (link != NULL) + { + GtkWidget * widget = GTK_WIDGET(link->data); + // widget_destroy automatically removes widget from container. + gtk_widget_destroy(widget); + link = link->next; + } + g_list_free(dvd_items); + dvd_items = NULL; + + int pos = 5; link = drives = dvd_device_list(); if (drives != NULL) { - GtkUIManager *ui = GTK_UI_MANAGER( - gtk_builder_get_object(ud->builder, "uimanager1")); - - if (agroup == NULL) - { - agroup = gtk_action_group_new("dvdgroup"); - gtk_ui_manager_insert_action_group(ui, agroup, 0); - } - else - gtk_ui_manager_remove_ui(ui, merge_id); + GtkWidget *widget = gtk_separator_menu_item_new(); + dvd_items = g_list_append(dvd_items, (gpointer)widget); - merge_id = gtk_ui_manager_new_merge_id(ui); - // Add separator - gtk_ui_manager_add_ui(ui, merge_id, - "ui/menubar1/menuitem1/quit1", "dvdsep", NULL, - GTK_UI_MANAGER_SEPARATOR, TRUE); + gtk_menu_shell_insert(GTK_MENU_SHELL(menu), widget, pos++); + gtk_widget_set_visible(widget, TRUE); while (link != NULL) { - GtkAction *action; + GtkWidget *widget; gchar *drive = get_dvd_device_name(link->data); gchar *name = get_dvd_volume_name(link->data); - action = gtk_action_group_get_action(agroup, drive); - if (action != NULL) - { - gtk_action_group_remove_action(agroup, action); - g_object_unref(G_OBJECT(action)); - } - // Create action for this drive - action = gtk_action_new(drive, name, - "Scan this DVD source", "gtk-cdrom"); - // Add action to action group - gtk_action_group_add_action_with_accel(agroup, action, NULL); - // Add to ui manager - gtk_ui_manager_add_ui(ui, merge_id, - "ui/menubar1/menuitem1/dvdsep", drive, drive, - GTK_UI_MANAGER_AUTO, TRUE); + widget = gtk_menu_item_new_with_label(name); + gtk_buildable_set_name(GTK_BUILDABLE(widget), drive); + gtk_widget_set_tooltip_text(widget, _("Scan this DVD source")); + + dvd_items = g_list_append(dvd_items, (gpointer)widget); + gtk_menu_shell_insert(GTK_MENU_SHELL(menu), widget, pos++); + + gtk_widget_set_visible(widget, TRUE); + // Connect signal to action (menu item) - g_signal_connect(action, "activate", + g_signal_connect(widget, "activate", (GCallback)dvd_source_activate_cb, ud); g_free(name); g_free(drive); free_drive(link->data); link = link->next; } + g_list_free(drives); } + return FALSE; } diff --git a/gtk/src/ghb.ui b/gtk/src/ghb.ui index 097aba065..ea93cc876 100644 --- a/gtk/src/ghb.ui +++ b/gtk/src/ghb.ui @@ -1,941 +1,1126 @@ -<?xml version="1.0"?> -<!--*- mode: xml -*--> +<?xml version="1.0" encoding="UTF-8"?> +<!-- Generated with glade 3.16.0 on Tue Jan 14 14:36:08 2014 --> <interface> - <object class="GtkLabel" id="SubTrackLabel"> - <property name="visible">True</property> - <property name="label" translatable="yes"><b>Track</b></property> - <property name="tooltip-text" translatable="yes">The source subtitle track - -You can choose any of the subtitles -recognized in your source file. - -In addition, there is a special track option -"Foreign Audio Search". This option will add -an extra pass to the encode that searches for -subtitles that may correspond to a foreign -language scene. This option is best used in -conjunction with the "Forced" option.</property> - <property name="use_markup">True</property> - </object> - <object class="GtkLabel" id="SubForcedLabel"> - <property name="visible">True</property> - <property name="label" translatable="yes"><b>Forced Only</b></property> - <property name="tooltip-text" translatable="yes">Use only subtitles that have been flagged -as forced in the source subtitle track - -"Forced" subtitles are usually used to show -subtitles during scenes where someone is speaking -a foreign language.</property> - <property name="use_markup">True</property> - </object> + <!-- interface-requires gtk+ 3.0 --> + <object class="GtkFileFilter" id="SourceFilterAVI"/> + <object class="GtkFileFilter" id="SourceFilterAll"/> + <object class="GtkFileFilter" id="SourceFilterEVO"/> + <object class="GtkFileFilter" id="SourceFilterFLV"/> + <object class="GtkFileFilter" id="SourceFilterMKV"/> + <object class="GtkFileFilter" id="SourceFilterMOV"/> + <object class="GtkFileFilter" id="SourceFilterMP4"/> + <object class="GtkFileFilter" id="SourceFilterMPG"/> + <object class="GtkFileFilter" id="SourceFilterOGG"/> + <object class="GtkFileFilter" id="SourceFilterTS"/> + <object class="GtkFileFilter" id="SourceFilterVOB"/> + <object class="GtkFileFilter" id="SourceFilterVideo"/> + <object class="GtkFileFilter" id="SourceFilterWMV"/> <object class="GtkLabel" id="SubBurnedLabel"> <property name="visible">True</property> - <property name="label" translatable="yes"><b>Burned In</b></property> - <property name="tooltip-text" translatable="yes">Render the subtitle over the video. + <property name="can_focus">False</property> + <property name="tooltip_text" translatable="yes">Render the subtitle over the video. The subtitle will be part of the video and can not be disabled.</property> + <property name="label" translatable="yes"><b>Burned In</b></property> <property name="use_markup">True</property> </object> <object class="GtkLabel" id="SubDefaultLabel"> <property name="visible">True</property> - <property name="label" translatable="yes"><b>Default</b></property> - <property name="tooltip-text" translatable="yes">Set the default output subtitle track. + <property name="can_focus">False</property> + <property name="tooltip_text" translatable="yes">Set the default output subtitle track. Most players will automatically display this subtitle track whenever the video is played. This is usefule for creating a "forced" track in your output.</property> + <property name="label" translatable="yes"><b>Default</b></property> + <property name="use_markup">True</property> + </object> + <object class="GtkLabel" id="SubForcedLabel"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="tooltip_text" translatable="yes">Use only subtitles that have been flagged +as forced in the source subtitle track + +"Forced" subtitles are usually used to show +subtitles during scenes where someone is speaking +a foreign language.</property> + <property name="label" translatable="yes"><b>Forced Only</b></property> <property name="use_markup">True</property> </object> <object class="GtkLabel" id="SubSRTOffsetLabel"> <property name="visible">True</property> - <property name="label" translatable="yes"><b>SRT Offset</b></property> - <property name="tooltip-text" translatable="yes">Add (or subtract) an offset (in milliseconds) + <property name="can_focus">False</property> + <property name="tooltip_text" translatable="yes">Add (or subtract) an offset (in milliseconds) to the start of the SRT subtitle track. Often, the start of an external SRT file does not coincide with the start of the video. This setting allows you to synchronize the files.</property> + <property name="label" translatable="yes"><b>SRT Offset</b></property> + <property name="use_markup">True</property> + </object> + <object class="GtkLabel" id="SubTrackLabel"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="tooltip_text" translatable="yes">The source subtitle track + +You can choose any of the subtitles +recognized in your source file. + +In addition, there is a special track option +"Foreign Audio Search". This option will add +an extra pass to the encode that searches for +subtitles that may correspond to a foreign +language scene. This option is best used in +conjunction with the "Forced" option.</property> + <property name="label" translatable="yes"><b>Track</b></property> <property name="use_markup">True</property> </object> + <object class="GtkWindow" id="activity_window"> + <property name="can_focus">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="default_width">800</property> + <property name="default_height">600</property> + <property name="type_hint">utility</property> + <property name="skip_taskbar_hint">True</property> + <property name="skip_pager_hint">True</property> + <property name="transient_for">hb_window</property> + <signal name="delete-event" handler="activity_window_delete_cb" swapped="no"/> + <child> + <object class="GtkVBox" id="vbox37"> + <property name="visible">True</property> + <property name="can_focus">False</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> + <object class="GtkLabel" id="activity_location"> + <property name="visible">True</property> + <property name="can_focus">False</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="padding">5</property> + <property name="position">1</property> + </packing> + </child> + <child> + <object class="GtkScrolledWindow" id="activity_scroll"> + <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="shadow_type">in</property> + <child> + <object class="GtkTextView" id="activity_view"> + <property name="width_request">600</property> + <property name="height_request">600</property> + <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="editable">False</property> + <property name="wrap_mode">char</property> + <property name="cursor_visible">False</property> + </object> + </child> + </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">2</property> + </packing> + </child> + <child> + <placeholder/> + </child> + </object> + </child> + </object> <object class="GtkAdjustment" id="adjustment1"> - <property name="upper">100</property> <property name="lower">1</property> - <property name="page_increment">1</property> - <property name="step_increment">1</property> - <property name="page_size">0</property> + <property name="upper">100</property> <property name="value">1</property> + <property name="step_increment">1</property> + <property name="page_increment">1</property> </object> <object class="GtkAdjustment" id="adjustment10"> - <property name="upper">64</property> <property name="lower">4</property> - <property name="page_increment">10</property> - <property name="step_increment">1</property> - <property name="page_size">0</property> + <property name="upper">64</property> <property name="value">16</property> + <property name="step_increment">1</property> + <property name="page_increment">10</property> </object> <object class="GtkAdjustment" id="adjustment11"> - <property name="upper">6</property> <property name="lower">-6</property> - <property name="page_increment">10</property> + <property name="upper">6</property> <property name="step_increment">1</property> - <property name="page_size">0</property> - <property name="value">0</property> + <property name="page_increment">10</property> </object> <object class="GtkAdjustment" id="adjustment12"> - <property name="upper">6</property> <property name="lower">-6</property> - <property name="page_increment">10</property> + <property name="upper">6</property> <property name="step_increment">1</property> - <property name="page_size">0</property> - <property name="value">0</property> + <property name="page_increment">10</property> </object> <object class="GtkAdjustment" id="adjustment13"> <property name="upper">1000</property> - <property name="lower">0</property> - <property name="page_increment">10</property> <property name="step_increment">1</property> - <property name="page_size">0</property> - <property name="value">0</property> + <property name="page_increment">10</property> </object> <object class="GtkAdjustment" id="adjustment14"> <property name="upper">1000</property> - <property name="lower">0</property> - <property name="page_increment">10</property> <property name="step_increment">1</property> - <property name="page_size">0</property> - <property name="value">0</property> + <property name="page_increment">10</property> </object> <object class="GtkAdjustment" id="adjustment15"> <property name="upper">1000</property> - <property name="lower">0</property> - <property name="page_increment">10</property> <property name="step_increment">1</property> - <property name="page_size">0</property> - <property name="value">0</property> + <property name="page_increment">10</property> </object> <object class="GtkAdjustment" id="adjustment16"> <property name="upper">1000</property> - <property name="lower">0</property> - <property name="page_increment">10</property> <property name="step_increment">1</property> - <property name="page_size">0</property> - <property name="value">0</property> + <property name="page_increment">10</property> </object> <object class="GtkAdjustment" id="adjustment17"> <property name="upper">8000</property> - <property name="lower">0</property> - <property name="page_increment">16</property> <property name="step_increment">2</property> - <property name="page_size">0</property> - <property name="value">0</property> + <property name="page_increment">16</property> </object> <object class="GtkAdjustment" id="adjustment18"> <property name="upper">8000</property> - <property name="lower">0</property> - <property name="page_increment">16</property> <property name="step_increment">2</property> - <property name="page_size">0</property> - <property name="value">0</property> + <property name="page_increment">16</property> </object> <object class="GtkAdjustment" id="adjustment19"> - <property name="upper">10</property> <property name="lower">1</property> - <property name="page_increment">1</property> - <property name="step_increment">1</property> - <property name="page_size">0</property> + <property name="upper">10</property> <property name="value">1</property> - </object> - <object class="GtkAdjustment" id="adjustment2"> - <property name="upper">100</property> - <property name="lower">1</property> - <property name="page_increment">1</property> <property name="step_increment">1</property> - <property name="page_size">0</property> - <property name="value">100</property> - </object> - <object class="GtkAdjustment" id="adjustment3"> - <property name="upper">20000</property> - <property name="lower">0</property> - <property name="page_increment">100</property> - <property name="step_increment">10</property> - <property name="page_size">0</property> - <property name="value">0</property> - </object> - <object class="GtkAdjustment" id="adjustment4"> - <property name="upper">50000</property> - <property name="lower">0</property> - <property name="page_increment">1000</property> - <property name="step_increment">100</property> - <property name="page_size">0</property> - <property name="value">0</property> - </object> - <object class="GtkAdjustment" id="adjustment5"> - <property name="upper">51</property> - <property name="lower">0</property> - <property name="page_increment">5</property> - <property name="step_increment">0.25</property> - <property name="page_size">0</property> - <property name="value">20.25</property> - </object> - <object class="GtkAdjustment" id="x264PresetRange"> - <property name="upper">1</property> - <property name="lower">0</property> <property name="page_increment">1</property> - <property name="step_increment">1</property> - <property name="page_size">0</property> - <property name="value">0</property> </object> - <object class="GtkAdjustment" id="adjustment8"> - <property name="upper">16</property> + <object class="GtkAdjustment" id="adjustment2"> <property name="lower">1</property> - <property name="page_increment">1</property> + <property name="upper">100</property> + <property name="value">100</property> <property name="step_increment">1</property> - <property name="page_size">0</property> - <property name="value">3</property> - </object> - <object class="GtkAdjustment" id="adjustment9"> - <property name="upper">16</property> - <property name="lower">0</property> <property name="page_increment">1</property> - <property name="step_increment">1</property> - <property name="page_size">0</property> - <property name="value">0</property> </object> <object class="GtkAdjustment" id="adjustment20"> - <property name="upper">15</property> <property name="lower">4</property> - <property name="page_increment">1</property> + <property name="upper">15</property> <property name="step_increment">1</property> - <property name="page_size">0</property> - <property name="value">0</property> + <property name="page_increment">1</property> </object> <object class="GtkAdjustment" id="adjustment21"> - <property name="value">15</property> <property name="lower">15</property> <property name="upper">240</property> + <property name="value">15</property> <property name="step_increment">15</property> <property name="page_increment">15</property> - <property name="page_size">0</property> </object> <object class="GtkAdjustment" id="adjustment22"> <property name="upper">2</property> - <property name="lower">0</property> - <property name="page_increment">0.5</property> - <property name="step_increment">0.1</property> - <property name="page_size">0</property> <property name="value">1</property> + <property name="step_increment">0.10000000000000001</property> + <property name="page_increment">0.5</property> </object> <object class="GtkAdjustment" id="adjustment23"> <property name="upper">1</property> - <property name="lower">0</property> + <property name="step_increment">0.050000000000000003</property> <property name="page_increment">0.5</property> - <property name="step_increment">0.05</property> - <property name="page_size">0</property> - <property name="value">0</property> </object> <object class="GtkAdjustment" id="adjustment24"> - <property name="upper">100</property> <property name="lower">1</property> - <property name="page_increment">1</property> - <property name="step_increment">1</property> - <property name="page_size">0</property> + <property name="upper">100</property> <property name="value">1</property> + <property name="step_increment">1</property> + <property name="page_increment">1</property> </object> <object class="GtkAdjustment" id="adjustment25"> <property name="upper">4096</property> - <property name="lower">0</property> - <property name="page_increment">16</property> <property name="step_increment">1</property> - <property name="page_size">0</property> - <property name="value">0</property> + <property name="page_increment">16</property> </object> <object class="GtkAdjustment" id="adjustment26"> <property name="upper">4096</property> - <property name="lower">0</property> - <property name="page_increment">16</property> <property name="step_increment">1</property> - <property name="page_size">0</property> - <property name="value">0</property> + <property name="page_increment">16</property> </object> <object class="GtkAdjustment" id="adjustment27"> - <property name="upper">10</property> <property name="lower">1</property> - <property name="page_increment">1</property> - <property name="step_increment">1</property> - <property name="page_size">0</property> + <property name="upper">10</property> <property name="value">1</property> + <property name="step_increment">1</property> + <property name="page_increment">1</property> </object> <object class="GtkAdjustment" id="adjustment28"> + <property name="lower">0.90000000000000002</property> <property name="upper">4</property> - <property name="lower">0.9</property> + <property name="step_increment">0.10000000000000001</property> <property name="page_increment">1</property> - <property name="step_increment">0.1</property> - <property name="page_size">0</property> - <property name="value">0.0</property> </object> <object class="GtkAdjustment" id="adjustment29"> - <property name="upper">65535</property> <property name="lower">1</property> - <property name="page_increment">16</property> + <property name="upper">65535</property> <property name="step_increment">1</property> - <property name="page_size">0</property> - <property name="value">0</property> + <property name="page_increment">16</property> + </object> + <object class="GtkAdjustment" id="adjustment3"> + <property name="upper">20000</property> + <property name="step_increment">10</property> + <property name="page_increment">100</property> </object> <object class="GtkAdjustment" id="adjustment30"> - <property name="upper">65535</property> <property name="lower">1</property> - <property name="page_increment">16</property> + <property name="upper">65535</property> <property name="step_increment">1</property> - <property name="page_size">0</property> - <property name="value">0</property> + <property name="page_increment">16</property> </object> <object class="GtkAdjustment" id="adjustment31"> - <property name="upper">30000</property> <property name="lower">-30000</property> - <property name="page_increment">100</property> + <property name="upper">30000</property> <property name="step_increment">10</property> - <property name="page_size">0</property> - <property name="value">0</property> + <property name="page_increment">100</property> </object> <object class="GtkAdjustment" id="adjustment32"> <property name="upper">8000</property> - <property name="lower">0</property> - <property name="page_increment">16</property> <property name="step_increment">2</property> - <property name="page_size">0</property> - <property name="value">0</property> + <property name="page_increment">16</property> </object> <object class="GtkAdjustment" id="adjustment33"> <property name="upper">8000</property> - <property name="lower">0</property> - <property name="page_increment">16</property> <property name="step_increment">2</property> - <property name="page_size">0</property> - <property name="value">0</property> + <property name="page_increment">16</property> </object> <object class="GtkAdjustment" id="adjustment34"> <property name="upper">2</property> - <property name="lower">0</property> - <property name="page_increment">0.5</property> - <property name="step_increment">0.1</property> - <property name="page_size">0</property> <property name="value">1</property> + <property name="step_increment">0.10000000000000001</property> + <property name="page_increment">0.5</property> </object> <object class="GtkAdjustment" id="adjustment35"> - <property name="upper">21</property> <property name="lower">-20</property> - <property name="page_increment">1</property> + <property name="upper">21</property> <property name="step_increment">1</property> - <property name="page_size">0</property> - <property name="value">0.0</property> + <property name="page_increment">1</property> </object> - <object class="GtkAdjustment" id="preview_progress_adj"> - <property name="upper">100</property> - <property name="lower">0</property> - <property name="step_increment">1</property> - <property name="page_increment">10</property> - <property name="value">0</property> + <object class="GtkAdjustment" id="adjustment4"> + <property name="upper">50000</property> + <property name="step_increment">100</property> + <property name="page_increment">1000</property> </object> - <object class="GtkAdjustment" id="preview_count_adj"> - <property name="upper">60</property> - <property name="lower">5</property> - <property name="page_increment">10</property> - <property name="step_increment">5</property> - <property name="page_size">0</property> - <property name="value">10</property> + <object class="GtkAdjustment" id="adjustment5"> + <property name="upper">51</property> + <property name="value">20.25</property> + <property name="step_increment">0.25</property> + <property name="page_increment">5</property> </object> - <object class="GtkAdjustment" id="min_title_adj"> - <property name="upper">7200</property> - <property name="lower">0</property> - <property name="page_increment">10</property> - <property name="step_increment">5</property> - <property name="page_size">0</property> - <property name="value">10</property> + <object class="GtkAdjustment" id="adjustment8"> + <property name="lower">1</property> + <property name="upper">16</property> + <property name="value">3</property> + <property name="step_increment">1</property> + <property name="page_increment">1</property> + </object> + <object class="GtkAdjustment" id="adjustment9"> + <property name="upper">16</property> + <property name="step_increment">1</property> + <property name="page_increment">1</property> </object> <object class="GtkAdjustment" id="audio_quality_adj"> <property name="upper">10</property> - <property name="lower">0</property> + <property name="step_increment">0.10000000000000001</property> <property name="page_increment">1</property> - <property name="step_increment">0.1</property> - <property name="page_size">0</property> - <property name="value">0.0</property> - </object> - <object class="GtkImage" id="subtitle_add_image"> - <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="stock">gtk-add</property> - </object> - <object class="GtkImage" id="srt_add_image"> - <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="stock">gtk-add</property> - </object> - <object class="GtkFileFilter" id="SourceFilterAll"> - </object> - <object class="GtkFileFilter" id="SourceFilterTS"> - </object> - <object class="GtkFileFilter" id="SourceFilterMPG"> - </object> - <object class="GtkFileFilter" id="SourceFilterEVO"> - </object> - <object class="GtkFileFilter" id="SourceFilterVOB"> - </object> - <object class="GtkFileFilter" id="SourceFilterMKV"> - </object> - <object class="GtkFileFilter" id="SourceFilterAVI"> - </object> - <object class="GtkFileFilter" id="SourceFilterMP4"> - </object> - <object class="GtkFileFilter" id="SourceFilterMOV"> - </object> - <object class="GtkFileFilter" id="SourceFilterOGG"> - </object> - <object class="GtkFileFilter" id="SourceFilterFLV"> </object> - <object class="GtkFileFilter" id="SourceFilterWMV"> - </object> - <object class="GtkFileFilter" id="SourceFilterVideo"> - </object> - <object class="GtkUIManager" id="uimanager1"> - <child> - <object class="GtkActionGroup" id="actiongroup1"> - <child> - <object class="GtkAction" id="menuitem1"> - <property name="name">menuitem1</property> - <property name="label" translatable="yes">_File</property> - </object> - </child> - <child> - <object class="GtkAction" id="source_action"> - <property name="stock_id">gtk-open</property> - <property name="name">source_action</property> - <property name="label" translatable="yes">_Source</property> - <signal handler="source_button_clicked_cb" name="activate"/> - </object> - </child> - <child> - <object class="GtkAction" id="source_single_action"> - <property name="stock_id">gtk-open</property> - <property name="name">source_single_action</property> - <property name="label" translatable="yes">Single _Title</property> - <signal handler="single_title_source_cb" name="activate"/> - </object> - </child> - <child> - <object class="GtkAction" id="destination1"> - <property name="stock_id">gtk-save-as</property> - <property name="name">destination1</property> - <property name="label" translatable="yes">_Destination</property> - <signal handler="destination_browse_clicked_cb" name="activate"/> - </object> - </child> - <child> - <object class="GtkAction" id="preferences"> - <property name="stock_id">gtk-preferences</property> - <property name="name">preferences</property> - <signal handler="prefs_dialog_cb" name="activate"/> - </object> - </child> - <child> - <object class="GtkAction" id="quit1"> - <property name="stock_id">gtk-quit</property> - <property name="name">quit1</property> - <signal handler="on_quit1_activate" name="activate"/> - </object> - </child> - <child> - <object class="GtkAction" id="menuitem2"> - <property name="name">menuitem2</property> - <property name="label" translatable="yes">_Queue</property> - </object> - </child> - <child> - <object class="GtkAction" id="queue_add_menu"> - <property name="sensitive">False</property> - <property name="icon-name">hb-add-queue</property> - <property name="name">queue_add_menu</property> - <property name="label" translatable="yes">_Add Queue</property> - <signal handler="queue_add_clicked_cb" name="activate"/> - </object> - </child> - <child> - <object class="GtkAction" id="queue_add_all_menu"> - <property name="sensitive">False</property> - <property name="icon-name">hb-add-queue</property> - <property name="name">queue_add_all_menu</property> - <property name="label" translatable="yes">Add A_ll Queue</property> - <signal handler="queue_add_all_clicked_cb" name="activate"/> - </object> - </child> - <child> - <object class="GtkAction" id="queue_start_menu"> - <property name="sensitive">False</property> - <property name="icon-name">hb-start</property> - <property name="name">queue_start_menu</property> - <property name="label" translatable="yes">_Start Queue</property> - <signal handler="queue_start_clicked_cb" name="activate"/> - </object> - </child> - <child> - <object class="GtkAction" id="queue_pause_menu"> - <property name="sensitive">False</property> - <property name="icon-name">hb-pause</property> - <property name="name">queue_pause_menu</property> - <property name="label" translatable="yes">_Pause Queue</property> - <signal handler="queue_pause_clicked_cb" name="activate"/> - </object> - </child> - <child> - <object class="GtkAction" id="menuitem3"> - <property name="name">menuitem3</property> - <property name="label" translatable="yes">_View</property> - </object> - </child> - <child> - <object class="GtkToggleAction" id="hbfd"> - <property name="visible">False</property> - <property name="name">hbfd</property> - <property name="label" translatable="yes">HandBrake For _Dumbies</property> - <signal handler="hbfd_toggled_cb" name="toggled"/> - </object> - </child> - <child> - <object class="GtkToggleAction" id="show_presets"> + <object class="GtkAboutDialog" id="hb_about"> + <property name="can_focus">False</property> + <property name="border_width">5</property> + <property name="title" translatable="yes">About HandBrake</property> + <property name="type_hint">dialog</property> + <property name="skip_taskbar_hint">True</property> + <property name="skip_pager_hint">True</property> + <property name="program_name">HandBrake</property> + <property name="version">0.9.2</property> + <property name="copyright" translatable="yes">Copyright © 2008 - 2013 John Stebbins +Copyright © 2004 - 2013, HandBrake Devs</property> + <property name="comments" translatable="yes">HandBrake is a GPL-licensed, multiplatform, multithreaded video transcoder.</property> + <property name="website">http://handbrake.fr</property> + <property name="website_label" translatable="yes">http://handbrake.fr</property> + <property name="license" translatable="yes">HandBrake is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. + +HandBrake is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with Glade; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</property> + <property name="authors">ghb author: + John Stebbins + +HandBrake authors: + Eric Petit + Laurent Aimar + John Allen + Joe Crain + Damiano Galassi + Edward Groenendaal + Rodney Hester + Andrew Kimpton + Chris Lee + Chris Long + Brian Mario + Maurj + Mirkwood + Nyx + Philippe Rigaux + Jonathon Rubin + Scott + Chris Thoman + Mark Krenek + Van Jacobson + +liba52 authors: + Aaron Holtzman + Michel Lespinasse + Gildas Bazin + Billy Biggs + Eduard Hasenleithner + Håkan Hjort + Charles M. Hannum + Chris Hodges + Michael Holzt + Angelos Keromytis + David I. Lehn + Don Mahurin + Jim Miller + Takefumi Sayo + Shoji Tokunaga + +libavcodec authors: + Fabrice Bellard + Alex Beregszaszi + Brian Foley + Arpad Gereoffy + Philip Gladstone + Falk Hueffner + Zdenek Kabelac + Nick Kurshev + Michael Niedermayer + François Revol + Dieter Shirley + Juan J. Sierralta + Lionel Ulmer + +libdts authors: + Gildas Bazin + Sam Hocevar + +libdvdcss authors: + Billy Biggs + Stéphane Borel + Håkan Hjort + Samuel Hocevar + Eugenio Jarosiewicz + Jon Lech Johansen + Markus Kuespert + Pascal Levesque + Steven M. Schultz + David Siebörger + Alex Strelnikov + German Tischler + Gildas Bazin + +libdvdread authors: + Björn Englund + Håkan Hjort + Billy Biggs + Christian Wolff + +libfaac authors: + M. Bakker + Tony Lenox + RageOMatic + thebard + Ivan Dimkovic + Krzysztof Nikiel + +libmp3lame authors: + Mike Cheng + Robert Hegemann + Frank Klemm + Alexander Leidinger + Naoki Shibata + Mark Taylor + Takehiro Tominiga + Iván Cavero Belaunde + Gabriel Bouvigne + Florian Bomers + CISC + John Dahlstrom + John Dee + Albert Faber + Peter Gubanov + Lars Magne Ingebrigtsen + Yosi Markovich + Zdenek Kabelac + Iwasa Kazmi + Guillaume Lessard + Steve Lhomme + Don Melton + Viral Shah + Acy Stapp + Roel VdB + +libmp4v2 authors: + Dave Mackie + Alix Marchandise-Franquet + Bill May + Massimo Villari + Waqar Mohsin + Richard Chen + Rob Arnold + Howdy Pierce + Steven Schultz + Sean Gilligan + Michael Rossberg + Luis F. Ramirez + Petter Reinholdtsen + +libmpeg2 authors: + Aaron Holtzman + Michel Lespinasse + Bruno Barreyra + Gildas Bazin + Alexander W. Chin + Stephen Crowley + Didier Gautheron + Ryan C. Gordon + Peter Gubanov + Håkan Hjort + Nicolas Joly + Gerd Knorr + David I. Lehn + Olie Lho + Rick Niles + Real Ouellet + Bajusz Peter + Franck Sicard + Brion Vibber + Martin Vogt + Fredrik Vraalsen + +libogg authors: + Christopher Montgomery + +libsamplerate authors: + Erik de Castro Lopo + +libvorbis authors: + Christopher Montgomery + +libx264 authors: + Laurent Aimar + +</property> + <property name="logo_icon_name">hb-icon</property> + <property name="wrap_license">True</property> + <signal name="delete-event" handler="gtk_widget_hide_on_delete" swapped="no"/> + <signal name="response" handler="hb_about_response_cb" swapped="no"/> + <child internal-child="vbox"> + <object class="GtkBox" id="dialog-vbox4"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="spacing">2</property> + <child internal-child="action_area"> + <object class="GtkButtonBox" id="dialog-action_area4"> <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_preview_menu"> - <property name="icon-name">hb-picture</property> - <property name="name">show_preview_menu</property> - <property name="label" translatable="yes">_Picture Settings</property> - <signal handler="picture_settings_alt_clicked_cb" name="activate"/> - </object> - </child> - <child> - <object class="GtkAction" id="show_activity_menu"> - <property name="icon-name">hb-activity</property> - <property name="name">show_activity_menu</property> - <property name="label" translatable="yes">_Activity Window</property> - <signal handler="show_activity_menu_clicked_cb" name="activate"/> - </object> - </child> - <child> - <object class="GtkAction" id="show_queue_menu"> - <property name="icon-name">hb-queue</property> - <property name="name">show_queue_menu</property> - <property name="label" translatable="yes">Show _Queue</property> - <signal handler="show_queue_menu_clicked_cb" name="activate"/> - </object> - </child> - <child> - <object class="GtkAction" id="menuitem4"> - <property name="name">menuitem4</property> - <property name="label" translatable="yes">_Help</property> - </object> - </child> - <child> - <object class="GtkAction" id="about"> - <property name="stock_id" translatable="yes">gtk-about</property> - <property name="name">about</property> - <signal handler="about_activate_cb" name="activate"/> - </object> - </child> - <child> - <object class="GtkAction" id="guide"> - <property name="name">guide</property> - <property name="label" translatable="yes">_Guide</property> - <signal handler="guide_activate_cb" name="activate"/> + <property name="can_focus">False</property> + <property name="layout_style">end</property> </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="pack_type">end</property> + <property name="position">0</property> + </packing> </child> <child> - <object class="GtkAction" id="show_hide"> - <property name="name">show_hide</property> - <property name="label" translatable="yes">_Minimize/Maximize</property> - <signal handler="show_hide_toggle_cb" name="activate"/> - </object> + <placeholder/> </child> </object> </child> - <ui> - <menubar name="menubar1"> - <menu action="menuitem1"> - <menuitem action="source_action"/> - <menuitem action="source_single_action"/> - <menuitem action="destination1"/> - <separator/> - <menuitem action="preferences"/> - <separator/> - <menuitem action="quit1"/> - </menu> - <menu action="menuitem2"> - <menuitem action="queue_add_menu"/> - <menuitem action="queue_add_all_menu"/> - <menuitem action="queue_start_menu"/> - <menuitem action="queue_pause_menu"/> - </menu> - <menu action="menuitem3"> - <menuitem action="hbfd"/> - <menuitem action="show_presets"/> - <menuitem action="show_queue_menu"/> - <menuitem action="show_preview_menu"/> - <menuitem action="show_activity_menu"/> - </menu> - <menu action="menuitem4"> - <menuitem action="about"/> - <menuitem action="guide"/> - </menu> - </menubar> - <popup name="tray_menu"> - <menuitem action="show_hide"/> - <menuitem action="queue_pause_menu"/> - <menuitem action="quit1"/> - <menuitem action="about"/> - </popup> - </ui> </object> - <object class="GtkMenu" id="presets_menu"> + <object class="GtkMenu" id="tray_menu"> + <property name="visible">True</property> + <property name="can_focus">False</property> <child> - <object class="GtkImageMenuItem" id="presets_default"> - <property name="label" translatable="yes">_Make Default</property> - <property name="image">image12</property> + <object class="GtkMenuItem" id="show_hide"> + <property name="label" translatable="yes">_Minimize/Maximize</property> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="use_underline">True</property> - <property name="use_stock">True</property> - <signal name="activate" handler="presets_default_clicked_cb"/> + <signal name="activate" handler="show_hide_toggle_cb" swapped="no"/> </object> - </child> - <child> - <object class="GtkImageMenuItem" id="presets_new_folder"> - <property name="label" translatable="yes">New _Folder</property> - <property name="use-underline">True</property> - <property name="visible">True</property> - <property name="use_stock">True</property> - <property name="image">image11</property> - <signal name="activate" handler="presets_new_folder_clicked_cb"/> - </object> - </child> - <child> - <object class="GtkImageMenuItem" id="preset_export"> - <property name="label" translatable="yes">_Export</property> - <property name="use-underline">True</property> + <object class="GtkMenuItem" id="tray_queue_pause"> + <property name="label" translatable="yes">_Pause Queue</property> <property name="visible">True</property> - <property name="image">image13</property> - <property name="use_stock">False</property> - <signal name="activate" handler="preset_export_clicked_cb"/> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="queue_pause_clicked_cb" swapped="no"/> </object> - </child> - <child> - <object class="GtkImageMenuItem" id="preset_import"> - <property name="label" translatable="yes">_Import</property> - <property name="use-underline">True</property> + <object class="GtkMenuItem" id="tray_quit"> + <property name="label" translatable="yes">_Quit</property> <property name="visible">True</property> - <property name="image">image14</property> - <property name="use_stock">False</property> - <signal name="activate" handler="preset_import_clicked_cb"/> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="on_quit1_activate" swapped="no"/> </object> - </child> - <child> - <object class="GtkImageMenuItem" id="presets_restore"> - <property name="label" translatable="yes">_Update Built-in Presets</property> - <property name="image">image15</property> + <object class="GtkMenuItem" id="tray_about"> + <property name="label" translatable="yes">_About</property> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="use_underline">True</property> - <property name="use_stock">True</property> - <signal name="activate" handler="presets_restore_clicked_cb"/> + <signal name="activate" handler="about_activate_cb" swapped="no"/> </object> </child> </object> - <object class="GtkWindow" id="hb_window"> + <object class="GtkStatusIcon" id="hb_status"> + <property name="icon_name">hb-icon</property> <property name="visible">False</property> - <property name="resizable">True</property> + <signal name="activate" handler="status_activate_cb" swapped="no"/> + </object> + <object class="GtkWindow" id="hb_window"> + <property name="can_focus">False</property> + <property name="events">GDK_VISIBILITY_NOTIFY_MASK</property> <property name="title" translatable="yes">HandBrake</property> <property name="default_width">500</property> <property name="default_height">400</property> <property name="icon_name">hb-icon</property> - <property name="events">GDK_VISIBILITY_NOTIFY_MASK</property> - <signal handler="hb_visibility_event_cb" name="visibility_notify_event"/> - <signal handler="window_destroy_event_cb" name="destroy_event"/> - <signal handler="window_delete_event_cb" name="delete_event"/> - <signal handler="window_configure_cb" name="configure-event"/> + <signal name="configure-event" handler="window_configure_cb" swapped="no"/> + <signal name="delete-event" handler="window_delete_event_cb" swapped="no"/> + <signal name="destroy-event" handler="window_destroy_event_cb" swapped="no"/> + <signal name="visibility-notify-event" handler="hb_visibility_event_cb" swapped="no"/> <child> <object class="GtkVBox" id="vbox48"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</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"> + <object class="GtkMenuBar" id="main_menu"> <property name="visible">True</property> + <property name="can_focus">False</property> + <child> + <object class="GtkMenuItem" id="file_menu"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes">_File</property> + <property name="use_underline">True</property> + <child type="submenu"> + <object class="GtkMenu" id="file_submenu"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <child> + <object class="GtkMenuItem" id="source_open"> + <property name="label" translatable="yes">_Source</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="source_button_clicked_cb" swapped="no"/> + </object> + </child> + <child> + <object class="GtkMenuItem" id="source_title_open"> + <property name="label" translatable="yes">Single _Title</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="single_title_source_cb" swapped="no"/> + </object> + </child> + <child> + <object class="GtkMenuItem" id="destination"> + <property name="label" translatable="yes">_Destination</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="destination_browse_clicked_cb" swapped="no"/> + </object> + </child> + <child> + <object class="GtkSeparatorMenuItem" id="separatormenuitem1"> + <property name="visible">True</property> + <property name="can_focus">False</property> + </object> + </child> + <child> + <object class="GtkMenuItem" id="preferences"> + <property name="label" translatable="yes">_Preferences</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="prefs_dialog_cb" swapped="no"/> + </object> + </child> + <child> + <object class="GtkSeparatorMenuItem" id="separatormenuitem2"> + <property name="visible">True</property> + <property name="can_focus">False</property> + </object> + </child> + <child> + <object class="GtkMenuItem" id="quit"> + <property name="label" translatable="yes">_Quit</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="on_quit1_activate" swapped="no"/> + </object> + </child> + </object> + </child> + </object> + </child> + <child> + <object class="GtkMenuItem" id="queue_menu"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes">_Queue</property> + <property name="use_underline">True</property> + <child type="submenu"> + <object class="GtkMenu" id="queue_submenu"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <child> + <object class="GtkMenuItem" id="queue_add_menu"> + <property name="label" translatable="yes">_Add Queue</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="queue_add_clicked_cb" swapped="no"/> + </object> + </child> + <child> + <object class="GtkMenuItem" id="queue_add_all_menu"> + <property name="label" translatable="yes">Add A_ll Queue</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="queue_add_all_clicked_cb" swapped="no"/> + </object> + </child> + <child> + <object class="GtkMenuItem" id="queue_start_menu"> + <property name="label" translatable="yes">_Start Queue</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="queue_start_clicked_cb" swapped="no"/> + </object> + </child> + <child> + <object class="GtkMenuItem" id="queue_pause_menu"> + <property name="label" translatable="yes">_Pause Queue</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="queue_pause_clicked_cb" swapped="no"/> + </object> + </child> + </object> + </child> + </object> + </child> + <child> + <object class="GtkMenuItem" id="view_menu"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes">_View</property> + <property name="use_underline">True</property> + <child type="submenu"> + <object class="GtkMenu" id="view_submenu"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <child> + <object class="GtkCheckMenuItem" id="hbfd"> + <property name="label" translatable="yes">HandBrake For _Dumbies</property> + <property name="visible">False</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="toggled" handler="hbfd_toggled_cb" swapped="no"/> + </object> + </child> + <child> + <object class="GtkCheckMenuItem" id="show_presets"> + <property name="label" translatable="yes">_Show Presets</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="toggled" handler="show_presets_toggled_cb" swapped="no"/> + </object> + </child> + <child> + <object class="GtkMenuItem" id="show_preview_menu"> + <property name="label" translatable="yes">_Picture Settings</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="picture_settings_alt_clicked_cb" swapped="no"/> + </object> + </child> + <child> + <object class="GtkMenuItem" id="show_activity_menu"> + <property name="label" translatable="yes">_Activity Window</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="show_activity_menu_clicked_cb" swapped="no"/> + </object> + </child> + <child> + <object class="GtkMenuItem" id="show_queue_menu"> + <property name="label" translatable="yes">Show _Queue</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="show_queue_menu_clicked_cb" swapped="no"/> + </object> + </child> + </object> + </child> + </object> + </child> + <child> + <object class="GtkMenuItem" id="help_menu"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes">_Help</property> + <property name="use_underline">True</property> + <child type="submenu"> + <object class="GtkMenu" id="help_submenu"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <child> + <object class="GtkMenuItem" id="about"> + <property name="label" translatable="yes">_About</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="about_activate_cb" swapped="no"/> + </object> + </child> + <child> + <object class="GtkMenuItem" id="guide"> + <property name="label" translatable="yes">_Guide</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="guide_activate_cb" swapped="no"/> + </object> + </child> + </object> + </child> + </object> + </child> </object> <packing> <property name="expand">False</property> - <property name="fill">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkToolbar" id="toolbar1"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="icon_size">5</property> <child> <object class="GtkToolButton" id="sourcetoolbutton"> <property name="visible">True</property> - <property name="is_important">True</property> + <property name="can_focus">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">Choose Video Source</property> + <property name="tooltip_text" translatable="yes">Choose Video Source</property> + <property name="is_important">True</property> <property name="label" translatable="yes">Source</property> <property name="icon_name">hb-source</property> - <signal handler="source_button_clicked_cb" name="clicked"/> + <signal name="clicked" handler="source_button_clicked_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton" id="queue_start1"> <property name="visible">True</property> - <property name="is_important">True</property> <property name="sensitive">False</property> + <property name="can_focus">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="tooltip_text" translatable="yes">Start Encoding</property> + <property name="is_important">True</property> <property name="label" translatable="yes">Start</property> <property name="icon_name">hb-start</property> - <signal handler="queue_start_clicked_cb" name="clicked"/> + <signal name="clicked" handler="queue_start_clicked_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton" id="queue_pause1"> <property name="visible">True</property> - <property name="is_important">True</property> <property name="sensitive">False</property> + <property name="can_focus">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="tooltip_text" translatable="yes">Pause Encoding</property> + <property name="is_important">True</property> <property name="label" translatable="yes">Pause</property> <property name="icon_name">hb-pause</property> - <signal handler="queue_pause_clicked_cb" name="clicked"/> + <signal name="clicked" handler="queue_pause_clicked_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton" id="queue_add"> <property name="visible">True</property> - <property name="is_important">True</property> <property name="sensitive">False</property> + <property name="can_focus">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="tooltip_text" translatable="yes">Add to Queue</property> + <property name="is_important">True</property> <property name="label" translatable="yes">Enqueue</property> <property name="icon_name">hb-add-queue</property> - <signal handler="queue_add_clicked_cb" name="clicked"/> + <signal name="clicked" handler="queue_add_clicked_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToggleToolButton" id="show_queue"> <property name="visible">True</property> - <property name="is_important">True</property> + <property name="can_focus">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">Show Queue</property> + <property name="tooltip_text" translatable="yes">Show Queue</property> + <property name="is_important">True</property> <property name="label" translatable="yes">Queue</property> <property name="icon_name">hb-queue</property> - <signal handler="show_queue_clicked_cb" name="toggled"/> + <signal name="toggled" handler="show_queue_clicked_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToggleToolButton" id="show_picture"> <property name="visible">True</property> - <property name="is_important">True</property> + <property name="can_focus">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">Open Picture Settings and Preview window. Here you can adjust cropping, resolution, aspect ratio, and filters.</property> + <property name="tooltip_text" translatable="yes">Open Picture Settings and Preview window. Here you can adjust cropping, resolution, aspect ratio, and filters.</property> + <property name="is_important">True</property> <property name="label" translatable="yes">Picture Settings</property> <property name="icon_name">hb-picture</property> - <signal name="toggled" handler="picture_settings_clicked_cb"/> + <signal name="toggled" handler="picture_settings_clicked_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToggleToolButton" id="show_activity"> <property name="visible">True</property> - <property name="is_important">True</property> + <property name="can_focus">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">Show Activity Window</property> + <property name="tooltip_text" translatable="yes">Show Activity Window</property> + <property name="is_important">True</property> <property name="label" translatable="yes">Activity</property> <property name="icon_name">hb-activity</property> - <signal handler="show_activity_clicked_cb" name="toggled"/> + <signal name="toggled" handler="show_activity_clicked_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="homogeneous">True</property> </packing> </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkHBox" id="hbox1"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> <child> <object class="GtkVBox" id="vbox14"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</property> <child> <object class="GtkVBox" id="vbox15"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</property> <child> <object class="GtkAlignment" id="alignment1"> <property name="visible">True</property> - <property name="left_padding">6</property> - <property name="right_padding">12</property> + <property name="can_focus">False</property> + <property name="xalign">0</property> <property name="top_padding">12</property> <property name="bottom_padding">6</property> - <property name="xalign">0</property> - <property name="xscale">1</property> + <property name="left_padding">6</property> + <property name="right_padding">12</property> <child> <object class="GtkVBox" id="vbox16"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="spacing">2</property> <child> <object class="GtkHBox" id="hbox54"> <property name="visible">True</property> + <property name="can_focus">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="spacing">6</property> <child> <object class="GtkLabel" id="label7"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes"><b>Source:</b></property> <property name="use_markup">True</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="source_title"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> <property name="label" translatable="yes">None</property> </object> <packing> <property name="expand">True</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkAlignment" id="alignment68"> <property name="visible">True</property> - <property name="xscale">1</property> + <property name="can_focus">False</property> <property name="yscale">0</property> <child> <object class="GtkProgressBar" id="scan_prog"> - <property name="height_request">10</property> <property name="width_request">400</property> - <property name="visible">False</property> + <property name="height_request">10</property> + <property name="can_focus">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="text" translatable="yes"/> </object> </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">2</property> </packing> </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkTable" id="table7"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="n_rows">2</property> <property name="n_columns">2</property> - <property name="column-spacing">5</property> + <property name="column_spacing">5</property> + <child> + <placeholder/> + </child> <child> <object class="GtkAlignment" id="alignment72"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="top_padding">6</property> <property name="left_padding">6</property> <child> <object class="GtkLabel" id="label20"> <property name="visible">True</property> - <property name="xalign">0.1</property> + <property name="can_focus">False</property> + <property name="xalign">0.10000000149011612</property> <property name="label" translatable="yes">Title:</property> </object> </child> </object> <packing> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> <property name="x_options">GTK_FILL</property> </packing> </child> <child> <object class="GtkHBox" id="hbox42"> <property name="visible">True</property> + <property name="can_focus">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="spacing">5</property> - <child> <object class="GtkAlignment" id="alignment75"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="xscale">0</property> <property name="yscale">0</property> - <child> - <object class="GtkComboBox" id="title"> - <property name="visible">True</property> - <property name="has_frame">False</property> - <property name="tooltip-text" translatable="yes">Set the title to encode. By default the longest title is chosen. This is often the feature title of a DVD.</property> - <signal handler="title_changed_cb" name="changed"/> - </object> - </child> - + <child> + <object class="GtkComboBox" id="title"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="tooltip_text" translatable="yes">Set the title to encode. By default the longest title is chosen. This is often the feature title of a DVD.</property> + <property name="has_frame">False</property> + <signal name="changed" handler="title_changed_cb" swapped="no"/> + </object> + </child> </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> </child> - <child> <object class="GtkAlignment" id="alignment73"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">1</property> <property name="xscale">0</property> <property name="yscale">0</property> <child> <object class="GtkHBox" id="hbox44"> <property name="visible">True</property> + <property name="can_focus">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="spacing">7</property> <child> <object class="GtkLabel" id="angle_label"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">Angle:</property> </object> <packing> @@ -949,48 +1134,56 @@ This setting allows you to synchronize the files.</property> <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">For multi-angle DVD's, select the desired angle to encode.</property> + <property name="tooltip_text" translatable="yes">For multi-angle DVD's, select the desired angle to encode.</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> <property name="adjustment">adjustment27</property> - <signal name="value_changed" handler="setting_widget_changed_cb"/> + <signal name="value-changed" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> </child> </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> </child> </object> <packing> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> </packing> </child> - <child> <object class="GtkAlignment" id="alignment74"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="xscale">0</property> <property name="yscale">0</property> <child> <object class="GtkHBox" id="hbox48"> <property name="visible">True</property> + <property name="can_focus">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="spacing">5</property> - <child> <object class="GtkComboBox" id="PtoPType"> <property name="visible">True</property> - <property name="tooltip-text" translatable="yes">Range of title to encode. Can be chapters, seconds, or frames.</property> - <signal handler="ptop_widget_changed_cb" name="changed"/> + <property name="can_focus">False</property> + <property name="tooltip_text" translatable="yes">Range of title to encode. Can be chapters, seconds, or frames.</property> + <signal name="changed" handler="ptop_widget_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> @@ -999,22 +1192,27 @@ This setting allows you to synchronize the files.</property> <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">Set the first chapter to encode.</property> + <property name="tooltip_text" translatable="yes">Set the first chapter to encode.</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> <property name="adjustment">adjustment1</property> - <signal handler="start_point_changed_cb" name="value_changed"/> + <signal name="value-changed" handler="start_point_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkLabel" id="label56"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">through</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">2</property> </packing> </child> @@ -1023,51 +1221,60 @@ This setting allows you to synchronize the files.</property> <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">Set the last chapter to encode.</property> + <property name="tooltip_text" translatable="yes">Set the last chapter to encode.</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> <property name="adjustment">adjustment2</property> - <signal handler="end_point_changed_cb" name="value_changed"/> + <signal name="value-changed" handler="end_point_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">3</property> </packing> </child> - <child> - <object class="GtkHBox" id="hbox47"> - <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">7</property> - <child> - <object class="GtkLabel" id="label6"> - <property name="visible">True</property> - <property name="xalign">0.1</property> - <property name="label" translatable="yes">Duration:</property> - </object> - <packing> - <property name="expand">False</property> - <property name="position">0</property> - </packing> - </child> <child> - <object class="GtkLabel" id="title_duration"> + <object class="GtkHBox" id="hbox47"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> - <property name="label" translatable="yes">hh:mm:ss</property> - <property name="width_chars">8</property> + <property name="spacing">7</property> + <child> + <object class="GtkLabel" id="label6"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="xalign">0.10000000149011612</property> + <property name="label" translatable="yes">Duration:</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="title_duration"> + <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> + <property name="label" translatable="yes">hh:mm:ss</property> + <property name="width_chars">8</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> </object> <packing> <property name="expand">False</property> - <property name="position">1</property> + <property name="fill">True</property> + <property name="position">4</property> </packing> </child> </object> - <packing> - <property name="expand">False</property> - <property name="position">4</property> - </packing> - </child> - </object> </child> </object> <packing> @@ -1080,31 +1287,41 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> </child> </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> </child> <child> <object class="GtkFrame" id="frame2"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label_xalign">0</property> - <property name="shadow_type">GTK_SHADOW_NONE</property> + <property name="shadow_type">none</property> <child> <object class="GtkAlignment" id="alignment44"> <property name="visible">True</property> - <property name="left_padding">12</property> + <property name="can_focus">False</property> <property name="top_padding">6</property> <property name="bottom_padding">6</property> + <property name="left_padding">12</property> <child> <object class="GtkHBox" id="hbox67"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="spacing">12</property> <child> <object class="GtkTable" id="table4"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="n_rows">2</property> <property name="n_columns">2</property> <child> @@ -1113,11 +1330,12 @@ This setting allows you to synchronize the files.</property> <child> <object class="GtkFileChooserButton" id="dest_dir"> <property name="visible">True</property> - <property name="local-only">False</property> - <property name="action">GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER</property> + <property name="can_focus">False</property> + <property name="tooltip_text" translatable="yes">Destination directory for your encode.</property> + <property name="action">select-folder</property> + <property name="local_only">False</property> <property name="title" translatable="yes">Destination Directory</property> - <property name="tooltip-text" translatable="yes">Destination directory for your encode.</property> - <signal name="selection_changed" handler="dest_dir_set_cb"/> + <signal name="selection-changed" handler="dest_dir_set_cb" swapped="no"/> </object> <packing> <property name="left_attach">1</property> @@ -1131,11 +1349,13 @@ This setting allows you to synchronize the files.</property> <object class="GtkEntry" id="dest_file"> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="tooltip_text" translatable="yes">Destination filename for your encode.</property> <property name="width_chars">40</property> - <property name="tooltip-text" translatable="yes">Destination filename for your encode.</property> - <signal name="changed" handler="dest_file_changed_cb"/> - <signal name="grab_focus" handler="destination_grab_cb" after="yes"/> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> <accelerator key="d" signal="grab-focus" modifiers="GDK_MOD1_MASK"/> + <signal name="changed" handler="dest_file_changed_cb" swapped="no"/> + <signal name="grab-focus" handler="destination_grab_cb" after="yes" swapped="no"/> </object> <packing> <property name="left_attach">1</property> @@ -1146,6 +1366,7 @@ This setting allows you to synchronize the files.</property> <child> <object class="GtkLabel" id="label18"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">File:</property> </object> <packing> @@ -1155,21 +1376,26 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkTable" id="container_box"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="n_rows">2</property> <property name="n_columns">2</property> <property name="column_spacing">4</property> <child> <object class="GtkHBox" id="hbox3"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="spacing">4</property> <child> <object class="GtkLabel" id="label45"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">Format:</property> </object> <packing> @@ -1181,18 +1407,20 @@ This setting allows you to synchronize the files.</property> <child> <object class="GtkComboBox" id="FileFormat"> <property name="visible">True</property> - <property name="tooltip-text" translatable="yes">Format to mux encoded tracks to.</property> - <signal name="changed" handler="container_changed_cb"/> + <property name="can_focus">False</property> + <property name="tooltip_text" translatable="yes">Format to mux encoded tracks to.</property> + <signal name="changed" handler="container_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> @@ -1202,10 +1430,10 @@ This setting allows you to synchronize the files.</property> <property name="can_focus">True</property> <property name="receives_default">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 iPod Atom needed by some older iPods.</property> + <property name="tooltip_text" translatable="yes">Add iPod Atom needed by some older iPods.</property> <property name="xalign">0</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="setting_widget_changed_cb"/> + <signal name="toggled" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> <property name="left_attach">1</property> @@ -1220,10 +1448,10 @@ This setting allows you to synchronize the files.</property> <property name="can_focus">True</property> <property name="receives_default">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">Optimize the layout of the MP4 file for progressive download. This allows a player to initiate playback before downloading the entire file.</property> + <property name="tooltip_text" translatable="yes">Optimize the layout of the MP4 file for progressive download. This allows a player to initiate playback before downloading the entire file.</property> <property name="xalign">0</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="http_opt_changed_cb"/> + <signal name="toggled" handler="http_opt_changed_cb" swapped="no"/> </object> <packing> <property name="top_attach">1</property> @@ -1238,12 +1466,12 @@ This setting allows you to synchronize the files.</property> <property name="can_focus">True</property> <property name="receives_default">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-markup" translatable="yes">Allow 64 bit MP4 file which can be over 4GB. + <property name="tooltip_markup">Allow 64 bit MP4 file which can be over 4GB. <b>Caution:</b> This option may break device compatibility.</property> <property name="xalign">0</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="setting_widget_changed_cb"/> + <signal name="toggled" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> <property name="left_attach">1</property> @@ -1255,8 +1483,9 @@ This setting allows you to synchronize the files.</property> </child> </object> <packing> - <property name="position">1</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> </packing> </child> </object> @@ -1266,6 +1495,7 @@ This setting allows you to synchronize the files.</property> <child type="label"> <object class="GtkLabel" id="label11"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes"><b><u>D</u>estination</b></property> <property name="use_markup">True</property> </object> @@ -1273,19 +1503,22 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkAlignment" id="alignment67"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">0</property> <property name="left_padding">12</property> <property name="right_padding">12</property> <child> @@ -1295,30 +1528,32 @@ This setting allows you to synchronize the files.</property> <child> <object class="GtkHBox" id="picture_tab"> <property name="visible">True</property> + <property name="can_focus">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="spacing">3</property> - <child> <object class="GtkAlignment" id="picture_summary"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="top_padding">10</property> <property name="left_padding">10</property> - <child> <object class="GtkVBox" id="vbox43"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">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="spacing">14</property> <child> <object class="GtkFrame" id="frame5"> <property name="visible">True</property> + <property name="can_focus">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="label_xalign">0</property> - <property name="shadow_type">GTK_SHADOW_NONE</property> + <property name="shadow_type">none</property> <child> <object class="GtkAlignment" id="alignment9"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">6</property> <property name="bottom_padding">2</property> @@ -1326,58 +1561,49 @@ This setting allows you to synchronize the files.</property> <child> <object class="GtkTable" id="table11"> <property name="visible">True</property> + <property name="can_focus">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="n_rows">4</property> <property name="n_columns">2</property> <property name="homogeneous">True</property> - <child> <object class="GtkLabel" id="labela5"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> <property name="label" translatable="yes">Source Codec:</property> </object> - <packing> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> - </packing> </child> <child> <object class="GtkLabel" id="source_codec"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">--</property> </object> <packing> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> </packing> </child> <child> <object class="GtkLabel" id="label23"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> <property name="label" translatable="yes">Dimensions:</property> </object> <packing> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> </packing> </child> <child> <object class="GtkLabel" id="source_dimensions"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">--</property> </object> @@ -1386,27 +1612,25 @@ This setting allows you to synchronize the files.</property> <property name="right_attach">2</property> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> </packing> </child> <child> <object class="GtkLabel" id="label42"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> <property name="label" translatable="yes">Aspect: </property> </object> <packing> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="top_attach">2</property> <property name="bottom_attach">3</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> </packing> </child> <child> <object class="GtkLabel" id="source_aspect"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">--</property> </object> @@ -1415,27 +1639,25 @@ This setting allows you to synchronize the files.</property> <property name="right_attach">2</property> <property name="top_attach">2</property> <property name="bottom_attach">3</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> </packing> </child> <child> <object class="GtkLabel" id="label43"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> <property name="label" translatable="yes">Frame Rate:</property> </object> <packing> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="top_attach">3</property> <property name="bottom_attach">4</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> </packing> </child> <child> <object class="GtkLabel" id="source_frame_rate"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">--</property> </object> @@ -1444,7 +1666,6 @@ This setting allows you to synchronize the files.</property> <property name="right_attach">2</property> <property name="top_attach">3</property> <property name="bottom_attach">4</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> </packing> </child> </object> @@ -1454,6 +1675,7 @@ This setting allows you to synchronize the files.</property> <child type="label"> <object class="GtkLabel" id="label44"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes"><b>Source Picture Parameters</b></property> <property name="use_markup">True</property> @@ -1462,18 +1684,22 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="padding">2</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkFrame" id="Cropping1"> <property name="visible">True</property> + <property name="can_focus">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="label_xalign">0</property> - <property name="shadow_type">GTK_SHADOW_NONE</property> + <property name="shadow_type">none</property> <child> <object class="GtkAlignment" id="alignment52"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">6</property> <property name="bottom_padding">2</property> @@ -1482,6 +1708,7 @@ This setting allows you to synchronize the files.</property> <child> <object class="GtkTable" id="table12"> <property name="visible">True</property> + <property name="can_focus">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="n_rows">3</property> <property name="n_columns">2</property> @@ -1489,47 +1716,38 @@ This setting allows you to synchronize the files.</property> <child> <object class="GtkLabel" id="label13"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="label" translatable="yes">Autocrop:</property> </object> - <packing> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> - </packing> </child> <child> <object class="GtkLabel" id="crop_auto"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">On</property> </object> <packing> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> </packing> </child> <child> <object class="GtkLabel" id="label12"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="label" translatable="yes">Crop:</property> </object> <packing> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> </packing> </child> <child> <object class="GtkLabel" id="crop_values"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">--</property> </object> <packing> @@ -1537,27 +1755,25 @@ This setting allows you to synchronize the files.</property> <property name="right_attach">2</property> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> </packing> </child> <child> <object class="GtkLabel" id="label76"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> <property name="label" translatable="yes">Crop Dimensions:</property> </object> <packing> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="top_attach">2</property> <property name="bottom_attach">3</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> </packing> </child> <child> <object class="GtkLabel" id="crop_dimensions"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">--</property> </object> @@ -1566,7 +1782,6 @@ This setting allows you to synchronize the files.</property> <property name="right_attach">2</property> <property name="top_attach">2</property> <property name="bottom_attach">3</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> </packing> </child> </object> @@ -1576,6 +1791,7 @@ This setting allows you to synchronize the files.</property> <child type="label"> <object class="GtkLabel" id="label16"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes"><b>Cropping</b></property> <property name="use_markup">True</property> @@ -1584,6 +1800,7 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="padding">2</property> <property name="position">1</property> </packing> @@ -1591,12 +1808,14 @@ This setting allows you to synchronize the files.</property> <child> <object class="GtkFrame" id="frame16"> <property name="visible">True</property> + <property name="can_focus">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="label_xalign">0</property> - <property name="shadow_type">GTK_SHADOW_NONE</property> + <property name="shadow_type">none</property> <child> <object class="GtkAlignment" id="alignment20"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">6</property> <property name="bottom_padding">2</property> @@ -1605,6 +1824,7 @@ This setting allows you to synchronize the files.</property> <child> <object class="GtkTable" id="table13"> <property name="visible">True</property> + <property name="can_focus">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="n_rows">3</property> <property name="n_columns">2</property> @@ -1612,47 +1832,38 @@ This setting allows you to synchronize the files.</property> <child> <object class="GtkLabel" id="label14"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="label" translatable="yes">Scale Dimensions:</property> </object> - <packing> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> - </packing> </child> <child> <object class="GtkLabel" id="scale_dimensions"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">--</property> </object> <packing> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> </packing> </child> <child> <object class="GtkLabel" id="label15"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="label" translatable="yes">Optimal for Source:</property> </object> <packing> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> </packing> </child> <child> <object class="GtkLabel" id="scale_auto"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">On</property> </object> <packing> @@ -1660,26 +1871,24 @@ This setting allows you to synchronize the files.</property> <property name="right_attach">2</property> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> </packing> </child> <child> <object class="GtkLabel" id="label17"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="label" translatable="yes">Anamorphic:</property> </object> <packing> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="top_attach">2</property> <property name="bottom_attach">3</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> </packing> </child> <child> <object class="GtkLabel" id="scale_anamorphic"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">On</property> </object> <packing> @@ -1687,7 +1896,6 @@ This setting allows you to synchronize the files.</property> <property name="right_attach">2</property> <property name="top_attach">2</property> <property name="bottom_attach">3</property> - <property name="x_options">GTK_EXPAND|GTK_FILL</property> </packing> </child> </object> @@ -1697,6 +1905,7 @@ This setting allows you to synchronize the files.</property> <child type="label"> <object class="GtkLabel" id="label19"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes"><b>Scaling</b></property> <property name="use_markup">True</property> @@ -1705,12 +1914,13 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="padding">2</property> + <property name="position">2</property> </packing> </child> </object> </child> - </object> <packing> <property name="expand">True</property> @@ -1721,30 +1931,33 @@ This setting allows you to synchronize the files.</property> <child> <object class="GtkAlignment" id="alignment56"> <property name="visible">True</property> - <property name="right_padding">12</property> - <property name="top_padding">12</property> - <property name="yalign">0.4</property> + <property name="can_focus">False</property> + <property name="yalign">0.40000000596046448</property> <property name="yscale">0</property> + <property name="top_padding">12</property> + <property name="right_padding">12</property> <child> <object class="GtkVBox" id="vbox9"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</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="GtkAlignment" id="alignment19"> <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="yalign">1</property> <property name="bottom_padding">4</property> <property name="left_padding">4</property> <property name="right_padding">4</property> - <property name="yalign">1</property> <child> <object class="GtkImage" id="preview_button_image"> <property name="width_request">448</property> <property name="height_request">200</property> <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="pixel_size">128</property> <property name="icon_name">hb-icon</property> - <property name="pixel-size">128</property> - <signal name="size_allocate" handler="preview_button_size_allocate_cb"/> + <signal name="size-allocate" handler="preview_button_size_allocate_cb" swapped="no"/> </object> </child> </object> @@ -1757,21 +1970,25 @@ This setting allows you to synchronize the files.</property> <child> <object class="GtkAlignment" id="picture_summary2"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="yalign">0</property> <property name="xscale">0</property> <property name="yscale">0</property> <child> <object class="GtkHBox" id="hbox7"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="spacing">4</property> <child> <object class="GtkLabel" id="label10"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">Presentation Dimensions:</property> <property name="justify">right</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> @@ -1779,16 +1996,17 @@ This setting allows you to synchronize the files.</property> <object class="GtkLabel" id="preview_dims"> <property name="width_request">85</property> <property name="visible">True</property> - <property name="xalign">0.2</property> + <property name="can_focus">False</property> + <property name="xalign">0.20000000298023224</property> <property name="yalign">0</property> <property name="label" translatable="yes">--</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> - </object> </child> </object> @@ -1812,6 +2030,7 @@ This setting allows you to synchronize the files.</property> <child type="tab"> <object class="GtkLabel" id="picture_label"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">Summary</property> </object> <packing> @@ -1821,62 +2040,71 @@ This setting allows you to synchronize the files.</property> <child> <object class="GtkVBox" id="vbox22"> <property name="visible">True</property> + <property name="can_focus">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="spacing">8</property> <child> <object class="GtkHBox" id="hbox17"> <property name="visible">True</property> + <property name="can_focus">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="spacing">48</property> <child> <object class="GtkAlignment" id="alignment14"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">48</property> <property name="left_padding">24</property> <child> <object class="GtkTable" id="table15"> - <property name="row_spacing">5</property> - <property name="column_spacing">5</property> - <property name="n_rows">6</property> - <property name="n_columns">2</property> <property name="visible">True</property> + <property name="can_focus">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="n_rows">6</property> + <property name="n_columns">2</property> + <property name="column_spacing">5</property> + <property name="row_spacing">5</property> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> <child> <object class="GtkLabel" id="label46"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="label" translatable="yes">Video Encoder:</property> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - <property name="y_options"></property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkComboBox" id="VideoEncoder"> <property name="visible">True</property> - <property name="tooltip-text" translatable="yes">Available video encoders.</property> - <signal handler="vcodec_changed_cb" name="changed"/> + <property name="can_focus">False</property> + <property name="tooltip_text" translatable="yes">Available video encoders.</property> + <signal name="changed" handler="vcodec_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="y_options"></property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkLabel" id="label47"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> <property name="label" translatable="yes">Framerate:</property> @@ -1884,85 +2112,82 @@ This setting allows you to synchronize the files.</property> <packing> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - <property name="y_options"></property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkComboBox" id="VideoFramerate"> <property name="visible">True</property> + <property name="can_focus">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">Output framerate. 'Same as source' is recommended. If your source video has a variable framerate, 'Same as source' will preserve it.</property> - <signal handler="framerate_changed_cb" name="changed"/> + <property name="tooltip_text" translatable="yes">Output framerate. 'Same as source' is recommended. If your source video has a variable framerate, 'Same as source' will preserve it.</property> + <signal name="changed" handler="framerate_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="y_options"></property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkRadioButton" id="VideoFramerateCFR"> + <property name="label" translatable="yes">Constant Framerate</property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="receives_default">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">Enables constant framerate output.</property> - <property name="label" translatable="yes">Constant Framerate</property> + <property name="tooltip_text" translatable="yes">Enables constant framerate output.</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal handler="setting_widget_changed_cb" name="toggled"/> + <signal name="toggled" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> + <property name="right_attach">2</property> <property name="top_attach">2</property> <property name="bottom_attach">3</property> - <property name="left_attach">0</property> - <property name="right_attach">2</property> - <property name="y_options"></property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkRadioButton" id="VideoFrameratePFR"> + <property name="label" translatable="yes">Peak Framerate (VFR)</property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="receives_default">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">Enables variable framerate output with a peak rate determined by the framerate setting. VFR is not compatible with some players.</property> - <property name="label" translatable="yes">Peak Framerate (VFR)</property> + <property name="tooltip_text" translatable="yes">Enables variable framerate output with a peak rate determined by the framerate setting. VFR is not compatible with some players.</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> <property name="group">VideoFramerateCFR</property> - <signal handler="setting_widget_changed_cb" name="toggled"/> + <signal name="toggled" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> + <property name="right_attach">2</property> <property name="top_attach">3</property> <property name="bottom_attach">4</property> - <property name="left_attach">0</property> - <property name="right_attach">2</property> - <property name="y_options"></property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkRadioButton" id="VideoFramerateVFR"> + <property name="label" translatable="yes">Variable Framerate</property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="receives_default">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">Enables variable framerate output. VFR is not compatible with some players.</property> - <property name="label" translatable="yes">Variable Framerate</property> + <property name="tooltip_text" translatable="yes">Enables variable framerate output. VFR is not compatible with some players.</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> <property name="group">VideoFramerateCFR</property> - <signal handler="setting_widget_changed_cb" name="toggled"/> + <signal name="toggled" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> + <property name="right_attach">2</property> <property name="top_attach">3</property> <property name="bottom_attach">4</property> - <property name="left_attach">0</property> - <property name="right_attach">2</property> - <property name="y_options"></property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> + <property name="y_options"/> </packing> </child> </object> @@ -1970,90 +2195,118 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkAlignment" id="alignment10"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">48</property> <property name="right_padding">24</property> <child> <object class="GtkTable" id="table8"> - <property name="row_spacing">5</property> - <property name="column_spacing">5</property> - <property name="n_rows">6</property> - <property name="n_columns">3</property> <property name="visible">True</property> + <property name="can_focus">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="n_rows">6</property> + <property name="n_columns">3</property> + <property name="column_spacing">5</property> + <property name="row_spacing">5</property> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> <child> <object class="GtkScale" id="VideoQualitySlider"> - <property name="orientation">horizontal</property> <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">Set the desired quality factor. The encoder targets a certain quality. The scale used by each video encoder is different. + <property name="tooltip_text" translatable="yes">Set the desired quality factor. The encoder targets a certain quality. The scale used by each video encoder is different. x264's scale is logarithmic and lower values coorespond to higher quality. So small decreases in value will result in progressively larger increases in the resulting file size. A value of 0 means lossless and will result in a file size that is larger than the original source, unless the source was also lossless. FFMpeg's and Theora's scale is more linear. These encoders do not have a lossless mode.</property> <property name="adjustment">adjustment5</property> <property name="digits">3</property> - <property name="value_pos">GTK_POS_TOP</property> - <signal handler="vquality_changed_cb" name="value_changed"/> - <signal handler="format_vquality_cb" name="format-value"/> + <signal name="format-value" handler="format_vquality_cb" swapped="no"/> + <signal name="value-changed" handler="vquality_changed_cb" swapped="no"/> </object> <packing> - <property name="left_attach">0</property> <property name="right_attach">3</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="y_options"></property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkRadioButton" id="vquality_type_constant"> + <property name="label" translatable="yes">Constant Quality:</property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="receives_default">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">Set the desired quality factor. The encoder targets a certain quality. The scale used by each video encoder is different. + <property name="tooltip_text" translatable="yes">Set the desired quality factor. The encoder targets a certain quality. The scale used by each video encoder is different. x264's scale is logarithmic and lower values coorespond to higher quality. So small decreases in value will result in progressively larger increases in the resulting file size. A value of 0 means lossless and will result in a file size that is larger than the original source, unless the source was also lossless. FFMpeg's and Theora's scale is more linear. These encoders do not have a lossless mode.</property> - <property name="label" translatable="yes">Constant Quality:</property> + <property name="xalign">0.5</property> <property name="active">True</property> <property name="draw_indicator">True</property> - <signal handler="setting_widget_changed_cb" name="toggled"/> + <signal name="toggled" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="x_options"></property> + <property name="x_options"/> <property name="y_options">GTK_FILL</property> </packing> </child> <child> <object class="GtkRadioButton" id="vquality_type_bitrate"> + <property name="label" translatable="yes">Bitrate (kbps): </property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="receives_default">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">Set the average bitrate. The instantaneous bitrate can be much higher or lower at any point in time. But the average over a long duration will be the value set here. If you need to limit instantaneous bitrate, look into x264's vbv-bufsize and vbv-maxrate settings.</property> - <property name="label" translatable="yes">Bitrate (kbps): </property> - <property name="group">vquality_type_constant</property> + <property name="tooltip_text" translatable="yes">Set the average bitrate. The instantaneous bitrate can be much higher or lower at any point in time. But the average over a long duration will be the value set here. If you need to limit instantaneous bitrate, look into x264's vbv-bufsize and vbv-maxrate settings.</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal handler="setting_widget_changed_cb" name="toggled"/> + <property name="group">vquality_type_constant</property> + <signal name="toggled" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="top_attach">2</property> <property name="bottom_attach">3</property> - <property name="y_options"></property> <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> <child> @@ -2061,164 +2314,173 @@ This setting allows you to synchronize the files.</property> <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">Set the average bitrate. The instantaneous bitrate can be much higher or lower at any point in time. But the average over a long duration will be the value set here. If you need to limit instantaneous bitrate, look into x264 vbv-bufsize and vbv-maxrate.</property> + <property name="tooltip_text" translatable="yes">Set the average bitrate. The instantaneous bitrate can be much higher or lower at any point in time. But the average over a long duration will be the value set here. If you need to limit instantaneous bitrate, look into x264 vbv-bufsize and vbv-maxrate.</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> <property name="adjustment">adjustment3</property> - <signal handler="setting_widget_changed_cb" name="value_changed"/> + <signal name="value-changed" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> <property name="left_attach">1</property> <property name="right_attach">2</property> <property name="top_attach">2</property> <property name="bottom_attach">3</property> - <property name="y_options"></property> - <property name="x_options"></property> + <property name="x_options"/> + <property name="y_options"/> </packing> </child> <child> <object class="GtkCheckButton" id="VideoTwoPass"> + <property name="label" translatable="yes">2-Pass Encoding</property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="receives_default">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">Perform 2 Pass Encoding. The 'Bitrate' option is prerequisite. During the 1st pass, statistics about the video are collected. Then in the second pass, those statistics are used to make bitrate allocation decisions.</property> - <property name="label" translatable="yes">2-Pass Encoding</property> + <property name="tooltip_text" translatable="yes">Perform 2 Pass Encoding. The 'Bitrate' option is prerequisite. During the 1st pass, statistics about the video are collected. Then in the second pass, those statistics are used to make bitrate allocation decisions.</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal handler="setting_widget_changed_cb" name="toggled"/> + <signal name="toggled" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="top_attach">3</property> <property name="bottom_attach">4</property> - <property name="y_options"></property> <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkAlignment" id="alignment13"> <property name="visible">True</property> + <property name="can_focus">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="left_padding">16</property> <child> <object class="GtkCheckButton" id="VideoTurboTwoPass"> + <property name="label" translatable="yes">Turbo First Pass</property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="receives_default">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">During the 1st pass of a 2 pass encode, use settings that speed things along.</property> - <property name="label" translatable="yes">Turbo First Pass</property> + <property name="tooltip_text" translatable="yes">During the 1st pass of a 2 pass encode, use settings that speed things along.</property> + <property name="xalign">0.5</property> <property name="active">True</property> <property name="draw_indicator">True</property> - <signal handler="setting_widget_changed_cb" name="toggled"/> + <signal name="toggled" handler="setting_widget_changed_cb" swapped="no"/> </object> </child> </object> <packing> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="top_attach">4</property> <property name="bottom_attach">5</property> - <property name="y_options"></property> <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> </object> </child> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="padding">2</property> <property name="position">1</property> - <property name="expand">True</property> </packing> </child> </object> <packing> + <property name="expand">False</property> + <property name="fill">True</property> <property name="padding">2</property> <property name="position">0</property> - <property name="expand">False</property> </packing> </child> <child> <object class="GtkAlignment" id="alignment55"> <property name="visible">True</property> + <property name="can_focus">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="left_padding">24</property> <property name="right_padding">24</property> <child> <object class="GtkVBox" id="x264VideoSettings"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</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="GtkCheckButton" id="x264UseAdvancedOptions"> + <property name="label" translatable="yes">Use Advanced Options</property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="receives_default">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">Use advanced options Tab for x264 settings. + <property name="tooltip_text" translatable="yes">Use advanced options Tab for x264 settings. Use at your own risk!</property> - <property name="label" translatable="yes">Use Advanced Options</property> - <property name="active">False</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal handler="x264_use_advanced_options_changed_cb" name="toggled"/> + <signal name="toggled" handler="x264_use_advanced_options_changed_cb" swapped="no"/> </object> <packing> <property name="expand">True</property> + <property name="fill">True</property> <property name="padding">2</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkTable" id="x264VideoSettingsTable"> - <property name="row_spacing">5</property> - <property name="column_spacing">5</property> - <property name="n_rows">4</property> - <property name="n_columns">6</property> <property name="visible">True</property> + <property name="can_focus">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="n_rows">4</property> + <property name="n_columns">6</property> + <property name="column_spacing">5</property> + <property name="row_spacing">5</property> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> <child> <object class="GtkLabel" id="x264PresetLabel"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> <property name="label" translatable="yes">x264 Preset:</property> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - <property name="y_options"></property> <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkScale" id="x264PresetSlider"> - <property name="orientation">horizontal</property> <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">Adjusts x264 settings to trade off compression efficiency against encoding speed. + <property name="tooltip_text" translatable="yes">Adjusts x264 settings to trade off compression efficiency against encoding speed. This establishes your default x264 settings. Tunes, profiles, levels and advanced option string will be applied to this. You should generally set this option to the slowest you can bear since slower settings will result in better quality or smaller files.</property> <property name="adjustment">x264PresetRange</property> <property name="digits">0</property> - <property name="value_pos">GTK_POS_RIGHT</property> - <signal handler="x264_setting_changed_cb" name="value_changed"/> - <signal handler="format_x264_preset_cb" name="format-value"/> + <property name="value_pos">right</property> + <signal name="format-value" handler="format_x264_preset_cb" swapped="no"/> + <signal name="value-changed" handler="x264_setting_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> <property name="left_attach">1</property> <property name="right_attach">6</property> - <property name="y_options"></property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkLabel" id="x264TuneLabel"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> <property name="label" translatable="yes">x264 Tune:</property> @@ -2226,82 +2488,83 @@ This setting allows you to synchronize the files.</property> <packing> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - <property name="y_options"></property> <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkComboBox" id="x264Tune"> <property name="visible">True</property> + <property name="can_focus">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">Tune settings to optimize for common scenarios. + <property name="tooltip_text" translatable="yes">Tune settings to optimize for common scenarios. This can improve effeciency for particular source characteristics or set characteristics of the output file. Changes will be applied after the preset but before all other parameters.</property> - <signal handler="x264_setting_changed_cb" name="changed"/> + <signal name="changed" handler="x264_setting_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="y_options"></property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkCheckButton" id="x264FastDecode"> + <property name="label" translatable="yes">Fast Decode</property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="receives_default">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">Reduce decoder CPU usage. + <property name="tooltip_text" translatable="yes">Reduce decoder CPU usage. Set this if your device is struggling to play the output (dropped frames).</property> - <property name="label" translatable="yes">Fast Decode</property> - <property name="active">False</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal handler="x264_setting_changed_cb" name="toggled"/> + <signal name="toggled" handler="x264_setting_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> <property name="left_attach">2</property> <property name="right_attach">3</property> - <property name="y_options"></property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> <property name="x_options">GTK_FILL</property> + <property name="y_options"/> <property name="x_padding">20</property> </packing> </child> <child> <object class="GtkCheckButton" id="x264ZeroLatency"> - <property name="visible">False</property> + <property name="label" translatable="yes">Zero Latency</property> <property name="can_focus">True</property> + <property name="receives_default">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">Minimize latency between input to encoder and output of decoder. + <property name="tooltip_text" translatable="yes">Minimize latency between input to encoder and output of decoder. This is useful for broadcast of live streams. Since HandBrake is not suitable for live stream broadcast purposes, this setting is of little value here.</property> - <property name="label" translatable="yes">Zero Latency</property> - <property name="active">False</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal handler="x264_setting_changed_cb" name="toggled"/> + <signal name="toggled" handler="x264_setting_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> <property name="left_attach">3</property> <property name="right_attach">4</property> - <property name="y_options"></property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> <property name="x_options">GTK_FILL</property> + <property name="y_options"/> <property name="x_padding">20</property> </packing> </child> <child> <object class="GtkLabel" id="h264ProfileLabel"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> <property name="label" translatable="yes">H.264 Profile:</property> @@ -2309,33 +2572,33 @@ This setting allows you to synchronize the files.</property> <packing> <property name="top_attach">2</property> <property name="bottom_attach">3</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - <property name="y_options"></property> <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkComboBox" id="h264Profile"> <property name="visible">True</property> + <property name="can_focus">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">Limit the H.264 profile of the output stream. + <property name="tooltip_text" translatable="yes">Limit the H.264 profile of the output stream. Overrides all other settings.</property> - <signal handler="x264_setting_changed_cb" name="changed"/> + <signal name="changed" handler="x264_setting_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">2</property> - <property name="bottom_attach">3</property> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="y_options"></property> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkLabel" id="h264LevelLabel"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> <property name="label" translatable="yes">H.264 Level:</property> @@ -2343,46 +2606,48 @@ This setting allows you to synchronize the files.</property> <packing> <property name="top_attach">3</property> <property name="bottom_attach">4</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - <property name="y_options"></property> <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkComboBox" id="h264Level"> <property name="visible">True</property> + <property name="can_focus">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">Sets and ensures compliance with the specified H.264 level. + <property name="tooltip_text" translatable="yes">Sets and ensures compliance with the specified H.264 level. Overrides all other settings.</property> - <signal handler="x264_setting_changed_cb" name="changed"/> + <signal name="changed" handler="x264_setting_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">3</property> - <property name="bottom_attach">4</property> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="y_options"></property> + <property name="top_attach">3</property> + <property name="bottom_attach">4</property> <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkHBox" id="hbox43"> <property name="visible">True</property> + <property name="can_focus">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="spacing">5</property> <child> <object class="GtkLabel" id="x264OptionExtraLabel"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> <property name="label" translatable="yes">More Settings:</property> </object> <packing> - <property name="position">0</property> <property name="expand">False</property> + <property name="fill">True</property> <property name="padding">5</property> + <property name="position">0</property> </packing> </child> <child> @@ -2390,39 +2655,39 @@ This setting allows you to synchronize the files.</property> <property name="height_request">60</property> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property> - <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property> <property name="shadow_type">etched-in</property> <child> <object class="GtkTextView" id="x264OptionExtra"> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="tooltip-text" translatable="yes">Additional x264 settings. + <property name="tooltip_text" translatable="yes">Additional x264 settings. Colon separated list of x264 options.</property> - <property name="wrap_mode">GTK_WRAP_CHAR</property> + <property name="wrap_mode">char</property> <property name="accepts_tab">False</property> </object> </child> </object> <packing> <property name="expand">True</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> - <property name="top_attach">2</property> - <property name="bottom_attach">4</property> <property name="left_attach">2</property> <property name="right_attach">6</property> - <property name="y_options"></property> + <property name="top_attach">2</property> + <property name="bottom_attach">4</property> <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> </object> <packing> <property name="expand">True</property> + <property name="fill">True</property> <property name="padding">2</property> <property name="position">1</property> </packing> @@ -2432,15 +2697,20 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">True</property> + <property name="fill">True</property> <property name="padding">2</property> <property name="position">1</property> </packing> </child> </object> + <packing> + <property name="position">1</property> + </packing> </child> <child type="tab"> <object class="GtkLabel" id="label65"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">Video</property> </object> <packing> @@ -2450,12 +2720,13 @@ This setting allows you to synchronize the files.</property> </child> <child> <object class="GtkVBox" id="audio_tab"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</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="GtkAlignment" id="alignment18"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">12</property> <property name="bottom_padding">2</property> @@ -2463,21 +2734,44 @@ This setting allows you to synchronize the files.</property> <property name="right_padding">2</property> <child> <object class="GtkVBox" id="vbox17"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">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="spacing">2</property> <child> <object class="GtkTable" id="table16"> <property name="visible">True</property> + <property name="can_focus">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="n_rows">2</property> <property name="n_columns">3</property> - <property name="row_spacing">5</property> <property name="column_spacing">5</property> + <property name="row_spacing">5</property> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> <child> <object class="GtkAlignment" id="alignment47"> <property name="visible">True</property> + <property name="can_focus">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="yalign">0</property> <property name="yscale">0</property> @@ -2487,12 +2781,13 @@ This setting allows you to synchronize the files.</property> <property name="can_focus">True</property> <property name="receives_default">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">Add new audio settings to the list</property> - <property name="relief">GTK_RELIEF_NONE</property> - <signal handler="audio_add_clicked_cb" name="clicked"/> + <property name="tooltip_text" translatable="yes">Add new audio settings to the list</property> + <property name="relief">none</property> + <signal name="clicked" handler="audio_add_clicked_cb" swapped="no"/> <child> <object class="GtkImage" id="image4"> <property name="visible">True</property> + <property name="can_focus">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="stock">gtk-add</property> </object> @@ -2501,17 +2796,14 @@ This setting allows you to synchronize the files.</property> </child> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkAlignment" id="alignment37"> <property name="visible">True</property> + <property name="can_focus">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="yalign">0</property> <property name="yscale">0</property> @@ -2521,12 +2813,13 @@ This setting allows you to synchronize the files.</property> <property name="can_focus">True</property> <property name="receives_default">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">Remove the selected audio settings</property> - <property name="relief">GTK_RELIEF_NONE</property> - <signal handler="audio_remove_clicked_cb" name="clicked"/> + <property name="tooltip_text" translatable="yes">Remove the selected audio settings</property> + <property name="relief">none</property> + <signal name="clicked" handler="audio_remove_clicked_cb" swapped="no"/> <child> <object class="GtkImage" id="image8"> <property name="visible">True</property> + <property name="can_focus">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="stock">gtk-remove</property> </object> @@ -2535,232 +2828,244 @@ This setting allows you to synchronize the files.</property> </child> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> <property name="left_attach">1</property> <property name="right_attach">2</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkExpander" id="AdvancedAudioExpander"> <property name="visible">True</property> + <property name="can_focus">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="expanded">False</property> - <property name="label" translatable="yes">Advanced</property> <child> <object class="GtkVBox" id="vbox44"> <property name="visible">True</property> + <property name="can_focus">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="spacing">5</property> <child> <object class="GtkTable" id="AdvancedAudioPassTable"> - <property name="visible">False</property> + <property name="can_focus">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="n_rows">2</property> <property name="n_columns">8</property> - <property name="row_spacing">5</property> <property name="column_spacing">5</property> + <property name="row_spacing">5</property> <child> <object class="GtkHBox" id="hbox40"> <property name="visible">True</property> + <property name="can_focus">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="spacing">5</property> <child> <object class="GtkLabel" id="labela3"> <property name="visible">True</property> + <property name="can_focus">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="xalign">1</property> <property name="label" translatable="yes">Auto Passthru:</property> </object> <packing> - <property name="position">0</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkCheckButton" id="AudioAllowMP3Pass"> + <property name="label" translatable="yes">MP3</property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="receives_default">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">Enable this if your playback device supports AAC. This permits AAC passthru to be selected when automatic passthru selection is enabled.</property> - <property name="label" translatable="yes">MP3</property> + <property name="tooltip_text" translatable="yes">Enable this if your playback device supports AAC. This permits AAC passthru to be selected when automatic passthru selection is enabled.</property> + <property name="xalign">0.5</property> <property name="active">True</property> <property name="draw_indicator">True</property> - <signal handler="global_audio_widget_changed_cb" name="toggled"/> + <signal name="toggled" handler="global_audio_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="position">1</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> </packing> </child> <child> <object class="GtkCheckButton" id="AudioAllowAACPass"> + <property name="label" translatable="yes">AAC</property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="receives_default">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">Enable this if your playback device supports AAC. This permits AAC passthru to be selected when automatic passthru selection is enabled.</property> - <property name="label" translatable="yes">AAC</property> + <property name="tooltip_text" translatable="yes">Enable this if your playback device supports AAC. This permits AAC passthru to be selected when automatic passthru selection is enabled.</property> + <property name="xalign">0.5</property> <property name="active">True</property> <property name="draw_indicator">True</property> - <signal handler="global_audio_widget_changed_cb" name="toggled"/> + <signal name="toggled" handler="global_audio_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="position">2</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">2</property> </packing> </child> <child> <object class="GtkCheckButton" id="AudioAllowAC3Pass"> + <property name="label" translatable="yes">AC-3</property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="receives_default">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">Enable this if your playback device supports AC-3. This permits AC-3 passthru to be selected when automatic passthru selection is enabled.</property> - <property name="label" translatable="yes">AC-3</property> + <property name="tooltip_text" translatable="yes">Enable this if your playback device supports AC-3. This permits AC-3 passthru to be selected when automatic passthru selection is enabled.</property> + <property name="xalign">0.5</property> <property name="active">True</property> <property name="draw_indicator">True</property> - <signal handler="global_audio_widget_changed_cb" name="toggled"/> + <signal name="toggled" handler="global_audio_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="position">3</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">3</property> </packing> </child> <child> <object class="GtkCheckButton" id="AudioAllowDTSPass"> + <property name="label" translatable="yes">DTS</property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="receives_default">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">Enable this if your playback device supports DTS. This permits DTS passthru to be selected when automatic passthru selection is enabled.</property> - <property name="label" translatable="yes">DTS</property> + <property name="tooltip_text" translatable="yes">Enable this if your playback device supports DTS. This permits DTS passthru to be selected when automatic passthru selection is enabled.</property> + <property name="xalign">0.5</property> <property name="active">True</property> <property name="draw_indicator">True</property> - <signal handler="global_audio_widget_changed_cb" name="toggled"/> + <signal name="toggled" handler="global_audio_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="position">4</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">4</property> </packing> </child> <child> <object class="GtkCheckButton" id="AudioAllowDTSHDPass"> + <property name="label" translatable="yes">DTS-HD</property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="receives_default">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">Enable this if your playback device supports DTS-HD. This permits DTS-HD passthru to be selected when automatic passthru selection is enabled.</property> - <property name="label" translatable="yes">DTS-HD</property> + <property name="tooltip_text" translatable="yes">Enable this if your playback device supports DTS-HD. This permits DTS-HD passthru to be selected when automatic passthru selection is enabled.</property> + <property name="xalign">0.5</property> <property name="active">True</property> <property name="draw_indicator">True</property> - <signal handler="global_audio_widget_changed_cb" name="toggled"/> + <signal name="toggled" handler="global_audio_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="position">5</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">5</property> </packing> </child> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="left_attach">0</property> <property name="right_attach">4</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkLabel" id="labela4"> <property name="visible">True</property> + <property name="can_focus">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="xalign">1</property> <property name="label" translatable="yes">Passthru Fallback:</property> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> <property name="left_attach">4</property> <property name="right_attach">7</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkComboBox" id="AudioEncoderFallback"> <property name="visible">True</property> + <property name="can_focus">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">Set the audio codec to encode with when a suitable track can not be found for audio passthru.</property> - <signal handler="global_audio_widget_changed_cb" name="changed"/> + <property name="tooltip_text" translatable="yes">Set the audio codec to encode with when a suitable track can not be found for audio passthru.</property> + <signal name="changed" handler="global_audio_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> <property name="left_attach">7</property> <property name="right_attach">8</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkHSeparator" id="separator1"> <property name="visible">True</property> - <property name="orientation">horizontal</property> + <property name="can_focus">False</property> </object> <packing> + <property name="right_attach">8</property> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="left_attach">0</property> - <property name="right_attach">8</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> </object> <packing> - <property name="position">0</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkTable" id="table14"> <property name="visible">True</property> + <property name="can_focus">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="n_rows">2</property> <property name="n_columns">8</property> - <property name="row_spacing">5</property> <property name="column_spacing">5</property> + <property name="row_spacing">5</property> <child> <object class="GtkAlignment" id="alignment59"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> <property name="top_padding">8</property> <child> <object class="GtkLabel" id="audio_name_label"> <property name="visible">True</property> - <property name="xalign">0.5</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">Track Name:</property> <property name="use_markup">True</property> </object> </child> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkAlignment" id="alignment25"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> <child> @@ -2768,219 +3073,252 @@ This setting allows you to synchronize the files.</property> <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">Set the audio track name. Players may use this in the audio selection list.</property> <property name="max_length">40</property> <property name="activates_default">True</property> <property name="width_chars">20</property> <property name="truncate_multiline">True</property> - <property name="tooltip-text" translatable="yes">Set the audio track name. Players may use this in the audio selection list.</property> - <signal handler="audio_widget_changed_cb" name="changed"/> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <signal name="changed" handler="audio_widget_changed_cb" swapped="no"/> </object> </child> </object> <packing> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkLabel" id="AudioSamplerateLabel"> <property name="visible">True</property> - <property name="xalign">0.5</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">Sample Rate:</property> <property name="use_markup">True</property> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> <property name="left_attach">1</property> <property name="right_attach">2</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkAlignment" id="alignment34"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0.5</property> <property name="xscale">0</property> <child> <object class="GtkComboBox" id="AudioSamplerate"> <property name="visible">True</property> + <property name="can_focus">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">Set the sample rate of the output audio track.</property> - <signal handler="audio_widget_changed_cb" name="changed"/> + <property name="tooltip_text" translatable="yes">Set the sample rate of the output audio track.</property> + <signal name="changed" handler="audio_widget_changed_cb" swapped="no"/> </object> </child> </object> <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> <property name="left_attach">1</property> <property name="right_attach">2</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkLabel" id="AudioTrackGainLabel"> <property name="visible">True</property> - <property name="xalign">0.5</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">Gain:</property> <property name="use_markup">True</property> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> <property name="left_attach">2</property> <property name="right_attach">3</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkHBox" id="hbox34"> <property name="visible">True</property> + <property name="can_focus">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="spacing">0</property> <child> <object class="GtkScaleButton" id="AudioTrackGain"> <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="receives_default">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_markup"><b>Audio Gain:</b> Adjust the amplification or attenuation of the output audio track.</property> <property name="orientation">vertical</property> + <property name="adjustment">adjustment35</property> <property name="icons">audio-volume-muted audio-volume-high audio-volume-low audio-volume-medium</property> - <property name="adjustment">adjustment35</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-markup" translatable="yes"><b>Audio Gain:</b> Adjust the amplification or attenuation of the output audio track.</property> - <signal handler="gain_widget_changed_cb" name="value_changed"/> + <signal name="value-changed" handler="gain_widget_changed_cb" swapped="no"/> + <child internal-child="plus_button"> + <object class="GtkButton" id="scalebutton-plus_button1"> + <property name="can_focus">False</property> + <property name="receives_default">False</property> + </object> + </child> + <child internal-child="minus_button"> + <object class="GtkButton" id="scalebutton-minus_button1"> + <property name="can_focus">False</property> + <property name="receives_default">False</property> + </object> + </child> </object> <packing> - <property name="position">0</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="AudioTrackGainValue"> <property name="visible">True</property> - <property name="width_chars">6</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="label" translatable="yes">0dB</property> <property name="use_markup">True</property> + <property name="width_chars">6</property> </object> <packing> - <property name="position">1</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> </packing> </child> </object> <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> <property name="left_attach">2</property> <property name="right_attach">3</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkLabel" id="AudioTrackDRCSliderLabel"> <property name="visible">True</property> - <property name="xalign">0.5</property> - <property name="label" translatable="yes">DRC:</property> - <property name="tooltip-markup" translatable="yes"><b>Dynamic Range Compression:</b> Adjust the dynamic range of the output audio track. + <property name="can_focus">False</property> + <property name="tooltip_markup"><b>Dynamic Range Compression:</b> Adjust the dynamic range of the output audio track. For source audio that has a wide dynamic range (very loud and very soft sequences), DRC allows you to 'compress' the range by making loud sections softer and soft sections louder.</property> + <property name="label" translatable="yes">DRC:</property> <property name="use_markup">True</property> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> <property name="left_attach">3</property> <property name="right_attach">4</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkHBox" id="hbox33"> <property name="visible">True</property> + <property name="can_focus">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="spacing">0</property> <child> <object class="GtkScaleButton" id="AudioTrackDRCSlider"> <property name="visible">True</property> - <property name="orientation">vertical</property> - <property name="icons">audio-input-microphone</property> - <property name="adjustment">adjustment28</property> + <property name="can_focus">False</property> + <property name="receives_default">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-markup" translatable="yes"><b>Dynamic Range Compression:</b> Adjust the dynamic range of the output audio track. + <property name="tooltip_markup"><b>Dynamic Range Compression:</b> Adjust the dynamic range of the output audio track. For source audio that has a wide dynamic range (very loud and very soft sequences), DRC allows you to 'compress' the range by making loud sections softer and soft sections louder.</property> - <signal handler="drc_widget_changed_cb" name="value_changed"/> + <property name="orientation">vertical</property> + <property name="adjustment">adjustment28</property> + <property name="icons">audio-input-microphone</property> + <signal name="value-changed" handler="drc_widget_changed_cb" swapped="no"/> + <child internal-child="plus_button"> + <object class="GtkButton" id="scalebutton-plus_button2"> + <property name="can_focus">False</property> + <property name="receives_default">False</property> + </object> + </child> + <child internal-child="minus_button"> + <object class="GtkButton" id="scalebutton-minus_button2"> + <property name="can_focus">False</property> + <property name="receives_default">False</property> + </object> + </child> </object> <packing> - <property name="position">0</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="AudioTrackDRCValue"> <property name="visible">True</property> - <property name="width_chars">4</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="label" translatable="yes">Off</property> <property name="use_markup">True</property> + <property name="width_chars">4</property> </object> <packing> - <property name="position">1</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> </packing> </child> </object> <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> <property name="left_attach">3</property> <property name="right_attach">4</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkCheckButton" id="AudioTrackQualityEnable"> + <property name="label" translatable="yes">Quality:</property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="receives_default">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="label" translatable="yes">Quality:</property> - <property name="tooltip-markup" translatable="yes"><b>Quality:</b> For output codec's that support it, adjust the quality of the output.</property> - <property name="active">False</property> + <property name="tooltip_markup"><b>Quality:</b> For output codec's that support it, adjust the quality of the output.</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal handler="audio_widget_changed_cb" name="toggled"/> + <signal name="toggled" handler="audio_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> <property name="left_attach">4</property> <property name="right_attach">5</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkHBox" id="hbox32"> <property name="visible">True</property> + <property name="can_focus">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="spacing">0</property> <child> <object class="GtkScaleButton" id="AudioTrackQuality"> <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="receives_default">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_markup"><b>Quality:</b> For output codec's that support it, adjust the quality of the output.</property> <property name="orientation">vertical</property> + <property name="adjustment">audio_quality_adj</property> <property name="icons">weather-storm weather-clear weather-storm @@ -2989,75 +3327,84 @@ This setting allows you to synchronize the files.</property> weather-overcast weather-few-clouds weather-clear</property> - <property name="adjustment">audio_quality_adj</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-markup" translatable="yes"><b>Quality:</b> For output codec's that support it, adjust the quality of the output.</property> - <signal handler="quality_widget_changed_cb" name="value_changed"/> + <signal name="value-changed" handler="quality_widget_changed_cb" swapped="no"/> + <child internal-child="plus_button"> + <object class="GtkButton" id="scalebutton-plus_button3"> + <property name="can_focus">False</property> + <property name="receives_default">False</property> + </object> + </child> + <child internal-child="minus_button"> + <object class="GtkButton" id="scalebutton-minus_button3"> + <property name="can_focus">False</property> + <property name="receives_default">False</property> + </object> + </child> </object> <packing> - <property name="position">0</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="AudioTrackQualityValue"> <property name="visible">True</property> - <property name="width_chars">4</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="label" translatable="yes">00.0</property> <property name="use_markup">True</property> + <property name="width_chars">4</property> </object> <packing> - <property name="position">1</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> </packing> </child> </object> <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> <property name="left_attach">4</property> <property name="right_attach">5</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkLabel" id="filler_label0"> <property name="visible">True</property> - <property name="label" translatable="yes"></property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="use_markup">True</property> </object> <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> <property name="left_attach">5</property> <property name="right_attach">8</property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> - <property name="y_options"></property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkLabel" id="filler_label1"> <property name="visible">True</property> - <property name="label" translatable="yes"></property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="use_markup">True</property> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> <property name="left_attach">5</property> <property name="right_attach">8</property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> </object> <packing> - <property name="position">1</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> </packing> </child> </object> @@ -3065,145 +3412,144 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkTable" id="table1"> <property name="visible">True</property> + <property name="can_focus">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="n_rows">2</property> <property name="n_columns">4</property> <child> <object class="GtkLabel" id="label35"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">Track</property> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkLabel" id="label68"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">Encoder</property> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> <property name="left_attach">1</property> <property name="right_attach">2</property> <property name="x_options">GTK_FILL</property> + <property name="y_options"/> <property name="x_padding">12</property> - <property name="y_options"></property> </packing> </child> <child> <object class="GtkLabel" id="AudioBitrateLabel"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">Bitrate</property> - <property name="justify">GTK_JUSTIFY_CENTER</property> + <property name="justify">center</property> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> <property name="left_attach">2</property> <property name="right_attach">3</property> <property name="x_options">GTK_FILL</property> + <property name="y_options"/> <property name="x_padding">10</property> - <property name="y_options"></property> </packing> </child> <child> <object class="GtkLabel" id="AudioMixdownLabel"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">Mix</property> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> <property name="left_attach">3</property> <property name="right_attach">4</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkComboBox" id="AudioTrack"> <property name="width_request">180</property> <property name="visible">True</property> + <property name="can_focus">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">List of audio tracks available from your source.</property> - <signal handler="audio_track_changed_cb" name="changed"/> + <property name="tooltip_text" translatable="yes">List of audio tracks available from your source.</property> + <signal name="changed" handler="audio_track_changed_cb" swapped="no"/> </object> <packing> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkComboBox" id="AudioEncoder"> <property name="visible">True</property> + <property name="can_focus">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">Set the audio codec to encode this track with.</property> - <signal handler="audio_codec_changed_cb" name="changed"/> + <property name="tooltip_text" translatable="yes">Set the audio codec to encode this track with.</property> + <signal name="changed" handler="audio_codec_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> <property name="left_attach">1</property> <property name="right_attach">2</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkComboBox" id="AudioBitrate"> <property name="visible">True</property> + <property name="can_focus">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">Set the bitrate to encode this track with.</property> - <signal handler="audio_widget_changed_cb" name="changed"/> + <property name="tooltip_text" translatable="yes">Set the bitrate to encode this track with.</property> + <signal name="changed" handler="audio_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> <property name="left_attach">2</property> <property name="right_attach">3</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkComboBox" id="AudioMixdown"> <property name="visible">True</property> + <property name="can_focus">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">Set the mixdown of the output audio track.</property> - <signal handler="audio_mix_changed_cb" name="changed"/> + <property name="tooltip_text" translatable="yes">Set the mixdown of the output audio track.</property> + <signal name="changed" handler="audio_mix_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> <property name="left_attach">3</property> <property name="right_attach">4</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">2</property> </packing> </child> @@ -3212,31 +3558,41 @@ This setting allows you to synchronize the files.</property> <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="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property> - <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property> <child> <object class="GtkTreeView" id="audio_list"> <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="headers_clickable">True</property> + <child internal-child="selection"> + <object class="GtkTreeSelection" id="treeview-selection1"/> + </child> </object> </child> </object> <packing> <property name="expand">True</property> + <property name="fill">True</property> <property name="position">3</property> </packing> </child> </object> </child> </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> </child> </object> + <packing> + <property name="position">2</property> + </packing> </child> <child type="tab"> <object class="GtkLabel" id="label48"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">Audio</property> </object> <packing> @@ -3246,12 +3602,13 @@ This setting allows you to synchronize the files.</property> </child> <child> <object class="GtkVBox" id="subtitle_tab"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</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="GtkAlignment" id="alignment23"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">12</property> <property name="bottom_padding">2</property> @@ -3259,45 +3616,49 @@ This setting allows you to synchronize the files.</property> <property name="right_padding">2</property> <child> <object class="GtkVBox" id="vbox12"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">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="spacing">2</property> <child> <object class="GtkHBox" id="hbox45"> <property name="visible">True</property> + <property name="can_focus">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="spacing">5</property> <child> <object class="GtkButton" id="subtitle_add"> + <property name="label" translatable="yes">Subtitle</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">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">Add new subtitle to the list</property> - <property name="relief">GTK_RELIEF_NONE</property> - <property name="label" translatable="yes">Subtitle</property> + <property name="tooltip_text" translatable="yes">Add new subtitle to the list</property> <property name="image">subtitle_add_image</property> - <signal handler="subtitle_add_clicked_cb" name="clicked"/> + <property name="relief">none</property> + <signal name="clicked" handler="subtitle_add_clicked_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkButton" id="srt_add"> + <property name="label" translatable="yes">Import SRT</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">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">Add new SRT subtitle to the list</property> - <property name="relief">GTK_RELIEF_NONE</property> - <property name="label" translatable="yes">Import SRT</property> + <property name="tooltip_text" translatable="yes">Add new SRT subtitle to the list</property> <property name="image">srt_add_image</property> - <signal handler="srt_add_clicked_cb" name="clicked"/> + <property name="relief">none</property> + <signal name="clicked" handler="srt_add_clicked_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> @@ -3307,12 +3668,13 @@ This setting allows you to synchronize the files.</property> <property name="can_focus">True</property> <property name="receives_default">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">Remove the selected subtitle settings</property> - <property name="relief">GTK_RELIEF_NONE</property> - <signal handler="subtitle_remove_clicked_cb" name="clicked"/> + <property name="tooltip_text" translatable="yes">Remove the selected subtitle settings</property> + <property name="relief">none</property> + <signal name="clicked" handler="subtitle_remove_clicked_cb" swapped="no"/> <child> <object class="GtkImage" id="image2"> <property name="visible">True</property> + <property name="can_focus">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="stock">gtk-remove</property> </object> @@ -3320,162 +3682,164 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">2</property> </packing> </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkTable" id="subtitle_table"> <property name="visible">True</property> + <property name="can_focus">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="n_rows">2</property> <property name="n_columns">5</property> - <property name="column-spacing">4</property> + <property name="column_spacing">4</property> <child> <object class="GtkLabel" id="subtitle_track_label"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">Track</property> </object> <packing> <property name="x_options">GTK_FILL</property> <property name="y_options">GTK_FILL</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> </packing> </child> <child> <object class="GtkLabel" id="srt_lang_label"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">Language</property> </object> <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options">GTK_FILL</property> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options">GTK_FILL</property> </packing> </child> <child> <object class="GtkLabel" id="srt_code_label"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">Character Code</property> </object> <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options">GTK_FILL</property> <property name="left_attach">2</property> <property name="right_attach">3</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options">GTK_FILL</property> </packing> </child> <child> <object class="GtkLabel" id="srt_file_label"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">File</property> </object> <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options">GTK_FILL</property> <property name="left_attach">3</property> <property name="right_attach">4</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options">GTK_FILL</property> </packing> </child> <child> <object class="GtkLabel" id="srt_offset_label"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">Offset (ms)</property> </object> <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options">GTK_FILL</property> <property name="left_attach">4</property> <property name="right_attach">5</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options">GTK_FILL</property> </packing> </child> <child> <object class="GtkComboBox" id="SubtitleTrack"> <property name="visible">True</property> + <property name="can_focus">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">List of subtitle tracks available from your source.</property> - <signal handler="subtitle_track_changed_cb" name="changed"/> + <property name="tooltip_text" translatable="yes">List of subtitle tracks available from your source.</property> + <signal name="changed" handler="subtitle_track_changed_cb" swapped="no"/> </object> <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="top_attach">1</property> <property name="bottom_attach">2</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkComboBox" id="SrtLanguage"> <property name="visible">True</property> + <property name="can_focus">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">Set the language of this subtitle. This value will be used by players in subtitle menus.</property> - <signal handler="srt_lang_changed_cb" name="changed"/> + <property name="tooltip_text" translatable="yes">Set the language of this subtitle. This value will be used by players in subtitle menus.</property> + <signal name="changed" handler="srt_lang_changed_cb" swapped="no"/> </object> <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> <property name="left_attach">1</property> <property name="right_attach">2</property> <property name="top_attach">1</property> <property name="bottom_attach">2</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkComboBox" id="SrtCodeset"> <property name="width_request">150</property> - <property name="has_entry">True</property> <property name="visible">True</property> + <property name="can_focus">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">Set the character code used by the SRT file you are importing. SRTs come in all flavours of character sets. We translate the character set to UTF-8. The source's character code is needed in order to perform this translation.</property> - <signal handler="srt_changed_cb" name="changed"/> + <property name="tooltip_text" translatable="yes">Set the character code used by the SRT file you are importing. SRTs come in all flavours of character sets. We translate the character set to UTF-8. The source's character code is needed in order to perform this translation.</property> + <property name="has_entry">True</property> + <signal name="changed" handler="srt_changed_cb" swapped="no"/> + <child internal-child="entry"> + <object class="GtkEntry" id="combobox-entry1"> + <property name="can_focus">False</property> + </object> + </child> </object> <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> <property name="left_attach">2</property> <property name="right_attach">3</property> <property name="top_attach">1</property> <property name="bottom_attach">2</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkFileChooserButton" id="SrtFile"> <property name="visible">True</property> - <property name="local-only">False</property> - <property name="action">GTK_FILE_CHOOSER_ACTION_OPEN</property> + <property name="can_focus">False</property> + <property name="tooltip_text" translatable="yes">Select the SRT file to import.</property> + <property name="local_only">False</property> <property name="title" translatable="yes">Srt File</property> - <property name="tooltip-text" translatable="yes">Select the SRT file to import.</property> - <signal name="selection_changed" handler="srt_file_changed_cb"/> + <signal name="selection-changed" handler="srt_file_changed_cb" swapped="no"/> </object> <packing> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> - <property name="y_options"></property> <property name="left_attach">3</property> <property name="right_attach">4</property> <property name="top_attach">1</property> <property name="bottom_attach">2</property> + <property name="y_options"/> </packing> </child> <child> @@ -3483,22 +3847,25 @@ This setting allows you to synchronize the files.</property> <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">Adjust the offset in milliseconds between video and SRT timestamps</property> + <property name="tooltip_text" translatable="yes">Adjust the offset in milliseconds between video and SRT timestamps</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> <property name="adjustment">adjustment31</property> - <signal handler="srt_changed_cb" name="value_changed"/> + <signal name="value-changed" handler="srt_changed_cb" swapped="no"/> </object> <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> <property name="left_attach">4</property> <property name="right_attach">5</property> <property name="top_attach">1</property> <property name="bottom_attach">2</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> @@ -3507,30 +3874,41 @@ This setting allows you to synchronize the files.</property> <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="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property> - <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property> <child> <object class="GtkTreeView" id="subtitle_list"> <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="headers_clickable">True</property> + <child internal-child="selection"> + <object class="GtkTreeSelection" id="treeview-selection2"/> + </child> </object> </child> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">2</property> </packing> </child> </object> </child> </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> </child> </object> + <packing> + <property name="position">3</property> + </packing> </child> <child type="tab"> <object class="GtkLabel" id="label9"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">Subtitles</property> </object> <packing> @@ -3540,885 +3918,935 @@ This setting allows you to synchronize the files.</property> </child> <child> <object class="GtkHBox" id="advanced_tab"> - <property name="orientation">vertical</property> - <property name="visible">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - <child> - - <object class="GtkVBox" id="x264_tab"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</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="hbox73"> + <object class="GtkVBox" id="x264_tab"> <property name="visible">True</property> + <property name="can_focus">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="spacing">2</property> - <child> - <object class="GtkVBox" id="vbox21"> - <property name="orientation">vertical</property> - <property name="visible">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - <child> - <object class="GtkFrame" id="frame10"> - <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="alignment26"> - <property name="visible">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - <property name="top_padding">6</property> - <property name="bottom_padding">2</property> - <property name="left_padding">12</property> - <property name="right_padding">2</property> - <child> - <object class="GtkTable" id="table6"> - <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">4</property> - <property name="n_columns">2</property> - <property name="column-spacing">4</property> - <property name="row-spacing">2</property> - <child> - <object class="GtkLabel" id="label49"> - <property name="visible">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><small>Reference Frames:</small></property> - <property name="use_markup">True</property> - </object> - <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - </packing> - </child> - <child> - <object class="GtkAlignment" id="alignment41"> - <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> - <child> - <object class="GtkSpinButton" id="x264_refs"> - <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">Sane values are ~1-6. The more you add, the better the compression, but the slower the encode. Cel animation tends to benefit from more reference frames a lot more than film content. Note that many hardware devices have limitations on the number of supported reference frames, so if you're encoding for a handheld or standalone player, don't touch this unless you're absolutely sure you know what you're doing!</property> - <property name="adjustment">adjustment8</property> - <signal handler="x264_widget_changed_cb" name="value_changed"/> - </object> - <packing> - </packing> - </child> - </object> - <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="left_attach">1</property> - <property name="right_attach">2</property> - </packing> - </child> - <child> - <object class="GtkLabel" id="label51"> - <property name="visible">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><small>Maximum B-Frames:</small></property> - <property name="use_markup">True</property> - </object> - <packing> - <property name="y_options"></property> - <property name="x_options">GTK_FILL</property> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - </packing> - </child> - <child> - <object class="GtkAlignment" id="alignment38"> - <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> - <child> - <object class="GtkSpinButton" id="x264_bframes"> - <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">Sane values are ~2-5. This specifies the maximum number of sequential B-frames that the encoder can use. Large numbers generally won't help significantly unless Adaptive B-frames is set to Optimal. Cel-animated source material and B-pyramid also significantly increase the usefulness of larger values. Baseline profile, as required for iPods and similar devices, requires B-frames to be set to 0 (off).</property> - <property name="adjustment">adjustment9</property> - <signal handler="x264_widget_changed_cb" name="value_changed"/> - </object> - </child> - </object> - <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> - <property name="left_attach">1</property> - <property name="right_attach">2</property> - </packing> - </child> - <child> - <object class="GtkLabel" id="label50"> - <property name="visible">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><small>Pyramidal B-Frames:</small></property> - <property name="use_markup">True</property> - </object> - <packing> - <property name="y_options"></property> - <property name="x_options">GTK_FILL</property> - <property name="top_attach">2</property> - <property name="bottom_attach">3</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - </packing> - </child> - <child> - <object class="GtkComboBox" id="x264_bpyramid"> - <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">B-pyramid improves compression by creating a pyramidal structure (hence the name) of B-frames, allowing B-frames to reference each other to improve compression. Requires Max B-frames greater than 1; optimal adaptive B-frames is strongly recommended for full compression benefit.</property> - <signal handler="x264_widget_changed_cb" name="changed"/> - </object> - <packing> - <property name="top_attach">2</property> - <property name="bottom_attach">3</property> - <property name="left_attach">1</property> - <property name="right_attach">2</property> - <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> - </packing> - </child> - <child> - <object class="GtkLabel" id="label40"> - <property name="visible">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><small>Weighted P-Frames:</small></property> - <property name="use_markup">True</property> - </object> - <packing> - <property name="y_options"></property> - <property name="x_options">GTK_FILL</property> - <property name="top_attach">3</property> - <property name="bottom_attach">4</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - </packing> - </child> - <child> - <object class="GtkComboBox" id="x264_weighted_pframes"> - <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">Performs extra analysis to decide upon weighting parameters for each frame. This improves overall compression slightly and improves the quality of fades greatly. Baseline profile, as required for iPods and similar devices, requires weighted P-frame prediction to be disabled. Note that some devices and players, even those that support Main Profile, may have problems with Weighted P-frame prediction: the Apple TV is completely incompatible with it, for example.</property> - <signal handler="x264_widget_changed_cb" name="changed"/> - </object> - <packing> - <property name="top_attach">3</property> - <property name="bottom_attach">4</property> - <property name="left_attach">1</property> - <property name="right_attach">2</property> - <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> - </packing> - </child> - <child> - <object class="GtkCheckButton" id="x264_8x8dct"> - <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">The 8x8 transform is the single most useful feature of x264 in terms of compression-per-speed. It improves compression by at least 5% at a very small speed cost and may provide an unusually high visual quality benefit compared to its compression gain. However, it requires High Profile, which many devices may not support.</property> - <property name="label" translatable="yes">8x8 Transform</property> - <property name="active">True</property> - <property name="draw_indicator">True</property> - <signal handler="x264_widget_changed_cb" name="toggled"/> - </object> - <packing> - <property name="top_attach">4</property> - <property name="bottom_attach">5</property> - <property name="left_attach">0</property> - <property name="right_attach">2</property> - <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> - </packing> - </child> - <child> - <object class="GtkCheckButton" id="x264_cabac"> - <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">After the encoder has done its work, it has a bunch of data that needs to be compressed losslessly, similar to ZIP or RAR. H.264 provides two options for this: CAVLC and CABAC. CABAC decodes a lot slower but compresses significantly better (10-30%), especially at lower bitrates. If you're looking to minimize CPU requirements for video playback, disable this option. Baseline profile, as required for iPods and similar devices, requires CABAC to be disabled.</property> - <property name="label" translatable="yes">CABAC Entropy Encoding</property> - <property name="active">True</property> - <property name="draw_indicator">True</property> - <signal handler="x264_widget_changed_cb" name="toggled"/> - </object> - <packing> - <property name="top_attach">5</property> - <property name="bottom_attach">6</property> - <property name="left_attach">0</property> - <property name="right_attach">2</property> - <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> - </packing> - </child> - </object> - </child> - </object> - </child> - <child type="label"> - <object class="GtkLabel" id="label53"> - <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"><small><b>Encoding Features</b></small></property> - <property name="use_markup">True</property> - </object> - </child> - </object> - <packing> - <property name="expand">False</property> - <property name="position">1</property> - </packing> - </child> - </object> - <packing> - <property name="expand">True</property> - </packing> - </child> <child> - <object class="GtkVBox" id="vbox25"> - <property name="orientation">vertical</property> + <object class="GtkHBox" id="hbox73"> <property name="visible">True</property> + <property name="can_focus">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="spacing">2</property> <child> - <object class="GtkFrame" id="frame12"> + <object class="GtkVBox" id="vbox21"> <property name="visible">True</property> + <property name="can_focus">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="label_xalign">0</property> - <property name="shadow_type">none</property> <child> - <object class="GtkHBox" id="hbox84"> + <object class="GtkFrame" id="frame10"> <property name="visible">True</property> + <property name="can_focus">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="label_xalign">0</property> + <property name="shadow_type">none</property> <child> - <object class="GtkAlignment" id="alignment30"> + <object class="GtkAlignment" id="alignment26"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">6</property> <property name="bottom_padding">2</property> <property name="left_padding">12</property> <property name="right_padding">2</property> <child> - <object class="GtkTable" id="table5"> + <object class="GtkTable" id="table6"> <property name="visible">True</property> + <property name="can_focus">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="n_rows">4</property> <property name="n_columns">2</property> - <property name="row-spacing">2</property> - <property name="column-spacing">4</property> + <property name="column_spacing">4</property> + <property name="row_spacing">2</property> <child> - <object class="GtkLabel" id="label55"> + <object class="GtkLabel" id="label49"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> - <property name="label" translatable="yes"><small>Motion Est. Method:</small></property> + <property name="label" translatable="yes"><small>Reference Frames:</small></property> <property name="use_markup">True</property> </object> <packing> <property name="x_options">GTK_FILL</property> - <property name="y_options">GTK_FILL</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> + <property name="y_options"/> </packing> </child> <child> - <object class="GtkComboBox" id="x264_me"> + <object class="GtkAlignment" id="alignment41"> <property name="visible">True</property> + <property name="can_focus">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">Controls the motion estimation method. Motion estimation is how the encoder estimates how each block of pixels in a frame has moved. A better motion search method improves compression at the cost of speed. - - Diamond: performs an extremely fast and simple search using a diamond pattern. - - Hexagon: performs a somewhat more effective but slightly slower search using a hexagon pattern. - - Uneven Multi-Hex: performs a very wide search using a variety of patterns, more accurately capturing complex motion. - - Exhaustive: performs a "dumb" search of every pixel in a wide area. Significantly slower for only a small compression gain. - - Transformed Exhaustive: Like exhaustive, but makes even more accurate decisions. Accordingly, somewhat slower, also for only a small improvement.</property> - <signal handler="x264_me_changed_cb" name="changed"/> + <property name="xalign">0</property> + <child> + <object class="GtkSpinButton" id="x264_refs"> + <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">Sane values are ~1-6. The more you add, the better the compression, but the slower the encode. Cel animation tends to benefit from more reference frames a lot more than film content. Note that many hardware devices have limitations on the number of supported reference frames, so if you're encoding for a handheld or standalone player, don't touch this unless you're absolutely sure you know what you're doing!</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <property name="adjustment">adjustment8</property> + <signal name="value-changed" handler="x264_widget_changed_cb" swapped="no"/> + </object> + </child> </object> <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> <property name="left_attach">1</property> <property name="right_attach">2</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> <child> - <object class="GtkLabel" id="label58"> + <object class="GtkLabel" id="label51"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> - <property name="label" translatable="yes"><small>Subpel ME &amp; Mode:</small></property> + <property name="label" translatable="yes"><small>Maximum B-Frames:</small></property> <property name="use_markup">True</property> </object> <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options">GTK_FILL</property> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> <child> - <object class="GtkComboBox" id="x264_subme"> + <object class="GtkAlignment" id="alignment38"> <property name="visible">True</property> + <property name="can_focus">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-markup" translatable="yes">This setting controls both subpixel-precision motion estimation and mode decision methods. - - Subpixel motion estimation is used for refining motion estimates beyond mere pixel accuracy, improving compression. - - Mode decision is the method used to choose how to encode each block of the frame: a very important decision. - - SAD is the fastest method, followed by SATD, RD, RD refinement, and the slowest, QPRD. - - 6 or higher is strongly recommended: Psy-RD, a very powerful psy optimization that helps retain detail, requires RD. - - 11 disables all early terminations in analysis. - - 10 and 11, the most powerful and slowest options, require adaptive quantization (aq-mode > 0) and trellis 2 (always).</property> - <signal handler="x264_widget_changed_cb" name="changed"/> + <property name="xalign">0</property> + <child> + <object class="GtkSpinButton" id="x264_bframes"> + <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">Sane values are ~2-5. This specifies the maximum number of sequential B-frames that the encoder can use. Large numbers generally won't help significantly unless Adaptive B-frames is set to Optimal. Cel-animated source material and B-pyramid also significantly increase the usefulness of larger values. Baseline profile, as required for iPods and similar devices, requires B-frames to be set to 0 (off).</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <property name="adjustment">adjustment9</property> + <signal name="value-changed" handler="x264_widget_changed_cb" swapped="no"/> + </object> + </child> </object> <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> <property name="left_attach">1</property> <property name="right_attach">2</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> <child> - <object class="GtkLabel" id="label57"> + <object class="GtkLabel" id="label50"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> - <property name="label" translatable="yes"><small>Motion Est. Range:</small></property> + <property name="label" translatable="yes"><small>Pyramidal B-Frames:</small></property> <property name="use_markup">True</property> </object> <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options">GTK_FILL</property> <property name="top_attach">2</property> <property name="bottom_attach">3</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> <child> - <object class="GtkSpinButton" id="x264_merange"> + <object class="GtkComboBox" id="x264_bpyramid"> <property name="visible">True</property> - <property name="can_focus">True</property> + <property name="can_focus">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">This is the distance x264 searches from its best guess at the motion of a block in order to try to find its actual motion. The default is fine for most content, but extremely high motion video, especially at HD resolutions, may benefit from higher ranges, albeit at a high speed cost.</property> - <property name="adjustment">adjustment10</property> - <signal handler="x264_widget_changed_cb" name="value_changed"/> + <property name="tooltip_text" translatable="yes">B-pyramid improves compression by creating a pyramidal structure (hence the name) of B-frames, allowing B-frames to reference each other to improve compression. Requires Max B-frames greater than 1; optimal adaptive B-frames is strongly recommended for full compression benefit.</property> + <signal name="changed" handler="x264_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> - <property name="top_attach">2</property> - <property name="bottom_attach">3</property> <property name="left_attach">1</property> <property name="right_attach">2</property> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> <child> - <object class="GtkLabel" id="label52"> + <object class="GtkLabel" id="label40"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> - <property name="label" translatable="yes"><small>Adaptive Direct Mode:</small></property> + <property name="label" translatable="yes"><small>Weighted P-Frames:</small></property> <property name="use_markup">True</property> </object> <packing> <property name="top_attach">3</property> <property name="bottom_attach">4</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> - <object class="GtkAlignment" id="alignment39"> + <object class="GtkComboBox" id="x264_weighted_pframes"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> - <child> - <object class="GtkComboBox" id="x264_direct"> - <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">H.264 allows for two different prediction modes, spatial and temporal, in B-frames. - - Spatial, the default, is almost always better, but temporal is sometimes useful too. - - x264 can, at the cost of a small amount of speed (and accordingly for a small compression gain), adaptively select which is better for each particular frame.</property> - <signal handler="x264_widget_changed_cb" name="changed"/> - </object> - </child> + <property name="tooltip_text" translatable="yes">Performs extra analysis to decide upon weighting parameters for each frame. This improves overall compression slightly and improves the quality of fades greatly. Baseline profile, as required for iPods and similar devices, requires weighted P-frame prediction to be disabled. Note that some devices and players, even those that support Main Profile, may have problems with Weighted P-frame prediction: the Apple TV is completely incompatible with it, for example.</property> + <signal name="changed" handler="x264_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> - <property name="top_attach">3</property> - <property name="bottom_attach">4</property> <property name="left_attach">1</property> <property name="right_attach">2</property> + <property name="top_attach">3</property> + <property name="bottom_attach">4</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> <child> - <object class="GtkLabel" id="label84"> + <object class="GtkCheckButton" id="x264_8x8dct"> + <property name="label" translatable="yes">8x8 Transform</property> <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">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="xalign">0</property> - <property name="label" translatable="yes"><small>Adaptive B-Frames:</small></property> - <property name="use_markup">True</property> + <property name="tooltip_text" translatable="yes">The 8x8 transform is the single most useful feature of x264 in terms of compression-per-speed. It improves compression by at least 5% at a very small speed cost and may provide an unusually high visual quality benefit compared to its compression gain. However, it requires High Profile, which many devices may not support.</property> + <property name="xalign">0.5</property> + <property name="active">True</property> + <property name="draw_indicator">True</property> + <signal name="toggled" handler="x264_widget_changed_cb" swapped="no"/> </object> <packing> + <property name="right_attach">2</property> <property name="top_attach">4</property> <property name="bottom_attach">5</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> - <object class="GtkAlignment" id="alignment40"> + <object class="GtkCheckButton" id="x264_cabac"> + <property name="label" translatable="yes">CABAC Entropy Encoding</property> <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">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="xalign">0</property> - <child> - <object class="GtkComboBox" id="x264_b_adapt"> - <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-markup" translatable="yes">x264 has a variety of algorithms to decide when to use B-frames and how many to use. - - Fast mode takes roughly the same amount of time no matter how many B-frames you specify. However, while fast, its decisions are often suboptimal. - - Optimal mode gets slower as the maximum number of B-Frames increases, but makes much more accurate decisions, especially when used with B-pyramid.</property> - <signal handler="x264_widget_changed_cb" name="changed"/> - </object> - </child> + <property name="tooltip_text" translatable="yes">After the encoder has done its work, it has a bunch of data that needs to be compressed losslessly, similar to ZIP or RAR. H.264 provides two options for this: CAVLC and CABAC. CABAC decodes a lot slower but compresses significantly better (10-30%), especially at lower bitrates. If you're looking to minimize CPU requirements for video playback, disable this option. Baseline profile, as required for iPods and similar devices, requires CABAC to be disabled.</property> + <property name="xalign">0.5</property> + <property name="active">True</property> + <property name="draw_indicator">True</property> + <signal name="toggled" handler="x264_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> - <property name="top_attach">4</property> - <property name="bottom_attach">5</property> - <property name="left_attach">1</property> <property name="right_attach">2</property> + <property name="top_attach">5</property> + <property name="bottom_attach">6</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> </packing> </child> </object> </child> </object> - <packing> - <property name="position">0</property> - </packing> </child> - <child> - <object class="GtkAlignment" id="alignment31"> + <child type="label"> + <object class="GtkLabel" id="label53"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">6</property> - <property name="bottom_padding">2</property> - <property name="left_padding">12</property> - <property name="right_padding">2</property> - <child> - <object class="GtkTable" id="table3"> - <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">4</property> - <property name="n_columns">2</property> - <property name="row-spacing">2</property> - <property name="column-spacing">4</property> - <child> - <object class="GtkLabel" id="label59"> - <property name="visible">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><small>Partitions:</small></property> - <property name="use_markup">True</property> - </object> - <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options">GTK_FILL</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - </packing> - </child> - <child> - <object class="GtkComboBox" id="x264_analyse"> - <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">Mode decision picks from a variety of options to make its decision: this option chooses what options those are. Fewer partitions to check means faster encoding, at the cost of worse decisions, since the best option might have been one that was turned off.</property> - <signal handler="x264_widget_changed_cb" name="changed"/> - </object> - <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> - <property name="left_attach">1</property> - <property name="right_attach">2</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - </packing> - </child> - <child> - <object class="GtkLabel" id="label62"> - <property name="visible">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><small>Trellis:</small></property> - <property name="use_markup">True</property> - </object> - <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options">GTK_FILL</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> - </packing> - </child> - <child> - <object class="GtkComboBox" id="x264_trellis"> - <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">Trellis fine-tunes the rounding of transform coefficients to squeeze out 3-5% more compression at the cost of some speed. "Always" uses trellis not only during the main encoding process, but also during analysis, which improves compression even more, albeit at great speed cost. Trellis costs more speed at higher bitrates and requires CABAC.</property> - <signal handler="x264_widget_changed_cb" name="changed"/> - </object> - <packing> - <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> - <property name="left_attach">1</property> - <property name="right_attach">2</property> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> - </packing> - </child> - </object> - </child> + <property name="label" translatable="yes"><small><b>Encoding Features</b></small></property> + <property name="use_markup">True</property> </object> - <packing> - <property name="position">1</property> - </packing> </child> </object> <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> </packing> </child> - <child type="label"> - <object class="GtkLabel" id="label60"> - <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"><small><b>Analysis</b></small></property> - <property name="use_markup">True</property> - </object> - </child> </object> <packing> - <property name="expand">False</property> - <property name="padding">2</property> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> - <object class="GtkFrame" id="frame13"> + <object class="GtkVBox" id="vbox25"> <property name="visible">True</property> + <property name="can_focus">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="label_xalign">0</property> - <property name="shadow_type">none</property> <child> - <object class="GtkAlignment" id="alignment35"> + <object class="GtkFrame" id="frame12"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">6</property> - <property name="bottom_padding">2</property> - <property name="left_padding">12</property> - <property name="right_padding">2</property> + <property name="label_xalign">0</property> + <property name="shadow_type">none</property> <child> - <object class="GtkVBox" id="vbox27"> - <property name="orientation">vertical</property> + <object class="GtkHBox" id="hbox84"> <property name="visible">True</property> + <property name="can_focus">False</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="GtkTable" id="table9"> + <object class="GtkAlignment" id="alignment30"> <property name="visible">True</property> + <property name="can_focus">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="n_rows">2</property> - <property name="n_columns">2</property> - <property name="visible">True</property> - <child> - <object class="GtkLabel" id="label73"> - <property name="visible">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><small>Adaptive Quantization Strength:</small></property> - <property name="use_markup">True</property> - </object> - <packing> - <property name="x_options">GTK_FILL</property> - </packing> - </child> - <child> - <object class="GtkScale" id="x264_aq_strength"> - <property name="orientation">horizontal</property> - <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">Adaptive quantization controls how the encoder distributes bits across the frame. Higher values take more bits away from edges and complex areas to improve areas with finer detail.</property> - <property name="adjustment">adjustment34</property> - <property name="restrict_to_fill_level">False</property> - <property name="value_pos">GTK_POS_RIGHT</property> - <signal handler="x264_slider_changed_cb" name="value_changed"/> - <signal name="format_value" handler="x264_format_slider_cb"/> - </object> - <packing> - <property name="left_attach">1</property> - <property name="right_attach">2</property> - </packing> - </child> + <property name="top_padding">6</property> + <property name="bottom_padding">2</property> + <property name="left_padding">12</property> + <property name="right_padding">2</property> <child> - <object class="GtkLabel" id="label82"> + <object class="GtkTable" id="table5"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> - <property name="label" translatable="yes"><small>Psychovisual Rate Distortion:</small></property> - <property name="use_markup">True</property> - </object> - <packing> - <property name="x_options">GTK_FILL</property> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> - </packing> - </child> - <child> - <object class="GtkScale" id="x264_psy_rd"> - <property name="orientation">horizontal</property> - <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">Psychovisual rate-distortion optimization takes advantage of the characteristics of human vision to dramatically improve apparent detail and sharpness. The effect can be made weaker or stronger by adjusting the strength. Being an RD algorithm, it requires mode decision to be at least "6".</property> - <property name="adjustment">adjustment22</property> - <property name="restrict_to_fill_level">False</property> - <property name="value_pos">GTK_POS_RIGHT</property> - <signal handler="x264_slider_changed_cb" name="value_changed"/> - <signal name="format_value" handler="x264_format_slider_cb"/> - </object> - <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> - <property name="left_attach">1</property> - <property name="right_attach">2</property> - </packing> - </child> - <child> - <object class="GtkLabel" id="label83"> - <property name="visible">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - <property name="xalign">0</property> - <property name="label" translatable="yes"><small>Psychovisual Trellis:</small></property> - <property name="use_markup">True</property> + <property name="n_rows">4</property> + <property name="n_columns">2</property> + <property name="column_spacing">4</property> + <property name="row_spacing">2</property> + <child> + <object class="GtkLabel" id="label55"> + <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> + <property name="label" translatable="yes"><small>Motion Est. Method:</small></property> + <property name="use_markup">True</property> + </object> + <packing> + <property name="x_options">GTK_FILL</property> + <property name="y_options">GTK_FILL</property> + </packing> + </child> + <child> + <object class="GtkComboBox" id="x264_me"> + <property name="visible">True</property> + <property name="can_focus">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">Controls the motion estimation method. Motion estimation is how the encoder estimates how each block of pixels in a frame has moved. A better motion search method improves compression at the cost of speed. + + Diamond: performs an extremely fast and simple search using a diamond pattern. + + Hexagon: performs a somewhat more effective but slightly slower search using a hexagon pattern. + + Uneven Multi-Hex: performs a very wide search using a variety of patterns, more accurately capturing complex motion. + + Exhaustive: performs a "dumb" search of every pixel in a wide area. Significantly slower for only a small compression gain. + + Transformed Exhaustive: Like exhaustive, but makes even more accurate decisions. Accordingly, somewhat slower, also for only a small improvement.</property> + <signal name="changed" handler="x264_me_changed_cb" swapped="no"/> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkLabel" id="label58"> + <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> + <property name="label" translatable="yes"><small>Subpel ME &amp; Mode:</small></property> + <property name="use_markup">True</property> + </object> + <packing> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options">GTK_FILL</property> + </packing> + </child> + <child> + <object class="GtkComboBox" id="x264_subme"> + <property name="visible">True</property> + <property name="can_focus">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_markup">This setting controls both subpixel-precision motion estimation and mode decision methods. + + Subpixel motion estimation is used for refining motion estimates beyond mere pixel accuracy, improving compression. + + Mode decision is the method used to choose how to encode each block of the frame: a very important decision. + + SAD is the fastest method, followed by SATD, RD, RD refinement, and the slowest, QPRD. + + 6 or higher is strongly recommended: Psy-RD, a very powerful psy optimization that helps retain detail, requires RD. + + 11 disables all early terminations in analysis. + + 10 and 11, the most powerful and slowest options, require adaptive quantization (aq-mode > 0) and trellis 2 (always).</property> + <signal name="changed" handler="x264_widget_changed_cb" swapped="no"/> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkLabel" id="label57"> + <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> + <property name="label" translatable="yes"><small>Motion Est. Range:</small></property> + <property name="use_markup">True</property> + </object> + <packing> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options">GTK_FILL</property> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="x264_merange"> + <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">This is the distance x264 searches from its best guess at the motion of a block in order to try to find its actual motion. The default is fine for most content, but extremely high motion video, especially at HD resolutions, may benefit from higher ranges, albeit at a high speed cost.</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <property name="adjustment">adjustment10</property> + <signal name="value-changed" handler="x264_widget_changed_cb" swapped="no"/> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkLabel" id="label52"> + <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> + <property name="label" translatable="yes"><small>Adaptive Direct Mode:</small></property> + <property name="use_markup">True</property> + </object> + <packing> + <property name="top_attach">3</property> + <property name="bottom_attach">4</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkAlignment" id="alignment39"> + <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> + <child> + <object class="GtkComboBox" id="x264_direct"> + <property name="visible">True</property> + <property name="can_focus">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">H.264 allows for two different prediction modes, spatial and temporal, in B-frames. + + Spatial, the default, is almost always better, but temporal is sometimes useful too. + + x264 can, at the cost of a small amount of speed (and accordingly for a small compression gain), adaptively select which is better for each particular frame.</property> + <signal name="changed" handler="x264_widget_changed_cb" swapped="no"/> + </object> + </child> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">3</property> + <property name="bottom_attach">4</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkLabel" id="label84"> + <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> + <property name="label" translatable="yes"><small>Adaptive B-Frames:</small></property> + <property name="use_markup">True</property> + </object> + <packing> + <property name="top_attach">4</property> + <property name="bottom_attach">5</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkAlignment" id="alignment40"> + <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> + <child> + <object class="GtkComboBox" id="x264_b_adapt"> + <property name="visible">True</property> + <property name="can_focus">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_markup">x264 has a variety of algorithms to decide when to use B-frames and how many to use. + + Fast mode takes roughly the same amount of time no matter how many B-frames you specify. However, while fast, its decisions are often suboptimal. + + Optimal mode gets slower as the maximum number of B-Frames increases, but makes much more accurate decisions, especially when used with B-pyramid.</property> + <signal name="changed" handler="x264_widget_changed_cb" swapped="no"/> + </object> + </child> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">4</property> + <property name="bottom_attach">5</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> + </packing> + </child> </object> - <packing> - <property name="top_attach">2</property> - <property name="bottom_attach">3</property> - <property name="x_options">GTK_FILL</property> - </packing> </child> + </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkAlignment" id="alignment31"> + <property name="visible">True</property> + <property name="can_focus">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="top_padding">6</property> + <property name="bottom_padding">2</property> + <property name="left_padding">12</property> + <property name="right_padding">2</property> <child> - <object class="GtkScale" id="x264_psy_trell"> - <property name="orientation">horizontal</property> + <object class="GtkTable" id="table3"> <property name="visible">True</property> - <property name="can_focus">True</property> + <property name="can_focus">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">Psychovisual trellis is an experimental algorithm to further improve sharpness and detail retention beyond what Psychovisual RD does. Recommended values are around 0.2, though higher values may help for very grainy video or lower bitrate encodes. Not recommended for cel animation and other sharp-edged graphics.</property> - <property name="adjustment">adjustment23</property> - <property name="digits">2</property> - <property name="restrict_to_fill_level">False</property> - <property name="value_pos">GTK_POS_RIGHT</property> - <signal handler="x264_slider_changed_cb" name="value_changed"/> - <signal name="format_value" handler="x264_format_slider_cb"/> + <property name="n_rows">4</property> + <property name="n_columns">2</property> + <property name="column_spacing">4</property> + <property name="row_spacing">2</property> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <object class="GtkLabel" id="label59"> + <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> + <property name="label" translatable="yes"><small>Partitions:</small></property> + <property name="use_markup">True</property> + </object> + <packing> + <property name="x_options">GTK_FILL</property> + <property name="y_options">GTK_FILL</property> + </packing> + </child> + <child> + <object class="GtkComboBox" id="x264_analyse"> + <property name="visible">True</property> + <property name="can_focus">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">Mode decision picks from a variety of options to make its decision: this option chooses what options those are. Fewer partitions to check means faster encoding, at the cost of worse decisions, since the best option might have been one that was turned off.</property> + <signal name="changed" handler="x264_widget_changed_cb" swapped="no"/> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkLabel" id="label62"> + <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> + <property name="label" translatable="yes"><small>Trellis:</small></property> + <property name="use_markup">True</property> + </object> + <packing> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options">GTK_FILL</property> + </packing> + </child> + <child> + <object class="GtkComboBox" id="x264_trellis"> + <property name="visible">True</property> + <property name="can_focus">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">Trellis fine-tunes the rounding of transform coefficients to squeeze out 3-5% more compression at the cost of some speed. "Always" uses trellis not only during the main encoding process, but also during analysis, which improves compression even more, albeit at great speed cost. Trellis costs more speed at higher bitrates and requires CABAC.</property> + <signal name="changed" handler="x264_widget_changed_cb" swapped="no"/> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="x_options">GTK_FILL</property> + <property name="y_options"/> + </packing> + </child> </object> - <packing> - <property name="top_attach">2</property> - <property name="bottom_attach">3</property> - <property name="left_attach">1</property> - <property name="right_attach">2</property> - </packing> </child> </object> <packing> - <property name="position">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">1</property> </packing> </child> + </object> + </child> + <child type="label"> + <object class="GtkLabel" id="label60"> + <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes"><small><b>Analysis</b></small></property> + <property name="use_markup">True</property> + </object> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="padding">2</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkFrame" id="frame13"> + <property name="visible">True</property> + <property name="can_focus">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="label_xalign">0</property> + <property name="shadow_type">none</property> + <child> + <object class="GtkAlignment" id="alignment35"> + <property name="visible">True</property> + <property name="can_focus">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="top_padding">6</property> + <property name="bottom_padding">2</property> + <property name="left_padding">12</property> + <property name="right_padding">2</property> <child> - <object class="GtkHBox" id="hbox39"> + <object class="GtkVBox" id="vbox27"> <property name="visible">True</property> + <property name="can_focus">False</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="label61"> + <object class="GtkTable" id="table9"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> - <property name="label" translatable="yes">Deblocking: </property> + <property name="n_rows">2</property> + <property name="n_columns">2</property> + <child> + <object class="GtkLabel" id="label73"> + <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> + <property name="label" translatable="yes"><small>Adaptive Quantization Strength:</small></property> + <property name="use_markup">True</property> + </object> + <packing> + <property name="x_options">GTK_FILL</property> + </packing> + </child> + <child> + <object class="GtkScale" id="x264_aq_strength"> + <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">Adaptive quantization controls how the encoder distributes bits across the frame. Higher values take more bits away from edges and complex areas to improve areas with finer detail.</property> + <property name="adjustment">adjustment34</property> + <property name="restrict_to_fill_level">False</property> + <property name="value_pos">right</property> + <signal name="format-value" handler="x264_format_slider_cb" swapped="no"/> + <signal name="value-changed" handler="x264_slider_changed_cb" swapped="no"/> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="label82"> + <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> + <property name="label" translatable="yes"><small>Psychovisual Rate Distortion:</small></property> + <property name="use_markup">True</property> + </object> + <packing> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="x_options">GTK_FILL</property> + </packing> + </child> + <child> + <object class="GtkScale" id="x264_psy_rd"> + <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">Psychovisual rate-distortion optimization takes advantage of the characteristics of human vision to dramatically improve apparent detail and sharpness. The effect can be made weaker or stronger by adjusting the strength. Being an RD algorithm, it requires mode decision to be at least "6".</property> + <property name="adjustment">adjustment22</property> + <property name="restrict_to_fill_level">False</property> + <property name="value_pos">right</property> + <signal name="format-value" handler="x264_format_slider_cb" swapped="no"/> + <signal name="value-changed" handler="x264_slider_changed_cb" swapped="no"/> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="label83"> + <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> + <property name="label" translatable="yes"><small>Psychovisual Trellis:</small></property> + <property name="use_markup">True</property> + </object> + <packing> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> + <property name="x_options">GTK_FILL</property> + </packing> + </child> + <child> + <object class="GtkScale" id="x264_psy_trell"> + <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">Psychovisual trellis is an experimental algorithm to further improve sharpness and detail retention beyond what Psychovisual RD does. Recommended values are around 0.2, though higher values may help for very grainy video or lower bitrate encodes. Not recommended for cel animation and other sharp-edged graphics.</property> + <property name="adjustment">adjustment23</property> + <property name="restrict_to_fill_level">False</property> + <property name="digits">2</property> + <property name="value_pos">right</property> + <signal name="format-value" handler="x264_format_slider_cb" swapped="no"/> + <signal name="value-changed" handler="x264_slider_changed_cb" swapped="no"/> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> + </packing> + </child> </object> <packing> - <property name="expand">False</property> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> - <object class="GtkSpinButton" id="x264_deblock_alpha"> + <object class="GtkHBox" id="hbox39"> <property name="visible">True</property> - <property name="can_focus">True</property> + <property name="can_focus">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-markup" translatable="yes">H.264 has a built-in deblocking filter that smooths out blocking artifacts after decoding each frame. This not only improves visual quality, but also helps compression significantly. The deblocking filter takes a lot of CPU power, so if you're looking to minimize CPU requirements for video playback, disable it. + <child> + <object class="GtkLabel" id="label61"> + <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> + <property name="label" translatable="yes">Deblocking: </property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="x264_deblock_alpha"> + <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_markup">H.264 has a built-in deblocking filter that smooths out blocking artifacts after decoding each frame. This not only improves visual quality, but also helps compression significantly. The deblocking filter takes a lot of CPU power, so if you're looking to minimize CPU requirements for video playback, disable it. The deblocking filter has two adjustable parameters, "strength" (Alpha) and "threshold" (Beta). The former controls how strong (or weak) the deblocker is, while the latter controls how many (or few) edges it applies to. Lower values mean less deblocking, higher values mean more deblocking. The default is 0 (normal strength) for both parameters.</property> - <property name="adjustment">adjustment11</property> - <signal handler="x264_widget_changed_cb" name="value_changed"/> - </object> - <packing> - <property name="expand">False</property> - <property name="position">1</property> - </packing> - </child> - <child> - <object class="GtkSpinButton" id="x264_deblock_beta"> - <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-markup" translatable="yes">H.264 has a built-in deblocking filter that smooths out blocking artifacts after decoding each frame. This not only improves visual quality, but also helps compression significantly. The deblocking filter takes a lot of CPU power, so if you're looking to minimize CPU requirements for video playback, disable it. + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <property name="adjustment">adjustment11</property> + <signal name="value-changed" handler="x264_widget_changed_cb" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="x264_deblock_beta"> + <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_markup">H.264 has a built-in deblocking filter that smooths out blocking artifacts after decoding each frame. This not only improves visual quality, but also helps compression significantly. The deblocking filter takes a lot of CPU power, so if you're looking to minimize CPU requirements for video playback, disable it. The deblocking filter has two adjustable parameters, "strength" (Alpha) and "threshold" (Beta). The former controls how strong (or weak) the deblocker is, while the latter controls how many (or few) edges it applies to. Lower values mean less deblocking, higher values mean more deblocking. The default is 0 (normal strength) for both parameters.</property> - <property name="adjustment">adjustment12</property> - <signal handler="x264_widget_changed_cb" name="value_changed"/> - </object> - <packing> - <property name="expand">False</property> - <property name="position">2</property> - </packing> - </child> - <child> - <object class="GtkCheckButton" id="x264_no_dct_decimate"> - <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">x264 normally zeroes out nearly-empty data blocks to save bits to be better used for some other purpose in the video. However, this can sometimes have slight negative effects on retention of subtle grain and dither. Don't touch this unless you're having banding issues or other such cases where you are having trouble keeping fine noise.</property> - <property name="label" translatable="yes">No DCT Decimate</property> - <property name="active">True</property> - <property name="draw_indicator">True</property> - <signal handler="x264_widget_changed_cb" name="toggled"/> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <property name="adjustment">adjustment12</property> + <signal name="value-changed" handler="x264_widget_changed_cb" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">2</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="x264_no_dct_decimate"> + <property name="label" translatable="yes">No DCT Decimate</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">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">x264 normally zeroes out nearly-empty data blocks to save bits to be better used for some other purpose in the video. However, this can sometimes have slight negative effects on retention of subtle grain and dither. Don't touch this unless you're having banding issues or other such cases where you are having trouble keeping fine noise.</property> + <property name="xalign">0.5</property> + <property name="active">True</property> + <property name="draw_indicator">True</property> + <signal name="toggled" handler="x264_widget_changed_cb" swapped="no"/> + </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="padding">20</property> + <property name="position">3</property> + </packing> + </child> </object> <packing> - <property name="padding">20</property> - <property name="position">3</property> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">1</property> </packing> </child> </object> - <packing> - <property name="position">1</property> - </packing> </child> </object> </child> + <child type="label"> + <object class="GtkLabel" id="label63"> + <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes"><small><b>Psychovisual</b></small></property> + <property name="use_markup">True</property> + </object> + </child> </object> - </child> - <child type="label"> - <object class="GtkLabel" id="label63"> - <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"><small><b>Psychovisual</b></small></property> - <property name="use_markup">True</property> - </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> </child> </object> <packing> - <property name="expand">False</property> - <property name="position">1</property> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">2</property> </packing> </child> </object> <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkHBox" id="hbox85"> + <property name="visible">True</property> + <property name="can_focus">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="spacing">2</property> + </object> + <packing> <property name="expand">True</property> - <property name="position">2</property> + <property name="fill">True</property> + <property name="position">1</property> </packing> </child> - </object> - <packing> - <property name="expand">False</property> - <property name="position">0</property> - </packing> - </child> - <child> - <object class="GtkHBox" id="hbox85"> - <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">2</property> - </object> - <packing> - <property name="expand">True</property> - <property name="position">1</property> - </packing> - </child> - <child> - <object class="GtkFrame" id="frame11"> - <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="alignment29"> + <object class="GtkFrame" id="frame11"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">6</property> - <property name="bottom_padding">2</property> - <property name="left_padding">12</property> - <property name="right_padding">2</property> + <property name="label_xalign">0</property> + <property name="shadow_type">none</property> <child> - <object class="GtkScrolledWindow" id="scrolledwindow6"> - <property name="height_request">40</property> + <object class="GtkAlignment" id="alignment29"> <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property> - <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property> - <property name="shadow_type">etched-in</property> + <property name="can_focus">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="top_padding">6</property> + <property name="bottom_padding">2</property> + <property name="left_padding">12</property> + <property name="right_padding">2</property> <child> - <object class="GtkTextView" id="x264Option"> + <object class="GtkScrolledWindow" id="scrolledwindow6"> + <property name="height_request">40</property> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="tooltip-text" translatable="yes">Your selected options will appear here. + <property name="shadow_type">etched-in</property> + <child> + <object class="GtkTextView" id="x264Option"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="tooltip_text" translatable="yes">Your selected options will appear here. You can edit these and add additional options. Default values will not be shown. The defaults are: @@ -4427,65 +4855,68 @@ This setting allows you to synchronize the files.</property> subme=7:partitions=p8x8,b8x8,i8x8,i4x4:8x8dct=1: deblock=0,0:trellis=1:psy-rd=1,0:aq-strength=1.0: no-fast-pskip=0:no-dct-decimate=0:cabac=1</property> - <property name="wrap_mode">GTK_WRAP_CHAR</property> - <property name="accepts_tab">False</property> - <signal handler="x264_focus_out_cb" name="focus_out_event"/> + <property name="wrap_mode">char</property> + <property name="accepts_tab">False</property> + <signal name="focus-out-event" handler="x264_focus_out_cb" swapped="no"/> + </object> + </child> </object> </child> </object> </child> + <child type="label"> + <object class="GtkLabel" id="label54"> + <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes"><small><b>Current x264 Advanced Option String</b></small></property> + <property name="use_markup">True</property> + </object> + </child> </object> - </child> - <child type="label"> - <object class="GtkLabel" id="label54"> - <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"><small><b>Current x264 Advanced Option String</b></small></property> - <property name="use_markup">True</property> - </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="padding">2</property> + <property name="position">2</property> + </packing> </child> </object> <packing> - <property name="expand">False</property> + <property name="expand">True</property> <property name="fill">True</property> - <property name="padding">2</property> - <property name="position">2</property> + <property name="position">0</property> </packing> </child> - </object> - <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="padding">0</property> - <property name="position">0</property> - </packing> - - </child> <child> <object class="GtkVBox" id="lavc_mpeg4_tab"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</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="hbox86"> <property name="visible">True</property> + <property name="can_focus">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="spacing">2</property> </object> <packing> <property name="expand">True</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkFrame" id="frame18"> <property name="visible">True</property> + <property name="can_focus">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="label_xalign">0</property> <property name="shadow_type">none</property> <child> <object class="GtkAlignment" id="alignment33"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">6</property> <property name="bottom_padding">2</property> @@ -4496,18 +4927,16 @@ This setting allows you to synchronize the files.</property> <property name="height_request">40</property> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property> - <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property> <property name="shadow_type">etched-in</property> <child> <object class="GtkTextView" id="lavcOption"> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="tooltip-text" translatable="yes">Your selected options will appear here. + <property name="tooltip_text" translatable="yes">Your selected options will appear here. You can edit these and add additional options.</property> - <property name="wrap_mode">GTK_WRAP_CHAR</property> + <property name="wrap_mode">char</property> <property name="accepts_tab">False</property> - <signal handler="lavc_focus_out_cb" name="focus_out_event"/> + <signal name="focus-out-event" handler="lavc_focus_out_cb" swapped="no"/> </object> </child> </object> @@ -4517,6 +4946,7 @@ This setting allows you to synchronize the files.</property> <child type="label"> <object class="GtkLabel" id="label75"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes"><small><b>Current FFMpeg Advanced Option String</b></small></property> <property name="use_markup">True</property> @@ -4534,17 +4964,18 @@ This setting allows you to synchronize the files.</property> <packing> <property name="expand">True</property> <property name="fill">True</property> - <property name="padding">0</property> <property name="position">1</property> </packing> </child> </object> <packing> + <property name="position">4</property> </packing> </child> <child type="tab"> <object class="GtkLabel" id="advanced_tab_label"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">Advanced</property> </object> <packing> @@ -4554,23 +4985,28 @@ This setting allows you to synchronize the files.</property> </child> <child> <object class="GtkVBox" id="chapters_tab"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</property> <child> <object class="GtkHBox" id="hbox30"> <property name="visible">True</property> + <property name="can_focus">False</property> <child> <object class="GtkCheckButton" id="ChapterMarkers"> + <property name="label" translatable="yes">Chapter Markers</property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="receives_default">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 chapter markers to output file.</property> - <property name="label" translatable="yes">Chapter Markers</property> + <property name="tooltip_text" translatable="yes">Add chapter markers to output file.</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal handler="chapter_markers_changed_cb" name="toggled"/> + <signal name="toggled" handler="chapter_markers_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> @@ -4582,6 +5018,8 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> @@ -4589,28 +5027,34 @@ This setting allows you to synchronize the files.</property> <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="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property> - <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property> <child> <object class="GtkTreeView" id="chapters_list"> <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="headers_clickable">True</property> <property name="rules_hint">True</property> - <property name="enable-search">False</property> + <property name="enable_search">False</property> + <child internal-child="selection"> + <object class="GtkTreeSelection" id="treeview-selection3"/> + </child> </object> </child> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> + <packing> + <property name="position">5</property> + </packing> </child> <child type="tab"> <object class="GtkLabel" id="chapters_label"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">Chapters</property> </object> @@ -4622,34 +5066,32 @@ This setting allows you to synchronize the files.</property> <child> <object class="GtkAlignment" id="alignment76"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">24</property> - <property name="right_padding">24</property> - <property name="left_padding">24</property> <property name="bottom_padding">24</property> - <property name="yscale">1</property> + <property name="left_padding">24</property> + <property name="right_padding">24</property> <child> <object class="GtkTable" id="tags_table"> + <property name="visible">True</property> + <property name="can_focus">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="n_rows">8</property> <property name="n_columns">2</property> - <property name="visible">True</property> <property name="column_spacing">5</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="tag_title_label"> <property name="visible">True</property> - <property name="xalign">1</property> + <property name="can_focus">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="xalign">1</property> <property name="label" translatable="yes">Title:</property> <property name="use_markup">True</property> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> @@ -4661,32 +5103,30 @@ This setting allows you to synchronize the files.</property> <property name="activates_default">True</property> <property name="width_chars">50</property> <property name="truncate_multiline">True</property> - <signal name="changed" handler="meta_setting_widget_changed_cb"/> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <signal name="changed" handler="meta_setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkLabel" id="tag_actors_label"> <property name="visible">True</property> - <property name="xalign">1</property> + <property name="can_focus">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="xalign">1</property> <property name="label" translatable="yes">Actors:</property> <property name="use_markup">True</property> </object> <packing> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> @@ -4698,32 +5138,32 @@ This setting allows you to synchronize the files.</property> <property name="activates_default">True</property> <property name="width_chars">50</property> <property name="truncate_multiline">True</property> - <signal name="changed" handler="meta_setting_widget_changed_cb"/> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <signal name="changed" handler="meta_setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> - <property name="y_options"></property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkLabel" id="tag_director_label"> <property name="visible">True</property> - <property name="xalign">1</property> + <property name="can_focus">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="xalign">1</property> <property name="label" translatable="yes">Director:</property> <property name="use_markup">True</property> </object> <packing> <property name="top_attach">2</property> <property name="bottom_attach">3</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> @@ -4735,32 +5175,32 @@ This setting allows you to synchronize the files.</property> <property name="activates_default">True</property> <property name="width_chars">50</property> <property name="truncate_multiline">True</property> - <signal name="changed" handler="meta_setting_widget_changed_cb"/> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <signal name="changed" handler="meta_setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">2</property> - <property name="bottom_attach">3</property> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> - <property name="y_options"></property> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkLabel" id="tag_release_date_label"> <property name="visible">True</property> - <property name="xalign">1</property> + <property name="can_focus">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="xalign">1</property> <property name="label" translatable="yes">Release Date:</property> <property name="use_markup">True</property> </object> <packing> <property name="top_attach">3</property> <property name="bottom_attach">4</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> @@ -4772,32 +5212,32 @@ This setting allows you to synchronize the files.</property> <property name="activates_default">True</property> <property name="width_chars">50</property> <property name="truncate_multiline">True</property> - <signal name="changed" handler="meta_setting_widget_changed_cb"/> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <signal name="changed" handler="meta_setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">3</property> - <property name="bottom_attach">4</property> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> - <property name="y_options"></property> + <property name="top_attach">3</property> + <property name="bottom_attach">4</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkLabel" id="tag_comment_label"> <property name="visible">True</property> - <property name="xalign">1</property> + <property name="can_focus">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="xalign">1</property> <property name="label" translatable="yes">Comment:</property> <property name="use_markup">True</property> </object> <packing> <property name="top_attach">4</property> <property name="bottom_attach">5</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> @@ -4809,32 +5249,32 @@ This setting allows you to synchronize the files.</property> <property name="activates_default">True</property> <property name="width_chars">50</property> <property name="truncate_multiline">True</property> - <signal name="changed" handler="meta_setting_widget_changed_cb"/> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <signal name="changed" handler="meta_setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">4</property> - <property name="bottom_attach">5</property> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> - <property name="y_options"></property> + <property name="top_attach">4</property> + <property name="bottom_attach">5</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkLabel" id="tag_genre_label"> <property name="visible">True</property> - <property name="xalign">1</property> + <property name="can_focus">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="xalign">1</property> <property name="label" translatable="yes">Genre:</property> <property name="use_markup">True</property> </object> <packing> <property name="top_attach">5</property> <property name="bottom_attach">6</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> @@ -4846,32 +5286,32 @@ This setting allows you to synchronize the files.</property> <property name="activates_default">True</property> <property name="width_chars">50</property> <property name="truncate_multiline">True</property> - <signal name="changed" handler="meta_setting_widget_changed_cb"/> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <signal name="changed" handler="meta_setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">5</property> - <property name="bottom_attach">6</property> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> - <property name="y_options"></property> + <property name="top_attach">5</property> + <property name="bottom_attach">6</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkLabel" id="tag_description_label"> <property name="visible">True</property> - <property name="xalign">1</property> + <property name="can_focus">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="xalign">1</property> <property name="label" translatable="yes">Description:</property> <property name="use_markup">True</property> </object> <packing> <property name="top_attach">6</property> <property name="bottom_attach">7</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="x_options">GTK_FILL</property> - <property name="y_options"></property> + <property name="y_options"/> </packing> </child> <child> @@ -4883,30 +5323,30 @@ This setting allows you to synchronize the files.</property> <property name="activates_default">True</property> <property name="width_chars">50</property> <property name="truncate_multiline">True</property> - <signal name="changed" handler="meta_setting_widget_changed_cb"/> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <signal name="changed" handler="meta_setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">6</property> - <property name="bottom_attach">7</property> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> - <property name="y_options"></property> + <property name="top_attach">6</property> + <property name="bottom_attach">7</property> + <property name="y_options"/> </packing> </child> <child> <object class="GtkLabel" id="tag_long_description_label"> <property name="visible">True</property> - <property name="xalign">1</property> + <property name="can_focus">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="xalign">1</property> <property name="label" translatable="yes">Plot:</property> <property name="use_markup">True</property> </object> <packing> <property name="top_attach">7</property> <property name="bottom_attach">8</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="x_options">GTK_FILL</property> <property name="y_options">GTK_EXPAND</property> </packing> @@ -4916,35 +5356,35 @@ This setting allows you to synchronize the files.</property> <property name="height_request">80</property> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property> - <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property> <property name="shadow_type">etched-in</property> <child> <object class="GtkTextView" id="MetaLongDescription"> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="wrap_mode">GTK_WRAP_CHAR</property> + <property name="wrap_mode">char</property> <property name="accepts_tab">False</property> - <signal handler="meta_focus_out_cb" name="focus_out_event"/> + <signal name="focus-out-event" handler="meta_focus_out_cb" swapped="no"/> </object> </child> </object> <packing> - <property name="top_attach">7</property> - <property name="bottom_attach">8</property> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="x_options">GTK_FILL|GTK_EXPAND</property> - <property name="y_options">GTK_FILL|GTK_EXPAND</property> + <property name="top_attach">7</property> + <property name="bottom_attach">8</property> </packing> </child> </object> </child> </object> + <packing> + <property name="position">6</property> + </packing> </child> <child type="tab"> <object class="GtkLabel" id="metadata_label"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">Tags</property> </object> @@ -4958,42 +5398,49 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">True</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> - <child> <object class="GtkAlignment" id="alignment66"> <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> + <property name="yalign">1</property> <property name="top_padding">4</property> <property name="bottom_padding">4</property> <property name="left_padding">12</property> <property name="right_padding">12</property> - <property name="xalign">0.0</property> - <property name="yalign">1.0</property> <child> <object class="GtkHBox" id="hbox46"> <property name="visible">True</property> + <property name="can_focus">False</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="work_status"> <property name="visible">True</property> - <property name="xalign">0</property> + <property name="can_focus">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="xalign">0</property> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="pending_status"> <property name="visible">True</property> - <property name="xalign">1</property> + <property name="can_focus">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="xalign">1</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> @@ -5002,66 +5449,69 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">2</property> </packing> </child> <child> <object class="GtkAlignment" id="alignment71"> <property name="visible">True</property> + <property name="can_focus">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="bottom_padding">6</property> <property name="left_padding">12</property> <property name="right_padding">12</property> - <property name="bottom_padding">6</property> <child> <object class="GtkProgressBar" id="progressbar"> <property name="height_request">10</property> - <property name="visible">False</property> + <property name="can_focus">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="text" translatable="yes"/> </object> </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">3</property> </packing> </child> </object> <packing> - <property name="position">0</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkAlignment" id="alignment69"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">6</property> <property name="right_padding">6</property> <child> <object class="GtkFrame" id="presets_frame"> - <property name="visible">False</property> + <property name="can_focus">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="label_xalign">0</property> <property name="shadow_type">none</property> - <signal handler="presets_frame_size_allocate_cb" name="size_allocate"/> + <signal name="size-allocate" handler="presets_frame_size_allocate_cb" swapped="no"/> <child> <object class="GtkAlignment" id="alignment21"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">6</property> <property name="left_padding">8</property> <child> <object class="GtkVBox" id="presets_vbox"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</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="GtkScrolledWindow" id="presets_scroll"> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property> - <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property> <property name="shadow_type">etched-in</property> <child> <object class="GtkTreeView" id="presets_list"> @@ -5070,54 +5520,59 @@ This setting allows you to synchronize the files.</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="headers_visible">False</property> - <property name="headers_clickable">True</property> + <child internal-child="selection"> + <object class="GtkTreeSelection" id="treeview-selection4"/> + </child> </object> </child> </object> <packing> <property name="expand">True</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkToolbar" id="presets_toolbar"> - <property name="icon-size">2</property> <property name="visible">True</property> - <property name="show_arrow">False</property> + <property name="can_focus">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="show_arrow">False</property> + <property name="icon_size">2</property> <child> <object class="GtkToolButton" id="presets_save"> <property name="visible">True</property> - <property name="sensitive">True</property> - <property name="is_important">False</property> + <property name="can_focus">False</property> + <property name="tooltip_text" translatable="yes">Save current settings to new preset.</property> <property name="label" translatable="yes">_Save</property> <property name="use_underline">True</property> - <property name="tooltip-text" translatable="yes">Save current settings to new preset.</property> <property name="stock_id">gtk-save</property> - <signal name="clicked" handler="presets_save_clicked_cb"/> + <signal name="clicked" handler="presets_save_clicked_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton" id="presets_remove"> <property name="visible">True</property> - <property name="sensitive">True</property> - <property name="is_important">False</property> + <property name="can_focus">False</property> + <property name="tooltip_text" translatable="yes">Delete the currently selected preset.</property> <property name="label" translatable="yes">_Delete</property> <property name="use_underline">True</property> - <property name="tooltip-text" translatable="yes">Delete the currently selected preset.</property> <property name="stock_id">gtk-delete</property> - <signal name="clicked" handler="presets_remove_clicked_cb"/> + <signal name="clicked" handler="presets_remove_clicked_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkSeparatorToolItem" id="toolbutton2"> <property name="visible">True</property> + <property name="can_focus">False</property> </object> <packing> <property name="expand">True</property> @@ -5127,22 +5582,24 @@ This setting allows you to synchronize the files.</property> <child> <object class="GtkToolButton" id="presets_menu_button"> <property name="visible">True</property> - <property name="sensitive">True</property> + <property name="can_focus">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">Preset Options</property> <property name="is_important">True</property> <property name="label" translatable="yes">_Options</property> <property name="use_underline">True</property> - <property name="tooltip-text" translatable="yes">Preset Options</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> <property name="stock_id">gtk-preferences</property> - <signal handler="presets_menu_clicked_cb" name="clicked"/> + <signal name="clicked" handler="presets_menu_clicked_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="homogeneous">True</property> </packing> </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> @@ -5153,6 +5610,7 @@ This setting allows you to synchronize the files.</property> <child type="label"> <object class="GtkLabel" id="label34"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes"><b>Presets</b></property> <property name="use_markup">True</property> @@ -5162,20 +5620,36 @@ This setting allows you to synchronize the files.</property> </child> </object> <packing> - <property name="position">1</property> <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">1</property> </packing> </child> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">2</property> </packing> </child> </object> </child> </object> - + <object class="GtkAdjustment" id="min_title_adj"> + <property name="upper">7200</property> + <property name="value">10</property> + <property name="step_increment">5</property> + <property name="page_increment">10</property> + </object> + <object class="GtkAdjustment" id="preview_count_adj"> + <property name="lower">5</property> + <property name="upper">60</property> + <property name="value">10</property> + <property name="step_increment">5</property> + <property name="page_increment">10</property> + </object> <object class="GtkDialog" id="prefs_dialog"> + <property name="can_focus">False</property> <property name="border_width">5</property> <property name="title" translatable="yes">Preferences</property> <property name="modal">True</property> @@ -5183,36 +5657,67 @@ This setting allows you to synchronize the files.</property> <property name="type_hint">dialog</property> <property name="skip_taskbar_hint">True</property> <property name="skip_pager_hint">True</property> - <signal name="delete_event" handler="gtk_widget_hide_on_delete"/> + <signal name="delete-event" handler="gtk_widget_hide_on_delete" swapped="no"/> <child internal-child="vbox"> - <object class="GtkVBox" id="dialog-vbox6"> - <property name="orientation">vertical</property> + <object class="GtkBox" id="dialog-vbox6"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="spacing">2</property> + <child internal-child="action_area"> + <object class="GtkButtonBox" id="dialog-action_area5"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="layout_style">end</property> + <child> + <object class="GtkButton" id="pref_ok"> + <property name="label">gtk-ok</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">True</property> + <property name="use_stock">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">0</property> + </packing> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="pack_type">end</property> + <property name="position">0</property> + </packing> + </child> <child> <object class="GtkHBox" id="hbox59"> <property name="visible">True</property> + <property name="can_focus">False</property> <child> <object class="GtkVBox" id="vbox20"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</property> <child> <object class="GtkEventBox" id="eventbox1"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="events">GDK_BUTTON_MOTION_MASK | GDK_BUTTON_PRESS_MASK | GDK_STRUCTURE_MASK</property> <property name="above_child">True</property> - <signal name="button_press_event" handler="easter_egg_cb"/> + <signal name="button-press-event" handler="easter_egg_cb" swapped="no"/> <child> <object class="GtkImage" id="image3"> <property name="visible">True</property> + <property name="can_focus">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="pixel_size">64</property> <property name="icon_name">hb-icon</property> - <property name="pixel-size">64</property> </object> </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> @@ -5221,50 +5726,59 @@ This setting allows you to synchronize the files.</property> </child> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkAlignment" id="alignment22"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="left_padding">12</property> <child> <object class="GtkNotebook" id="PrefsNotebook"> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="show-border">False</property> + <property name="show_border">False</property> <child> <object class="GtkVBox" id="vbox42"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</property> <child> <object class="GtkAlignment" id="check_updates_box"> <property name="visible">True</property> - <property name="left_padding">12</property> + <property name="can_focus">False</property> <property name="top_padding">6</property> <property name="bottom_padding">6</property> + <property name="left_padding">12</property> <child> <object class="GtkHBox" id="hbox80"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="spacing">4</property> <child> <object class="GtkComboBox" id="check_updates"> <property name="visible">True</property> - <signal name="changed" handler="pref_changed_cb"/> + <property name="can_focus">False</property> + <signal name="changed" handler="pref_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="label74"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">Automatically check for updates</property> <property name="use_markup">True</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> @@ -5273,38 +5787,45 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkAlignment" id="alignment62"> <property name="visible">True</property> - <property name="left_padding">12</property> - <property name="right_padding">12</property> + <property name="can_focus">False</property> <property name="top_padding">6</property> <property name="bottom_padding">6</property> + <property name="left_padding">12</property> + <property name="right_padding">12</property> <child> <object class="GtkHBox" id="hbox82"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="spacing">4</property> <child> <object class="GtkComboBox" id="WhenComplete"> <property name="visible">True</property> - <signal name="changed" handler="pref_changed_cb"/> + <property name="can_focus">False</property> + <signal name="changed" handler="pref_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="labela1"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">When all encodes are complete</property> <property name="use_markup">True</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> @@ -5313,53 +5834,60 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkAlignment" id="alignment5"> <property name="visible">True</property> - <property name="left_padding">12</property> + <property name="can_focus">False</property> <property name="top_padding">6</property> <property name="bottom_padding">6</property> + <property name="left_padding">12</property> <child> <object class="GtkVBox" id="vbox5"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</property> <child> <object class="GtkCheckButton" id="use_source_name"> <property name="label" translatable="yes">Use automatic naming (uses modified source name)</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="pref_changed_cb"/> + <signal name="toggled" handler="pref_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkAlignment" id="alignment6"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="left_padding">18</property> <child> <object class="GtkVBox" id="vbox29"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</property> <child> <object class="GtkCheckButton" id="chapters_in_destination"> <property name="label" translatable="yes">Add chapters to destination name</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> + <property name="xalign">0.5</property> <property name="active">True</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="pref_changed_cb"/> + <signal name="toggled" handler="pref_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> @@ -5369,12 +5897,14 @@ This setting allows you to synchronize the files.</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> + <property name="xalign">0.5</property> <property name="active">True</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="pref_changed_cb"/> + <signal name="toggled" handler="pref_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> @@ -5383,6 +5913,7 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> @@ -5392,11 +5923,13 @@ This setting allows you to synchronize the files.</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="use_m4v_changed_cb"/> + <signal name="toggled" handler="use_m4v_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">2</property> </packing> </child> @@ -5405,43 +5938,51 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">2</property> </packing> </child> <child> <object class="GtkAlignment" id="alignment50"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="top_padding">6</property> <property name="bottom_padding">6</property> <property name="left_padding">12</property> <child> <object class="GtkHBox" id="hbox66"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="spacing">4</property> <child> <object class="GtkSpinButton" id="preview_count"> <property name="visible">True</property> <property name="can_focus">True</property> <property name="max_length">2</property> - <property name="invisible_char">●</property> + <property name="invisible_char">●</property> <property name="shadow_type">none</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> <property name="adjustment">preview_count_adj</property> <property name="numeric">True</property> - <signal name="value_changed" handler="pref_changed_cb"/> + <signal name="value-changed" handler="pref_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="label77"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">Number of previews</property> <property name="use_markup">True</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> @@ -5450,43 +5991,51 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">3</property> </packing> </child> <child> <object class="GtkAlignment" id="alignment58"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="top_padding">6</property> <property name="bottom_padding">6</property> <property name="left_padding">12</property> <child> <object class="GtkHBox" id="hbox60"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="spacing">4</property> <child> <object class="GtkSpinButton" id="MinTitleDuration"> <property name="visible">True</property> <property name="can_focus">True</property> <property name="max_length">4</property> - <property name="invisible_char">●</property> + <property name="invisible_char">●</property> <property name="shadow_type">none</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> <property name="adjustment">min_title_adj</property> <property name="numeric">True</property> - <signal name="value_changed" handler="pref_changed_cb"/> + <signal name="value-changed" handler="pref_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="label70"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">Filter short titles (seconds)</property> <property name="use_markup">True</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> @@ -5495,12 +6044,14 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">4</property> </packing> </child> <child> <object class="GtkAlignment" id="alignment64"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="top_padding">6</property> <property name="bottom_padding">6</property> <property name="left_padding">12</property> @@ -5510,13 +6061,15 @@ This setting allows you to synchronize the files.</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="show_status_cb"/> + <signal name="toggled" handler="show_status_cb" swapped="no"/> </object> </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">5</property> </packing> </child> @@ -5525,6 +6078,7 @@ This setting allows you to synchronize the files.</property> <child type="tab"> <object class="GtkLabel" id="label2"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">General</property> </object> <packing> @@ -5533,11 +6087,12 @@ This setting allows you to synchronize the files.</property> </child> <child> <object class="GtkVBox" id="vbox18"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</property> <child> <object class="GtkAlignment" id="alignment61"> <property name="visible">True</property> + <property name="can_focus">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="yscale">0</property> <property name="top_padding">6</property> @@ -5545,22 +6100,25 @@ This setting allows you to synchronize the files.</property> <property name="left_padding">12</property> <child> <object class="GtkVBox" id="vbox7"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</property> <child> <object class="GtkHBox" id="hbox81"> <property name="visible">True</property> + <property name="can_focus">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="spacing">4</property> <child> <object class="GtkLabel" id="label87"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">Preferred Language:</property> <property name="use_markup">True</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> @@ -5568,28 +6126,32 @@ This setting allows you to synchronize the files.</property> <object class="GtkComboBox" id="PreferredLanguage"> <property name="width_request">150</property> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - <signal name="changed" handler="pref_changed_cb"/> + <signal name="changed" handler="pref_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkAlignment" id="alignment8"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="left_padding">17</property> <child> <object class="GtkVBox" id="vbox49"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</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="GtkRadioButton" id="AudioDUB"> @@ -5597,12 +6159,14 @@ This setting allows you to synchronize the files.</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> + <property name="xalign">0.5</property> <property name="active">True</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="pref_changed_cb"/> + <signal name="toggled" handler="pref_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> @@ -5612,12 +6176,14 @@ This setting allows you to synchronize the files.</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> <property name="group">AudioDUB</property> - <signal name="toggled" handler="pref_changed_cb"/> + <signal name="toggled" handler="pref_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> @@ -5625,8 +6191,9 @@ This setting allows you to synchronize the files.</property> </child> </object> <packing> - <property name="position">1</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> </packing> </child> </object> @@ -5634,31 +6201,34 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkAlignment" id="alignment70"> <property name="visible">True</property> + <property name="can_focus">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="yscale">0</property> - <property name="left_padding">12</property> <property name="top_padding">6</property> <property name="bottom_padding">6</property> + <property name="left_padding">12</property> <child> <object class="GtkCheckButton" id="AddCC"> <property name="label" translatable="yes">Add Closed Captions when available</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> - <property name="active">False</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="pref_changed_cb"/> + <signal name="toggled" handler="pref_changed_cb" swapped="no"/> </object> </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> @@ -5670,6 +6240,7 @@ This setting allows you to synchronize the files.</property> <child type="tab"> <object class="GtkLabel" id="label3"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">Audio/Subtitles</property> </object> <packing> @@ -5680,52 +6251,87 @@ This setting allows you to synchronize the files.</property> <child> <object class="GtkAlignment" id="alignment3"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="top_padding">6</property> <property name="bottom_padding">6</property> <property name="left_padding">12</property> <child> <object class="GtkVBox" id="vbox1"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</property> <child> <object class="GtkTable" id="AdvancedPrefsTable"> <property name="visible">True</property> + <property name="can_focus">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="n_rows">9</property> <property name="n_columns">2</property> <property name="row_spacing">6</property> <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> <object class="GtkHBox" id="hbox6"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="spacing">4</property> <child> <object class="GtkComboBox" id="VideoQualityGranularity"> <property name="width_request">55</property> <property name="visible">True</property> - <signal name="changed" handler="vqual_granularity_changed_cb"/> + <property name="can_focus">False</property> + <signal name="changed" handler="vqual_granularity_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="label85"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="label" translatable="yes">Constant Quality fractional granularity</property> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> - <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - </packing> </child> <child> <object class="GtkCheckButton" id="use_dvdnav"> @@ -5733,60 +6339,68 @@ This setting allows you to synchronize the files.</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="pref_changed_cb"/> + <signal name="toggled" handler="pref_changed_cb" swapped="no"/> </object> <packing> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> </packing> </child> <child> <object class="GtkVBox" id="vbox2"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</property> <child> <object class="GtkCheckButton" id="EncodeLogLocation"> <property name="label" translatable="yes">Put individual encode logs in same location as movie</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="pref_changed_cb"/> + <signal name="toggled" handler="pref_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkAlignment" id="alignment51"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="left_padding">21</property> <child> <object class="GtkHBox" id="hbox50"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="spacing">4</property> <child> <object class="GtkComboBox" id="LoggingLevel"> <property name="width_request">55</property> <property name="visible">True</property> - <signal name="changed" handler="pref_changed_cb"/> + <property name="can_focus">False</property> + <signal name="changed" handler="pref_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="label1"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="label" translatable="yes">Activity Log Verbosity Level</property> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> @@ -5795,34 +6409,42 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkAlignment" id="alignment63"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="left_padding">21</property> <child> <object class="GtkHBox" id="hbox83"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="spacing">4</property> <child> <object class="GtkComboBox" id="LogLongevity"> <property name="visible">True</property> - <signal name="changed" handler="pref_changed_cb"/> + <property name="can_focus">False</property> + <signal name="changed" handler="pref_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="labela2"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="label" translatable="yes">Activity Log Longevity</property> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> @@ -5831,6 +6453,7 @@ This setting allows you to synchronize the files.</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">2</property> </packing> </child> @@ -5838,8 +6461,6 @@ This setting allows you to synchronize the files.</property> <packing> <property name="top_attach">2</property> <property name="bottom_attach">3</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> </packing> </child> <child> @@ -5848,117 +6469,274 @@ This setting allows you to synchronize the files.</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="pref_changed_cb"/> + <signal name="toggled" handler="pref_changed_cb" swapped="no"/> </object> <packing> <property name="top_attach">3</property> <property name="bottom_attach">4</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> </packing> </child> <child> <object class="GtkCheckButton" id="AutoScan"> <property name="label" translatable="yes">Automatically Scan DVD when loaded</property> - <property name="tooltip-text" translatable="yes">Scans the DVD whenever a new disc is loaded</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> + <property name="tooltip_text" translatable="yes">Scans the DVD whenever a new disc is loaded</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="pref_changed_cb"/> + <signal name="toggled" handler="pref_changed_cb" swapped="no"/> </object> <packing> <property name="top_attach">4</property> <property name="bottom_attach">5</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> </packing> </child> <child> <object class="GtkCheckButton" id="AdvancedAutoPassthru"> <property name="label" translatable="yes">Enable Advanced Auto-Passthru options</property> - <property name="tooltip-text" translatable="yes">Enabling this adds extra widgets to the audio panel that allow - you to specify which particular codecs shall be passed - and which codec to use when passthru is not possible</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> + <property name="tooltip_text" translatable="yes">Enabling this adds extra widgets to the audio panel that allow + you to specify which particular codecs shall be passed + and which codec to use when passthru is not possible</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="advanced_audio_changed_cb"/> + <signal name="toggled" handler="advanced_audio_changed_cb" swapped="no"/> </object> <packing> <property name="top_attach">5</property> <property name="bottom_attach">6</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> </packing> </child> <child> <object class="GtkCheckButton" id="HideAdvancedVideoSettings"> <property name="label" translatable="yes">Hide Advanced Video Options Tab</property> - <property name="tooltip-text" translatable="yes">Use advanced video options at your own risk. -We recommend that you use the controls available -on the Video tab instead.</property> - <property name="active">False</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> + <property name="tooltip_text" translatable="yes">Use advanced video options at your own risk. +We recommend that you use the controls available +on the Video tab instead.</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="advanced_video_changed_cb"/> + <signal name="toggled" handler="advanced_video_changed_cb" swapped="no"/> </object> <packing> <property name="top_attach">6</property> <property name="bottom_attach">7</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> </packing> </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkTable" id="hidden_prefs"> <property name="visible">True</property> + <property name="can_focus">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="n_rows">9</property> <property name="n_columns">2</property> <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> <object class="GtkCheckButton" id="allow_tweaks"> <property name="label" translatable="yes">Allow Tweaks</property> <property name="can_focus">True</property> <property name="receives_default">False</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="tweaks_changed_cb"/> + <signal name="toggled" handler="tweaks_changed_cb" swapped="no"/> </object> - <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - </packing> </child> <child> <object class="GtkCheckButton" id="hbfd_feature"> <property name="label" translatable="yes">Allow HandBrake For Dummies</property> <property name="can_focus">True</property> <property name="receives_default">False</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="hbfd_feature_changed_cb"/> + <signal name="toggled" handler="hbfd_feature_changed_cb" swapped="no"/> </object> <packing> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> </packing> </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> @@ -5972,6 +6750,7 @@ on the Video tab instead.</property> <child type="tab"> <object class="GtkLabel" id="label36"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">Advanced</property> </object> <packing> @@ -5983,167 +6762,104 @@ on the Video tab instead.</property> </child> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> - <child internal-child="action_area"> - <object class="GtkHButtonBox" id="dialog-action_area5"> - <property name="visible">True</property> - <property name="layout_style">end</property> - <child> - <object class="GtkButton" id="pref_ok"> - <property name="label" translatable="yes">gtk-ok</property> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">True</property> - <property name="use_stock">True</property> - </object> - <packing> - <property name="expand">False</property> - <property name="fill">False</property> - <property name="position">0</property> - </packing> - </child> - </object> - <packing> - <property name="expand">False</property> - <property name="pack_type">end</property> - <property name="position">0</property> - </packing> - </child> </object> </child> <action-widgets> <action-widget response="-5">pref_ok</action-widget> </action-widgets> </object> - <object class="GtkDialog" id="tweak_dialog"> + <object class="GtkDialog" id="preset_new_folder_dialog"> + <property name="can_focus">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">5</property> <property name="modal">True</property> - <property name="window_position">GTK_WIN_POS_CENTER_ON_PARENT</property> - <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property> - <signal handler="gtk_widget_hide_on_delete" name="delete_event"/> + <property name="window_position">center-on-parent</property> + <property name="type_hint">dialog</property> + <signal name="delete-event" handler="gtk_widget_hide_on_delete" swapped="no"/> <child internal-child="vbox"> - <object class="GtkVBox" id="dialog-vbox7"> - <property name="orientation">vertical</property> + <object class="GtkBox" id="dialog-vbox2"> <property name="visible">True</property> + <property name="can_focus">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="spacing">2</property> - <child> - <object class="GtkHBox" id="hbox9"> - <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="label33"> - <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">Setting:</property> - </object> - <packing> - <property name="expand">False</property> - </packing> - </child> - <child> - <object class="GtkEntry" id="tweak_setting"> - <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="max_length">40</property> - <property name="activates_default">True</property> - <property name="width_chars">30</property> - <property name="truncate_multiline">True</property> - </object> - <packing> - <property name="expand">False</property> - <property name="position">1</property> - </packing> - </child> - </object> - <packing> - <property name="expand">False</property> - <property name="position">1</property> - </packing> - </child> <child internal-child="action_area"> - <object class="GtkHButtonBox" id="dialog-action_area7"> + <object class="GtkButtonBox" id="dialog-action_area2"> <property name="visible">True</property> + <property name="can_focus">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="layout_style">GTK_BUTTONBOX_END</property> + <property name="layout_style">end</property> <child> - <object class="GtkButton" id="tweak_cancel"> + <object class="GtkButton" id="preset_folder_cancel"> + <property name="label">gtk-cancel</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">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">gtk-cancel</property> <property name="use_stock">True</property> </object> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">0</property> + </packing> </child> <child> - <object class="GtkButton" id="tweak_ok"> + <object class="GtkButton" id="preset_folder_ok"> + <property name="label">gtk-ok</property> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="can_default">True</property> - <property name="has_default">True</property> <property name="receives_default">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">gtk-ok</property> <property name="use_stock">True</property> </object> <packing> + <property name="expand">False</property> + <property name="fill">False</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="expand">False</property> - <property name="pack_type">GTK_PACK_END</property> + <property name="fill">True</property> + <property name="pack_type">end</property> + <property name="position">0</property> </packing> </child> - </object> - </child> - <action-widgets> - <action-widget response="0">tweak_cancel</action-widget> - <action-widget response="-5">tweak_ok</action-widget> - </action-widgets> - </object> - <object class="GtkDialog" id="preset_new_folder_dialog"> - <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">5</property> - <property name="modal">True</property> - <property name="window_position">GTK_WIN_POS_CENTER_ON_PARENT</property> - <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property> - <signal handler="gtk_widget_hide_on_delete" name="delete_event"/> - <child internal-child="vbox"> - <object class="GtkVBox" id="dialog-vbox2"> - <property name="orientation">vertical</property> - <property name="visible">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - <property name="spacing">2</property> <child> <object class="GtkVBox" id="vbox26"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</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="hbox31"> <property name="visible">True</property> + <property name="can_focus">False</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="label30"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">Folder Name:</property> <property name="xalign">0</property> + <property name="label" translatable="yes">Folder Name:</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> @@ -6155,27 +6871,34 @@ on the Video tab instead.</property> <property name="activates_default">True</property> <property name="width_chars">30</property> <property name="truncate_multiline">True</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="expand">False</property> - <property name="position">0</property> + <property name="fill">True</property> <property name="padding">10</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkFrame" id="frame17"> <property name="visible">True</property> + <property name="can_focus">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="label_xalign">0</property> - <property name="shadow_type">GTK_SHADOW_ETCHED_OUT</property> + <property name="shadow_type">etched-out</property> <child> <object class="GtkAlignment" id="alignment32"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">6</property> <property name="bottom_padding">4</property> @@ -6187,7 +6910,7 @@ on the Video tab instead.</property> <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="wrap_mode">GTK_WRAP_WORD</property> + <property name="wrap_mode">word</property> <property name="accepts_tab">False</property> </object> </child> @@ -6196,6 +6919,7 @@ on the Video tab instead.</property> <child type="label"> <object class="GtkLabel" id="label21"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes"><b>Description</b></property> <property name="use_markup">True</property> @@ -6203,87 +6927,106 @@ on the Video tab instead.</property> </child> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="padding">10</property> <property name="position">2</property> </packing> </child> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> + </object> + </child> + <action-widgets> + <action-widget response="0">preset_folder_cancel</action-widget> + <action-widget response="-5">preset_folder_ok</action-widget> + </action-widgets> + </object> + <object class="GtkDialog" id="preset_save_dialog"> + <property name="can_focus">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">5</property> + <property name="modal">True</property> + <property name="window_position">center-on-parent</property> + <property name="type_hint">dialog</property> + <signal name="delete-event" handler="gtk_widget_hide_on_delete" swapped="no"/> + <child internal-child="vbox"> + <object class="GtkBox" id="dialog-vbox3"> + <property name="visible">True</property> + <property name="can_focus">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="spacing">2</property> <child internal-child="action_area"> - <object class="GtkHButtonBox" id="dialog-action_area2"> + <object class="GtkButtonBox" id="dialog-action_area3"> <property name="visible">True</property> + <property name="can_focus">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="layout_style">GTK_BUTTONBOX_END</property> + <property name="layout_style">end</property> <child> - <object class="GtkButton" id="preset_folder_cancel"> + <object class="GtkButton" id="preset_cancel"> + <property name="label">gtk-cancel</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">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">gtk-cancel</property> <property name="use_stock">True</property> </object> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">0</property> + </packing> </child> <child> - <object class="GtkButton" id="preset_folder_ok"> + <object class="GtkButton" id="preset_ok"> + <property name="label">gtk-ok</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">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">gtk-ok</property> <property name="use_stock">True</property> </object> <packing> + <property name="expand">False</property> + <property name="fill">False</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="expand">False</property> - <property name="pack_type">GTK_PACK_END</property> + <property name="fill">True</property> + <property name="pack_type">end</property> + <property name="position">0</property> </packing> </child> - </object> - </child> - <action-widgets> - <action-widget response="0">preset_folder_cancel</action-widget> - <action-widget response="-5">preset_folder_ok</action-widget> - </action-widgets> - </object> - <object class="GtkDialog" id="preset_save_dialog"> - <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">5</property> - <property name="modal">True</property> - <property name="window_position">GTK_WIN_POS_CENTER_ON_PARENT</property> - <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property> - <signal handler="gtk_widget_hide_on_delete" name="delete_event"/> - <child internal-child="vbox"> - <object class="GtkVBox" id="dialog-vbox3"> - <property name="orientation">vertical</property> - <property name="visible">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - <property name="spacing">2</property> <child> <object class="GtkVBox" id="vbox28"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</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="hbox41"> <property name="visible">True</property> + <property name="can_focus">False</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="label64"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">Preset Name:</property> <property name="xalign">0</property> + <property name="label" translatable="yes">Preset Name:</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> @@ -6295,51 +7038,58 @@ on the Video tab instead.</property> <property name="activates_default">True</property> <property name="width_chars">30</property> <property name="truncate_multiline">True</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> <property name="expand">False</property> - <property name="position">0</property> + <property name="fill">True</property> <property name="padding">10</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkTable" id="PicturePresetBox"> <property name="visible">True</property> + <property name="can_focus">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="n_rows">3</property> <property name="n_columns">3</property> <child> + <placeholder/> + </child> + <child> <object class="GtkLabel" id="UsingCurrentPicLabel"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes"><b>Custom Picture Dimensions</b></property> <property name="xalign">0</property> + <property name="label" translatable="yes"><b>Custom Picture Dimensions</b></property> <property name="use_markup">True</property> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="left_attach">0</property> <property name="right_attach">3</property> </packing> </child> <child> <object class="GtkLabel" id="fillerlabel1"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes"></property> <property name="xalign">0</property> </object> <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> <property name="left_attach">2</property> <property name="right_attach">3</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> <property name="x_options">GTK_EXPAND</property> </packing> </child> @@ -6350,15 +7100,14 @@ on the Video tab instead.</property> <property name="can_focus">True</property> <property name="receives_default">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">Enable maximum width limit.</property> + <property name="tooltip_text" translatable="yes">Enable maximum width limit.</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="setting_widget_changed_cb"/> + <signal name="toggled" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="x_options">GTK_FILL</property> </packing> </child> @@ -6367,17 +7116,19 @@ on the Video tab instead.</property> <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">This is the maximum width that the video will be stored at. Whenever a new source is loaded, this value will be applied if the source width is greater. Setting this to 0 means there is no maximum width.</property> + <property name="tooltip_text" translatable="yes">This is the maximum width that the video will be stored at. Whenever a new source is loaded, this value will be applied if the source width is greater. Setting this to 0 means there is no maximum width.</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> <property name="adjustment">adjustment32</property> <property name="snap_to_ticks">True</property> - <signal name="value_changed" handler="setting_widget_changed_cb"/> + <signal name="value-changed" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="x_options"></property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="x_options"/> </packing> </child> <child> @@ -6387,15 +7138,14 @@ on the Video tab instead.</property> <property name="can_focus">True</property> <property name="receives_default">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">Enable maximum height limit.</property> + <property name="tooltip_text" translatable="yes">Enable maximum height limit.</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="setting_widget_changed_cb"/> + <signal name="toggled" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> <property name="top_attach">2</property> <property name="bottom_attach">3</property> - <property name="left_attach">0</property> - <property name="right_attach">1</property> <property name="x_options">GTK_FILL</property> </packing> </child> @@ -6404,32 +7154,38 @@ on the Video tab instead.</property> <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">This is the maximum height that the video will be stored at. Whenever a new source is loaded, this value will be applied if the source height is greater. Setting this to 0 means there is no maximum height.</property> + <property name="tooltip_text" translatable="yes">This is the maximum height that the video will be stored at. Whenever a new source is loaded, this value will be applied if the source height is greater. Setting this to 0 means there is no maximum height.</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> <property name="adjustment">adjustment33</property> - <signal name="value_changed" handler="setting_widget_changed_cb"/> + <signal name="value-changed" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">2</property> - <property name="bottom_attach">3</property> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="x_options"></property> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> + <property name="x_options"/> </packing> </child> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkFrame" id="frame14"> <property name="visible">True</property> + <property name="can_focus">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="label_xalign">0</property> - <property name="shadow_type">GTK_SHADOW_ETCHED_OUT</property> + <property name="shadow_type">etched-out</property> <child> <object class="GtkAlignment" id="alignment36"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">6</property> <property name="bottom_padding">4</property> @@ -6441,7 +7197,7 @@ on the Video tab instead.</property> <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="wrap_mode">GTK_WRAP_WORD</property> + <property name="wrap_mode">word</property> <property name="accepts_tab">False</property> </object> </child> @@ -6450,6 +7206,7 @@ on the Video tab instead.</property> <child type="label"> <object class="GtkLabel" id="label67"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes"><b>Description</b></property> <property name="use_markup">True</property> @@ -6457,49 +7214,19 @@ on the Video tab instead.</property> </child> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="padding">10</property> <property name="position">2</property> </packing> </child> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> - <child internal-child="action_area"> - <object class="GtkHButtonBox" id="dialog-action_area3"> - <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="layout_style">GTK_BUTTONBOX_END</property> - <child> - <object class="GtkButton" id="preset_cancel"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">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">gtk-cancel</property> - <property name="use_stock">True</property> - </object> - </child> - <child> - <object class="GtkButton" id="preset_ok"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">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">gtk-ok</property> - <property name="use_stock">True</property> - </object> - <packing> - <property name="position">1</property> - </packing> - </child> - </object> - <packing> - <property name="expand">False</property> - <property name="pack_type">GTK_PACK_END</property> - </packing> - </child> </object> </child> <action-widgets> @@ -6507,156 +7234,427 @@ on the Video tab instead.</property> <action-widget response="-5">preset_ok</action-widget> </action-widgets> </object> - <object class="GtkWindow" id="activity_window"> - <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="type_hint">GDK_WINDOW_TYPE_HINT_UTILITY</property> - <property name="default_width">800</property> - <property name="default_height">600</property> - <property name="skip_taskbar_hint">True</property> - <property name="skip_pager_hint">True</property> - <property name="transient-for">hb_window</property> - <signal handler="activity_window_delete_cb" name="delete_event"/> + <object class="GtkMenu" id="presets_menu"> + <property name="can_focus">False</property> <child> - <object class="GtkVBox" id="vbox37"> - <property name="orientation">vertical</property> + <object class="GtkMenuItem" id="presets_default"> + <property name="label">_Make Default</property> <property name="visible">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - <child> - <placeholder/> - </child> - <child> - <object class="GtkLabel" id="activity_location"> - <property name="justify">GTK_JUSTIFY_LEFT</property> - <property name="visible">True</property> - </object> - <packing> - <property name="padding">5</property> - <property name="expand">False</property> - <property name="position">1</property> - </packing> - </child> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="presets_default_clicked_cb" swapped="no"/> + </object> + </child> + <child> + <object class="GtkMenuItem" id="presets_new_folder"> + <property name="label">New _Folder</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="presets_new_folder_clicked_cb" swapped="no"/> + </object> + </child> + <child> + <object class="GtkMenuItem" id="preset_export"> + <property name="label" translatable="yes">_Export</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="preset_export_clicked_cb" swapped="no"/> + </object> + </child> + <child> + <object class="GtkMenuItem" id="preset_import"> + <property name="label" translatable="yes">_Import</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="preset_import_clicked_cb" swapped="no"/> + </object> + </child> + <child> + <object class="GtkMenuItem" id="presets_restore"> + <property name="label">_Update Built-in Presets</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="use_underline">True</property> + <signal name="activate" handler="presets_restore_clicked_cb" swapped="no"/> + </object> + </child> + </object> + <object class="GtkAlignment" id="preview_image_align"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="xscale">0</property> + <property name="yscale">0</property> + <child> + <object class="GtkDrawingArea" id="preview_image"> + <property name="visible">True</property> + <property name="app_paintable">True</property> + <property name="can_focus">False</property> + <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_LEAVE_NOTIFY_MASK</property> + <signal name="leave-notify-event" handler="preview_leave_cb" swapped="no"/> + <signal name="motion-notify-event" handler="preview_motion_cb" swapped="no"/> + </object> + </child> + </object> + <object class="GtkAdjustment" id="preview_progress_adj"> + <property name="upper">100</property> + <property name="step_increment">1</property> + <property name="page_increment">10</property> + </object> + <object class="GtkAlignment" id="preview_hud"> + <property name="can_focus">False</property> + <property name="yalign">0.89999997615814209</property> + <property name="xscale">0</property> + <property name="yscale">0</property> + <child> + <object class="GtkEventBox" id="preview_event_box"> + <property name="visible">True</property> + <property name="app_paintable">True</property> + <property name="can_focus">False</property> + <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_ENTER_NOTIFY_MASK</property> + <signal name="enter-notify-event" handler="hud_enter_cb" swapped="no"/> + <signal name="size-allocate" handler="preview_hud_size_alloc_cb" swapped="no"/> <child> - <object class="GtkScrolledWindow" id="activity_scroll"> + <object class="GtkAlignment" id="alignment53"> <property name="visible">True</property> - <property name="can_focus">True</property> + <property name="can_focus">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="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property> - <property name="shadow_type">GTK_SHADOW_IN</property> + <property name="top_padding">5</property> + <property name="bottom_padding">5</property> + <property name="left_padding">10</property> + <property name="right_padding">10</property> <child> - <object class="GtkTextView" id="activity_view"> - <property name="width_request">600</property> - <property name="height_request">600</property> + <object class="GtkVBox" id="vbox35"> <property name="visible">True</property> - <property name="can_focus">True</property> + <property name="can_focus">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="editable">False</property> - <property name="cursor-visible">False</property> - <property name="wrap_mode">GTK_WRAP_CHAR</property> + <child> + <object class="GtkScale" id="preview_frame"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="tooltip_text" translatable="yes">Select preview frames.</property> + <property name="adjustment">adjustment19</property> + <property name="digits">0</property> + <property name="value_pos">bottom</property> + <signal name="value-changed" handler="preview_frame_value_changed_cb" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkHBox" id="live_preview_box"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="spacing">5</property> + <child> + <object class="GtkButton" id="live_preview_play"> + <property name="height_request">30</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">True</property> + <property name="tooltip_text" translatable="yes">Encode and play a short sequence of video starting from the current preview position.</property> + <property name="relief">none</property> + <signal name="clicked" handler="live_preview_start_cb" swapped="no"/> + <child> + <object class="GtkImage" id="live_preview_play_image"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="stock">gtk-media-play</property> + </object> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkScale" id="live_preview_progress"> + <property name="can_focus">True</property> + <property name="adjustment">preview_progress_adj</property> + <property name="draw_value">False</property> + <property name="value_pos">right</property> + <signal name="value-changed" handler="live_preview_seek_cb" swapped="no"/> + </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + <child> + <object class="GtkVBox" id="live_progress_box"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <child> + <object class="GtkProgressBar" id="live_encode_progress"> + <property name="height_request">20</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">2</property> + </packing> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + <child> + <object class="GtkHBox" id="hbox26"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="spacing">10</property> + <child> + <object class="GtkHBox" id="live_preview_duration_box"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="spacing">2</property> + <child> + <object class="GtkLabel" id="label37"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes"><b>Duration:</b></property> + <property name="use_markup">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="live_duration"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="tooltip_text" translatable="yes">Set the duration of the live preview in seconds.</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <property name="adjustment">adjustment21</property> + <property name="numeric">True</property> + <signal name="value-changed" handler="preview_duration_changed_cb" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="preview_show_crop"> + <property name="label" translatable="yes">Show Crop</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">False</property> + <property name="tooltip_text" translatable="yes">Show Cropped area of the preview</property> + <property name="xalign">0.5</property> + <property name="draw_indicator">False</property> + <signal name="toggled" handler="show_crop_changed_cb" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + <child> + <object class="GtkToggleButton" id="preview_fullscreen"> + <property name="label" translatable="yes">Fullscreen</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">False</property> + <property name="tooltip_text" translatable="yes">View Fullscreen Preview</property> + <property name="relief">none</property> + <signal name="toggled" handler="fullscreen_clicked_cb" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">2</property> + </packing> + </child> + <child> + <object class="GtkToggleButton" id="hide_settings"> + <property name="label" translatable="yes">Hide Settings</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">False</property> + <property name="tooltip_text" translatable="yes">Hide the picture settings window while leaving the preview visible.</property> + <property name="relief">none</property> + <signal name="clicked" handler="picture_settings_alt2_clicked_cb" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">3</property> + </packing> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">2</property> + </packing> + </child> </object> </child> </object> - <packing> - <property name="position">2</property> - </packing> - </child> - <child> - <placeholder/> </child> </object> </child> </object> + <object class="GtkWindow" id="preview_window"> + <property name="can_focus">False</property> + <property name="events">GDK_POINTER_MOTION_MASK | GDK_STRUCTURE_MASK</property> + <property name="title" translatable="yes">Preview</property> + <property name="resizable">False</property> + <property name="window_position">center</property> + <property name="type_hint">utility</property> + <property name="skip_taskbar_hint">True</property> + <property name="skip_pager_hint">True</property> + <property name="transient_for">hb_window</property> + <signal name="configure-event" handler="preview_configure_cb" swapped="no"/> + <signal name="delete-event" handler="preview_window_delete_cb" swapped="no"/> + <child> + <object class="GtkAlignment" id="preview_window_alignment"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="xscale">0</property> + <property name="yscale">0</property> + </object> + </child> + </object> <object class="GtkWindow" id="queue_window"> - <property name="visible">False</property> + <property name="can_focus">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="title" translatable="yes">HandBrake Queue</property> - <property name="icon_name">hb-queue</property> - <property name="type_hint">GDK_WINDOW_TYPE_HINT_UTILITY</property> <property name="default_width">800</property> <property name="default_height">600</property> + <property name="icon_name">hb-queue</property> + <property name="type_hint">utility</property> <property name="skip_taskbar_hint">True</property> <property name="skip_pager_hint">True</property> - <property name="transient-for">hb_window</property> - <signal handler="queue_window_delete_cb" name="delete_event"/> + <property name="transient_for">hb_window</property> + <signal name="delete-event" handler="queue_window_delete_cb" swapped="no"/> <child> <object class="GtkVBox" id="vbox34"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</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="queue_toolbar"> <property name="visible">True</property> + <property name="can_focus">False</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="GtkToolButton" id="queue_start2"> <property name="visible">True</property> <property name="sensitive">False</property> + <property name="can_focus">False</property> <property name="is_important">True</property> <property name="label" translatable="yes">Start</property> <property name="icon_name">hb-start</property> - <signal handler="queue_start_clicked_cb" name="clicked"/> + <signal name="clicked" handler="queue_start_clicked_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton" id="queue_pause2"> <property name="visible">True</property> - <property name="is_important">True</property> <property name="sensitive">False</property> + <property name="can_focus">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="is_important">True</property> <property name="label" translatable="yes">Pause</property> <property name="icon_name">hb-pause</property> - <signal handler="queue_pause_clicked_cb" name="clicked"/> + <signal name="clicked" handler="queue_pause_clicked_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="homogeneous">True</property> </packing> </child> <child> <object class="GtkToolButton" id="queue_edit"> <property name="visible">True</property> - <property name="is_important">True</property> <property name="sensitive">False</property> + <property name="can_focus">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="is_important">True</property> <property name="label" translatable="yes">Edit</property> <property name="icon_name">hb-edit</property> - <signal handler="queue_edit_clicked_cb" name="clicked"/> + <signal name="clicked" handler="queue_edit_clicked_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="homogeneous">True</property> </packing> </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkVBox" id="vbox38"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</property> <child> <object class="GtkLabel" id="current_encode"> <property name="visible">True</property> + <property name="can_focus">False</property> </object> <packing> - <property name="position">0</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkHBox" id="hbox28"> <property name="visible">True</property> + <property name="can_focus">False</property> <child> <object class="GtkLabel" id="queue_status"> - <property name="justify">GTK_JUSTIFY_LEFT</property> <property name="visible">True</property> + <property name="can_focus">False</property> </object> <packing> - <property name="padding">10</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="padding">10</property> + <property name="position">0</property> </packing> </child> <child> @@ -6667,14 +7665,16 @@ on the Video tab instead.</property> </child> </object> <packing> - <property name="position">1</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> </packing> </child> </object> <packing> - <property name="position">1</property> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> </packing> </child> <child> @@ -6682,8 +7682,6 @@ on the Video tab instead.</property> <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="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property> - <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property> <child> <object class="GtkTreeView" id="queue_list"> <property name="width_request">900</property> @@ -6693,14 +7691,17 @@ on the Video tab instead.</property> <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> <property name="headers_visible">False</property> <property name="headers_clickable">False</property> - <property name="hover_expand">False</property> - <signal handler="queue_key_press_cb" name="key-press-event"/> + <signal name="key-press-event" handler="queue_key_press_cb" swapped="no"/> + <child internal-child="selection"> + <object class="GtkTreeSelection" id="treeview-selection5"/> + </child> </object> </child> </object> <packing> - <property name="position">2</property> <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">2</property> </packing> </child> <child> @@ -6710,32 +7711,34 @@ on the Video tab instead.</property> </child> </object> <object class="GtkWindow" id="settings_window"> - <property name="visible">False</property> + <property name="can_focus">False</property> <property name="title" translatable="yes">Picture Settings</property> - <property name="window_position">GTK_WIN_POS_NONE</property> - <property name="type_hint">GDK_WINDOW_TYPE_HINT_UTILITY</property> + <property name="resizable">False</property> + <property name="type_hint">utility</property> <property name="skip_taskbar_hint">True</property> <property name="skip_pager_hint">True</property> - <property name="resizable">False</property> - <property name="transient-for">preview_window</property> - <property name="events">GDK_STRUCTURE_MASK</property> - <signal handler="settings_configure_cb" name="configure-event"/> - <signal handler="settings_window_delete_cb" name="delete_event"/> + <property name="transient_for">preview_window</property> + <signal name="configure-event" handler="settings_configure_cb" swapped="no"/> + <signal name="delete-event" handler="settings_window_delete_cb" swapped="no"/> <child> <object class="GtkVBox" id="vbox40"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="spacing">5</property> <child> <object class="GtkCheckButton" id="show_preview"> + <property name="label" translatable="yes">Show Preview</property> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="tooltip-text" translatable="yes">Open Preview Window</property> - <property name="label" translatable="yes">Show Preview</property> - <signal name="toggled" handler="preview_button_clicked_cb"/> + <property name="receives_default">False</property> + <property name="tooltip_text" translatable="yes">Open Preview Window</property> + <property name="xalign">0.5</property> + <property name="draw_indicator">False</property> + <signal name="toggled" handler="preview_button_clicked_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> @@ -6743,378 +7746,612 @@ on the Video tab instead.</property> <object class="GtkNotebook" id="notebook1"> <property name="visible">True</property> <property name="can_focus">True</property> - - <child> - <object class="GtkAlignment" id="alignment54"> - <property name="visible">True</property> - <property name="top_padding">6</property> - <property name="bottom_padding">6</property> <child> - <object class="GtkHBox" id="hbox75"> + <object class="GtkAlignment" id="alignment54"> <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="top_padding">6</property> + <property name="bottom_padding">6</property> <child> - <object class="GtkFrame" id="Cropping2"> + <object class="GtkHBox" id="hbox75"> <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="alignment46"> - <property name="visible">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - <property name="top_padding">6</property> - <property name="bottom_padding">2</property> - <property name="left_padding">12</property> - <property name="right_padding">2</property> - + <property name="can_focus">False</property> <child> - <object class="GtkVBox" id="vbox6"> - <property name="orientation">vertical</property> + <object class="GtkFrame" id="Cropping2"> <property name="visible">True</property> + <property name="can_focus">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="label_xalign">0</property> + <property name="shadow_type">none</property> <child> - <object class="GtkTable" id="table2"> + <object class="GtkAlignment" id="alignment46"> <property name="visible">True</property> + <property name="can_focus">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="n_rows">5</property> - <property name="n_columns">6</property> - <child> - <object class="GtkSpinButton" id="PictureLeftCrop"> - <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">Left Crop</property> - <property name="adjustment">adjustment13</property> - <signal name="value_changed" handler="crop_changed_cb"/> - </object> - <packing> - <property name="left_attach">0</property> - <property name="right_attach">1</property> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> - <property name="x_options"></property> - </packing> - </child> - <child> - <object class="GtkSpinButton" id="PictureTopCrop"> - <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">Top Crop</property> - <property name="adjustment">adjustment14</property> - <signal name="value_changed" handler="crop_changed_cb"/> - </object> - <packing> - <property name="left_attach">1</property> - <property name="right_attach">2</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> - <property name="x_options"></property> - </packing> - </child> - <child> - <object class="GtkSpinButton" id="PictureBottomCrop"> - <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">Bottom Crop</property> - <property name="adjustment">adjustment15</property> - <signal name="value_changed" handler="crop_changed_cb"/> - </object> - <packing> - <property name="left_attach">1</property> - <property name="right_attach">2</property> - <property name="top_attach">2</property> - <property name="bottom_attach">3</property> - <property name="x_options"></property> - </packing> - </child> - <child> - <object class="GtkSpinButton" id="PictureRightCrop"> - <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">Right Crop</property> - <property name="adjustment">adjustment16</property> - <signal name="value_changed" handler="crop_changed_cb"/> - </object> - <packing> - <property name="left_attach">2</property> - <property name="right_attach">3</property> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> - <property name="x_options"></property> - </packing> - </child> + <property name="top_padding">6</property> + <property name="bottom_padding">2</property> + <property name="left_padding">12</property> + <property name="right_padding">2</property> <child> - <object class="GtkCheckButton" id="PictureAutoCrop"> - <property name="label" translatable="yes">Auto Crop</property> + <object class="GtkVBox" id="vbox6"> <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> + <property name="can_focus">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">Automatically crop black borders around edges of the video.</property> - <property name="draw_indicator">True</property> - <signal name="toggled" handler="scale_changed_cb"/> - </object> - <packing> - <property name="y_options"></property> - <property name="left_attach">0</property> - <property name="right_attach">2</property> - <property name="top_attach">3</property> - <property name="bottom_attach">4</property> - </packing> - </child> - <child> - <object class="GtkCheckButton" id="PictureLooseCrop"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="tooltip_text">When picture settings require that the image + <child> + <object class="GtkTable" id="table2"> + <property name="visible">True</property> + <property name="can_focus">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="n_rows">5</property> + <property name="n_columns">6</property> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <object class="GtkSpinButton" id="PictureLeftCrop"> + <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">Left Crop</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <property name="adjustment">adjustment13</property> + <signal name="value-changed" handler="crop_changed_cb" swapped="no"/> + </object> + <packing> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="x_options"/> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="PictureTopCrop"> + <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">Top Crop</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <property name="adjustment">adjustment14</property> + <signal name="value-changed" handler="crop_changed_cb" swapped="no"/> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="x_options"/> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="PictureBottomCrop"> + <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">Bottom Crop</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <property name="adjustment">adjustment15</property> + <signal name="value-changed" handler="crop_changed_cb" swapped="no"/> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> + <property name="x_options"/> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="PictureRightCrop"> + <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">Right Crop</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <property name="adjustment">adjustment16</property> + <signal name="value-changed" handler="crop_changed_cb" swapped="no"/> + </object> + <packing> + <property name="left_attach">2</property> + <property name="right_attach">3</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="x_options"/> + </packing> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <object class="GtkCheckButton" id="PictureAutoCrop"> + <property name="label" translatable="yes">Auto Crop</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">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">Automatically crop black borders around edges of the video.</property> + <property name="xalign">0.5</property> + <property name="draw_indicator">True</property> + <signal name="toggled" handler="scale_changed_cb" swapped="no"/> + </object> + <packing> + <property name="right_attach">2</property> + <property name="top_attach">3</property> + <property name="bottom_attach">4</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="PictureLooseCrop"> + <property name="label" translatable="yes">Loose Crop</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">False</property> + <property name="tooltip_text">When picture settings require that the image dimensions be rounded to some multiple number of pixels. This setting will crop a few extra pixels instead of doing exact cropping and then scaling to the required multiple.</property> - <property name="label" translatable="yes">Loose Crop</property> - <property name="draw_indicator">True</property> - <signal name="toggled" handler="scale_changed_cb"/> + <property name="xalign">0.5</property> + <property name="draw_indicator">True</property> + <signal name="toggled" handler="scale_changed_cb" swapped="no"/> + </object> + <packing> + <property name="right_attach">2</property> + <property name="top_attach">4</property> + <property name="bottom_attach">5</property> + <property name="y_options"/> + </packing> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkHBox" id="hbox78"> + <property name="visible">True</property> + <property name="can_focus">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="spacing">4</property> + <child> + <object class="GtkLabel" id="label97"> + <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> + <property name="label" translatable="yes">Crop Dimensions:</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="crop_dimensions2"> + <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">--</property> + </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> </object> - <packing> - <property name="y_options"></property> - <property name="left_attach">0</property> - <property name="right_attach">2</property> - <property name="top_attach">4</property> - <property name="bottom_attach">5</property> - </packing> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> </child> </object> - <packing> - <property name="expand">False</property> - <property name="position">0</property> - </packing> </child> - <child> - <object class="GtkHBox" id="hbox78"> + <child type="label"> + <object class="GtkLabel" id="label26"> <property name="visible">True</property> - <property name="spacing">4</property> + <property name="can_focus">False</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="label97"> - <property name="visible">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">Crop Dimensions:</property> - </object> - <packing> - <property name="expand">False</property> - </packing> - </child> - <child> - <object class="GtkLabel" id="crop_dimensions2"> - <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">--</property> - </object> - <packing> - <property name="position">1</property> - </packing> - </child> + <property name="label" translatable="yes"><b>Cropping</b></property> + <property name="use_markup">True</property> </object> - <packing> - <property name="position">1</property> - </packing> </child> </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="padding">2</property> + <property name="position">0</property> + </packing> </child> - - </object> - </child> - <child type="label"> - <object class="GtkLabel" id="label26"> - <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"><b>Cropping</b></property> - <property name="use_markup">True</property> - </object> - </child> - </object> - <packing> - <property name="expand">False</property> - <property name="padding">2</property> - <property name="position">0</property> - </packing> - </child> - <child> - <object class="GtkFrame" id="frame3"> - <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="alignment4"> + <object class="GtkFrame" id="frame3"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">6</property> - <property name="bottom_padding">2</property> - <property name="left_padding">12</property> - <property name="right_padding">2</property> + <property name="label_xalign">0</property> + <property name="shadow_type">none</property> <child> - <object class="GtkVBox" id="vbox30"> - <property name="orientation">vertical</property> + <object class="GtkAlignment" id="alignment4"> <property name="visible">True</property> + <property name="can_focus">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="spacing">2</property> + <property name="top_padding">6</property> + <property name="bottom_padding">2</property> + <property name="left_padding">12</property> + <property name="right_padding">2</property> <child> - <object class="GtkHBox" id="hbox51"> + <object class="GtkVBox" id="vbox30"> <property name="visible">True</property> + <property name="can_focus">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="spacing">4</property> + <property name="spacing">2</property> <child> - <object class="GtkLabel" id="label27"> + <object class="GtkHBox" id="hbox51"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">width:</property> + <property name="spacing">4</property> + <child> + <object class="GtkLabel" id="label27"> + <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">width:</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="scale_width"> + <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">This is the width that the video will be stored at. The actual display dimensions will differ if the pixel aspect ratio is not 1:1.</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <property name="adjustment">adjustment17</property> + <property name="snap_to_ticks">True</property> + <signal name="value-changed" handler="scale_width_changed_cb" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="label28"> + <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">height:</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">2</property> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="scale_height"> + <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">This is the height that the video will be stored at. The actual display dimensions will differ if the pixel aspect ratio is not 1:1.</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <property name="adjustment">adjustment18</property> + <signal name="value-changed" handler="scale_height_changed_cb" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">3</property> + </packing> + </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> - <object class="GtkSpinButton" id="scale_width"> + <object class="GtkHBox" id="hbox71"> <property name="visible">True</property> - <property name="can_focus">True</property> + <property name="can_focus">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">This is the width that the video will be stored at. The actual display dimensions will differ if the pixel aspect ratio is not 1:1.</property> - <property name="adjustment">adjustment17</property> - <property name="snap_to_ticks">True</property> - <signal name="value_changed" handler="scale_width_changed_cb"/> + <child> + <object class="GtkCheckButton" id="autoscale"> + <property name="label" translatable="yes">Optimal for source</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">False</property> + <property name="tooltip_text" translatable="yes">If enabled, select the 'optimal' storage resolution. This will be the resolution that most closely matches the source resolution after cropping.</property> + <property name="xalign">0.5</property> + <property name="draw_indicator">True</property> + <signal name="toggled" handler="scale_changed_cb" swapped="no"/> + </object> + <packing> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> - <object class="GtkLabel" id="label28"> + <object class="GtkHBox" id="hbox20"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">height:</property> - </object> - <packing> - <property name="expand">False</property> - <property name="position">2</property> - </packing> - </child> - <child> - <object class="GtkSpinButton" id="scale_height"> - <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">This is the height that the video will be stored at. The actual display dimensions will differ if the pixel aspect ratio is not 1:1.</property> - <property name="adjustment">adjustment18</property> - <signal name="value_changed" handler="scale_height_changed_cb"/> - </object> - <packing> - <property name="expand">False</property> - <property name="position">3</property> - </packing> - </child> - </object> - <packing> - <property name="expand">False</property> - <property name="position">0</property> - </packing> - </child> - <child> - <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> - <object class="GtkCheckButton" id="autoscale"> - <property name="label" translatable="yes">Optimal for source</property> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> - <property name="tooltip-text" translatable="yes">If enabled, select the 'optimal' storage resolution. This will be the resolution that most closely matches the source resolution after cropping.</property> - <property name="draw_indicator">True</property> - <signal name="toggled" handler="scale_changed_cb"/> - </object> - <packing> - <property name="position">0</property> - </packing> - </child> - </object> - <packing> - <property name="expand">False</property> - <property name="position">1</property> - </packing> - </child> - <child> - <object class="GtkHBox" id="hbox20"> - <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="GtkLabel" id="label96"> - <property name="visible">True</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">Anamorphic:</property> - </object> - <packing> - <property name="expand">False</property> - <property name="position">0</property> - </packing> - </child> - <child> - <object class="GtkComboBox" id="PicturePAR"> - <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-markup" translatable="yes"><b>Anamorphic Modes:</b> + <property name="spacing">5</property> + <child> + <object class="GtkLabel" id="label96"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="xalign">0</property> + <property name="label" translatable="yes">Anamorphic:</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkComboBox" id="PicturePAR"> + <property name="visible">True</property> + <property name="can_focus">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_markup"><b>Anamorphic Modes:</b> <small><tt> None - Force pixel aspect ratio to 1:1. Loose - Align dimensions to chosen 'Alignment' value @@ -7122,365 +8359,418 @@ Loose - Align dimensions to chosen 'Alignment' value original display aspect ratio Strict - Keep original source dimensions and pixel aspect ratio</tt></small></property> - <signal name="changed" handler="scale_changed_cb"/> - </object> - <packing> - <property name="expand">False</property> - <property name="position">1</property> - </packing> - </child> - </object> - <packing> - <property name="expand">False</property> - <property name="position">2</property> - </packing> - </child> - <child> - <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> - <property name="spacing">5</property> - <child> - <object class="GtkLabel" id="label95"> - <property name="visible">True</property> - <property name="xalign">0</property> - <property name="label" translatable="yes">Alignment:</property> + <signal name="changed" handler="scale_changed_cb" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> </object> <packing> <property name="expand">False</property> - <property name="position">0</property> + <property name="fill">True</property> + <property name="position">2</property> </packing> </child> <child> - <object class="GtkComboBox" id="PictureModulus"> + <object class="GtkHBox" id="hbox72"> <property name="visible">True</property> + <property name="can_focus">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">Align storage dimensions to multiples of this value. + <property name="spacing">5</property> + <child> + <object class="GtkLabel" id="label95"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="xalign">0</property> + <property name="label" translatable="yes">Alignment:</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkComboBox" id="PictureModulus"> + <property name="visible">True</property> + <property name="can_focus">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">Align storage dimensions to multiples of this value. Encoders are most effecient when the video dimensions are aligned to some specific value (usually 16). Setting this to some other value will result in slightly larger file size.</property> - <signal name="changed" handler="scale_changed_cb"/> + <signal name="changed" handler="scale_changed_cb" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> </object> <packing> <property name="expand">False</property> - <property name="position">1</property> + <property name="fill">True</property> + <property name="position">3</property> </packing> </child> </object> - <packing> - <property name="expand">False</property> - <property name="position">3</property> - </packing> </child> </object> </child> + <child type="label"> + <object class="GtkLabel" id="label25"> + <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes"><b>Storage</b></property> + <property name="use_markup">True</property> + </object> + </child> </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="padding">2</property> + <property name="position">1</property> + </packing> </child> - <child type="label"> - <object class="GtkLabel" id="label25"> - <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"><b>Storage</b></property> - <property name="use_markup">True</property> - </object> - </child> - </object> - <packing> - <property name="expand">False</property> - <property name="padding">2</property> - <property name="position">1</property> - </packing> - </child> - <child> - <object class="GtkFrame" id="frame4"> - <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="alignment7"> + <object class="GtkFrame" id="frame4"> <property name="visible">True</property> + <property name="can_focus">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="top_padding">6</property> - <property name="bottom_padding">2</property> - <property name="left_padding">12</property> - <property name="right_padding">2</property> + <property name="label_xalign">0</property> + <property name="shadow_type">none</property> <child> - <object class="GtkVBox" id="vbox10"> - <property name="orientation">vertical</property> + <object class="GtkAlignment" id="alignment7"> <property name="visible">True</property> + <property name="can_focus">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="spacing">2</property> + <property name="top_padding">6</property> + <property name="bottom_padding">2</property> + <property name="left_padding">12</property> + <property name="right_padding">2</property> <child> - <object class="GtkHBox" id="hbox52"> + <object class="GtkVBox" id="vbox10"> <property name="visible">True</property> + <property name="can_focus">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="spacing">4</property> + <property name="spacing">2</property> <child> - <object class="GtkLabel" id="label91"> + <object class="GtkHBox" id="hbox52"> <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">width:</property> + <property name="spacing">4</property> + <child> + <object class="GtkLabel" id="label91"> + <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">width:</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="PictureDisplayWidth"> + <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">This is the display width. It is the result of scaling the storage dimensions by the pixel aspect.</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <property name="adjustment">adjustment25</property> + <property name="snap_to_ticks">True</property> + <signal name="value-changed" handler="display_width_changed_cb" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="label92"> + <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">height:</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">2</property> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="PictureDisplayHeight"> + <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="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <property name="adjustment">adjustment26</property> + <signal name="value-changed" handler="display_height_changed_cb" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">3</property> + </packing> + </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> - <object class="GtkSpinButton" id="PictureDisplayWidth"> + <object class="GtkHBox" id="hbox79"> <property name="visible">True</property> - <property name="can_focus">True</property> + <property name="can_focus">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">This is the display width. It is the result of scaling the storage dimensions by the pixel aspect.</property> - <property name="adjustment">adjustment25</property> - <property name="snap_to_ticks">True</property> - <signal name="value_changed" handler="display_width_changed_cb"/> + <property name="spacing">4</property> + <child> + <object class="GtkLabel" id="label98"> + <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">Pixel Aspect:</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="PicturePARWidth"> + <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">Pixel aspect defines the shape of the pixels. A 1:1 ratio defines a square pixel. Other values define rectangular shapes. Players will scale the image in order to achieve the specified aspect.</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <property name="adjustment">adjustment29</property> + <property name="snap_to_ticks">True</property> + <signal name="value-changed" handler="par_changed_cb" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="label99"> + <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">:</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">2</property> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="PicturePARHeight"> + <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">Pixel aspect defines the shape of the pixels. A 1:1 ratio defines a square pixel. Other values define rectangular shapes. Players will scale the image in order to achieve the specified aspect.</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <property name="adjustment">adjustment30</property> + <signal name="value-changed" handler="par_changed_cb" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">3</property> + </packing> + </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> - <object class="GtkLabel" id="label92"> - <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">height:</property> - </object> - <packing> - <property name="expand">False</property> - <property name="position">2</property> - </packing> - </child> - <child> - <object class="GtkSpinButton" id="PictureDisplayHeight"> + <object class="GtkCheckButton" id="PictureKeepRatio"> + <property name="label" translatable="yes">Keep Aspect</property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="receives_default">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="adjustment">adjustment26</property> - <signal name="value_changed" handler="display_height_changed_cb"/> - </object> - <packing> - <property name="expand">False</property> - <property name="position">3</property> - </packing> - </child> - </object> - <packing> - <property name="expand">False</property> - <property name="position">0</property> - </packing> - </child> - <child> - <object class="GtkHBox" id="hbox79"> - <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> - <child> - <object class="GtkLabel" id="label98"> - <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">Pixel Aspect:</property> - </object> - <packing> - <property name="expand">False</property> - <property name="position">0</property> - </packing> - </child> - <child> - <object class="GtkSpinButton" id="PicturePARWidth"> - <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">Pixel aspect defines the shape of the pixels. A 1:1 ratio defines a square pixel. Other values define rectangular shapes. Players will scale the image in order to achieve the specified aspect.</property> - <property name="adjustment">adjustment29</property> - <property name="snap_to_ticks">True</property> - <signal name="value_changed" handler="par_changed_cb"/> - </object> - <packing> - <property name="expand">False</property> - <property name="position">1</property> - </packing> - </child> - <child> - <object class="GtkLabel" id="label99"> - <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">:</property> + <property name="tooltip_text" translatable="yes">If enabled, the original display aspect of the source will be maintained.</property> + <property name="xalign">0.5</property> + <property name="active">True</property> + <property name="draw_indicator">True</property> + <signal name="toggled" handler="scale_changed_cb" swapped="no"/> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">2</property> </packing> </child> <child> - <object class="GtkSpinButton" id="PicturePARHeight"> + <object class="GtkHBox" id="hbox53"> <property name="visible">True</property> - <property name="can_focus">True</property> + <property name="can_focus">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">Pixel aspect defines the shape of the pixels. A 1:1 ratio defines a square pixel. Other values define rectangular shapes. Players will scale the image in order to achieve the specified aspect.</property> - <property name="adjustment">adjustment30</property> - <signal name="value_changed" handler="par_changed_cb"/> + <property name="spacing">4</property> + <child> + <object class="GtkLabel" id="label93"> + <property name="width_request">100</property> + <property name="visible">True</property> + <property name="can_focus">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="xalign">0</property> + <property name="label" translatable="yes">Display Aspect:</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="display_aspect"> + <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">--:--</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">3</property> </packing> </child> </object> - <packing> - <property name="expand">False</property> - <property name="position">1</property> - </packing> - </child> - <child> - <object class="GtkCheckButton" id="PictureKeepRatio"> - <property name="label" translatable="yes">Keep Aspect</property> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">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">If enabled, the original display aspect of the source will be maintained.</property> - <property name="active">True</property> - <property name="draw_indicator">True</property> - <signal name="toggled" handler="scale_changed_cb"/> - </object> - <packing> - <property name="expand">False</property> - <property name="position">2</property> - </packing> - </child> - <child> - <object class="GtkHBox" id="hbox53"> - <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> - <child> - <object class="GtkLabel" id="label93"> - <property name="width_request">100</property> - <property name="xalign">0</property> - <property name="visible">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - <property name="label" translatable="yes">Display Aspect:</property> - </object> - <packing> - <property name="expand">False</property> - <property name="position">0</property> - </packing> - </child> - <child> - <object class="GtkLabel" id="display_aspect"> - <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">--:--</property> - </object> - <packing> - <property name="expand">False</property> - <property name="position">1</property> - </packing> - </child> - </object> - <packing> - <property name="expand">False</property> - <property name="position">3</property> - </packing> </child> </object> </child> + <child type="label"> + <object class="GtkLabel" id="label29"> + <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes"><b>Display</b></property> + <property name="use_markup">True</property> + </object> + </child> </object> - </child> - <child type="label"> - <object class="GtkLabel" id="label29"> - <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"><b>Display</b></property> - <property name="use_markup">True</property> - </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="padding">2</property> + <property name="position">2</property> + </packing> </child> </object> - <packing> - <property name="expand">False</property> - <property name="padding">2</property> - <property name="position">2</property> - </packing> </child> </object> </child> - </object> - </child> <child type="tab"> <object class="GtkLabel" id="label79"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">Dimensions</property> </object> <packing> <property name="tab_fill">False</property> </packing> </child> - - <child> - <object class="GtkAlignment" id="alignment43"> - <property name="visible">True</property> - <property name="top_padding">6</property> - <property name="bottom_padding">6</property> - <property name="left_padding">6</property> - <property name="right_padding">6</property> <child> - <object class="GtkHBox" id="hbox77"> + <object class="GtkAlignment" id="alignment43"> <property name="visible">True</property> - <property name="spacing">16</property> + <property name="can_focus">False</property> + <property name="top_padding">6</property> + <property name="bottom_padding">6</property> + <property name="left_padding">6</property> + <property name="right_padding">6</property> + <child> + <object class="GtkHBox" id="hbox77"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="spacing">16</property> + <child> + <object class="GtkVBox" id="vbox8"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> <child> - <object class="GtkVBox" id="vbox8"> - <property name="orientation">vertical</property> + <object class="GtkCheckButton" id="VideoGrayScale"> + <property name="label" translatable="yes">Grayscale</property> <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">False</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="GtkCheckButton" id="VideoGrayScale"> - <property name="label" translatable="yes">Grayscale</property> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">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">If enabled, filter colour components out of video.</property> - <property name="draw_indicator">True</property> - <signal name="toggled" handler="setting_widget_changed_cb"/> - </object> - <packing> - <property name="expand">False</property> - <property name="position">0</property> - </packing> - </child> - <child> - <object class="GtkAlignment" id="alignment27"> - <property name="visible">True</property> - <property name="xalign">0</property> - <property name="xscale">0</property> - + <property name="tooltip_text" translatable="yes">If enabled, filter colour components out of video.</property> + <property name="xalign">0.5</property> + <property name="draw_indicator">True</property> + <signal name="toggled" handler="setting_widget_changed_cb" swapped="no"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkAlignment" id="alignment27"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="xalign">0</property> + <property name="xscale">0</property> <child> <object class="GtkTable" id="table90"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="n_rows">3</property> <property name="n_columns">2</property> <property name="column_spacing">5</property> - + <child> + <placeholder/> + </child> <child> <object class="GtkLabel" id="label41"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="label" translatable="yes">Deblock:</property> </object> </child> <child> <object class="GtkScale" id="PictureDeblock"> - <property name="orientation">horizontal</property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="tooltip_text" translatable="yes">The deblocking filter removes a common type of compression artifact. If your source exhibits 'blockiness', this filter may help clean it up.</property> <property name="adjustment">adjustment20</property> <property name="digits">0</property> <property name="value_pos">right</property> - <property name="tooltip-text" translatable="yes">The deblocking filter removes a common type of compression artifact. If your source exhibits 'blockiness', this filter may help clean it up.</property> - <signal name="value_changed" handler="setting_widget_changed_cb"/> - <signal name="format_value" handler="format_deblock_cb"/> + <signal name="format-value" handler="format_deblock_cb" swapped="no"/> + <signal name="value-changed" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> <property name="left_attach">1</property> @@ -7490,6 +8780,7 @@ Encoders are most effecient when the video dimensions are aligned to some specif <child> <object class="GtkLabel" id="label32"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="label" translatable="yes">Denoise:</property> </object> @@ -7502,73 +8793,85 @@ Encoders are most effecient when the video dimensions are aligned to some specif <object class="GtkComboBox" id="PictureDenoise"> <property name="width_request">100</property> <property name="visible">True</property> + <property name="can_focus">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">The denoise filter is a low pass filter that removes noise. Film grain and other types of high frequency noise are difficult to compress. Using this filter on such sources can result in smaller file sizes.</property> - <signal name="changed" handler="setting_widget_changed_cb"/> + <property name="tooltip_text" translatable="yes">The denoise filter is a low pass filter that removes noise. Film grain and other types of high frequency noise are difficult to compress. Using this filter on such sources can result in smaller file sizes.</property> + <signal name="changed" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> <property name="left_attach">1</property> <property name="right_attach">2</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> </packing> </child> <child> - <placeholder/> - </child> - <child> <object class="GtkEntry" id="PictureDenoiseCustom"> - <property name="width_chars">8</property> - <property name="tooltip-text" translatable="yes">Custom denoise filter string format + <property name="can_focus">False</property> + <property name="tooltip_text" translatable="yes">Custom denoise filter string format SpatialLuma:SpatialChroma:TemporalLuma:TemporalChroma</property> - <signal name="changed" handler="setting_widget_changed_cb"/> + <property name="width_chars">8</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <signal name="changed" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">2</property> - <property name="bottom_attach">3</property> <property name="left_attach">1</property> <property name="right_attach">2</property> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> </packing> </child> </object> </child> - - </object> - <packing> - <property name="expand">False</property> - <property name="position">1</property> - </packing> - </child> </object> <packing> <property name="expand">False</property> - <property name="padding">2</property> - <property name="position">0</property> + <property name="fill">True</property> + <property name="position">1</property> </packing> </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="padding">2</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkVBox" id="vbox39"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> <child> - <object class="GtkVBox" id="vbox39"> - <property name="orientation">vertical</property> + <object class="GtkAlignment" id="alignment45"> <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="GtkAlignment" id="alignment45"> - <property name="visible">True</property> - <property name="xalign">0</property> - <property name="yalign">0</property> - <property name="xscale">0</property> - <property name="yscale">0</property> - + <property name="can_focus">False</property> + <property name="xalign">0</property> + <property name="yalign">0</property> + <property name="xscale">0</property> + <property name="yscale">0</property> <child> <object class="GtkTable" id="table10"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="n_rows">7</property> <property name="n_columns">2</property> <property name="column_spacing">5</property> - + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> <child> <object class="GtkLabel" id="label86"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="label" translatable="yes">Detelecine:</property> </object> @@ -7577,49 +8880,48 @@ Encoders are most effecient when the video dimensions are aligned to some specif <object class="GtkComboBox" id="PictureDetelecine"> <property name="width_request">100</property> <property name="visible">True</property> + <property name="can_focus">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">This filter removes 'combing' artifacts that are the result of telecining. Telecining is a process that adjusts film framerates that are 24fps to NTSC video frame rates which are 30fps.</property> - <signal name="changed" handler="setting_widget_changed_cb"/> + <property name="tooltip_text" translatable="yes">This filter removes 'combing' artifacts that are the result of telecining. Telecining is a process that adjusts film framerates that are 24fps to NTSC video frame rates which are 30fps.</property> + <signal name="changed" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> <property name="left_attach">1</property> <property name="right_attach">2</property> </packing> </child> <child> - <placeholder/> - </child> - <child> <object class="GtkEntry" id="PictureDetelecineCustom"> - <property name="width_chars">8</property> - <property name="tooltip-text" translatable="yes">Custom detelecine filter string format + <property name="can_focus">False</property> + <property name="tooltip_text" translatable="yes">Custom detelecine filter string format JunkLeft:JunkRight:JunkTop:JunkBottom:StrictBreaks:MetricPlane:Parity</property> - <signal name="changed" handler="setting_widget_changed_cb"/> + <property name="width_chars">8</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <signal name="changed" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> <property name="left_attach">1</property> <property name="right_attach">2</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> </packing> </child> - <child> <object class="GtkRadioButton" id="PictureDecombDeinterlace"> <property name="label" translatable="yes">Decomb</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> - <property name="tooltip-text" translatable="yes">Choose decomb or deinterlace filter options. + <property name="tooltip_text" translatable="yes">Choose decomb or deinterlace filter options. The decomb filter selectively deinterlaces frames that appear to be interlaced. This will preserve quality in frames that are not interlaced. The classic deinterlace filter is applied to all frames. Frames that are not interlaced will suffer some quality degradation.</property> + <property name="xalign">0.5</property> <property name="active">True</property> <property name="draw_indicator">True</property> - <signal name="toggled" handler="setting_widget_changed_cb"/> + <signal name="toggled" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> <property name="top_attach">2</property> @@ -7632,24 +8934,26 @@ The classic deinterlace filter is applied to all frames. Frames that are not int <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> - <property name="tooltip-text" translatable="yes">Choose decomb or deinterlace filter options. + <property name="tooltip_text" translatable="yes">Choose decomb or deinterlace filter options. The decomb filter selectively deinterlaces frames that appear to be interlaced. This will preserve quality in frames that are not interlaced. The classic deinterlace filter is applied to all frames. Frames that are not interlaced will suffer some quality degradation.</property> + <property name="xalign">0.5</property> <property name="draw_indicator">True</property> <property name="group">PictureDecombDeinterlace</property> </object> <packing> - <property name="top_attach">2</property> - <property name="bottom_attach">3</property> <property name="left_attach">1</property> <property name="right_attach">2</property> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> </packing> </child> <child> <object class="GtkLabel" id="PictureDecombLabel"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="label" translatable="yes">Decomb:</property> </object> @@ -7662,38 +8966,39 @@ The classic deinterlace filter is applied to all frames. Frames that are not int <object class="GtkComboBox" id="PictureDecomb"> <property name="width_request">100</property> <property name="visible">True</property> + <property name="can_focus">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">The decomb filter selectively deinterlaces frames that appear to be interlaced. This will preserve quality in frames that are not interlaced.</property> - <signal name="changed" handler="setting_widget_changed_cb"/> + <property name="tooltip_text" translatable="yes">The decomb filter selectively deinterlaces frames that appear to be interlaced. This will preserve quality in frames that are not interlaced.</property> + <signal name="changed" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">3</property> - <property name="bottom_attach">4</property> <property name="left_attach">1</property> <property name="right_attach">2</property> + <property name="top_attach">3</property> + <property name="bottom_attach">4</property> </packing> </child> <child> - <placeholder/> - </child> - <child> <object class="GtkEntry" id="PictureDecombCustom"> - <property name="width_chars">8</property> - <property name="tooltip-text" translatable="yes">Custom decomb filter string format + <property name="can_focus">False</property> + <property name="tooltip_text" translatable="yes">Custom decomb filter string format Mode:SpatialMetric:MotionThresh:SpatialThresh:BlockThresh:BlockWidth:BlockHeight:MagnitudeThres:VarianceThres:LaplacianThresh:DilationThresh:ErosionThresh:NoiseThresh:MaxSearchDistance:PostProcessing:Parity</property> - <signal name="changed" handler="setting_widget_changed_cb"/> + <property name="width_chars">8</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <signal name="changed" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">4</property> - <property name="bottom_attach">5</property> <property name="left_attach">1</property> <property name="right_attach">2</property> + <property name="top_attach">4</property> + <property name="bottom_attach">5</property> </packing> </child> - <child> <object class="GtkLabel" id="PictureDeinterlaceLabel"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="label" translatable="yes">Deinterlace:</property> </object> @@ -7706,58 +9011,63 @@ The classic deinterlace filter is applied to all frames. Frames that are not int <object class="GtkComboBox" id="PictureDeinterlace"> <property name="width_request">100</property> <property name="visible">True</property> + <property name="can_focus">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">The classic deinterlace filter is applied to all frames. Frames that are not interlaced will suffer some quality degradation.</property> - <signal name="changed" handler="setting_widget_changed_cb"/> + <property name="tooltip_text" translatable="yes">The classic deinterlace filter is applied to all frames. Frames that are not interlaced will suffer some quality degradation.</property> + <signal name="changed" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">5</property> - <property name="bottom_attach">6</property> <property name="left_attach">1</property> <property name="right_attach">2</property> + <property name="top_attach">5</property> + <property name="bottom_attach">6</property> </packing> </child> <child> - <placeholder/> - </child> - <child> <object class="GtkEntry" id="PictureDeinterlaceCustom"> - <property name="width_chars">8</property> - <property name="tooltip-text" translatable="yes">Custom deinterlace filter string format + <property name="can_focus">False</property> + <property name="tooltip_text" translatable="yes">Custom deinterlace filter string format YadifMode:YadifParity:McdintMode:McdeintQp</property> - <signal name="changed" handler="setting_widget_changed_cb"/> + <property name="width_chars">8</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <signal name="changed" handler="setting_widget_changed_cb" swapped="no"/> </object> <packing> - <property name="top_attach">6</property> - <property name="bottom_attach">7</property> <property name="left_attach">1</property> <property name="right_attach">2</property> + <property name="top_attach">6</property> + <property name="bottom_attach">7</property> </packing> </child> </object> </child> - - </object> - <packing> - <property name="expand">False</property> - <property name="position">1</property> - </packing> - </child> </object> <packing> <property name="expand">False</property> - <property name="padding">2</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="padding">2</property> + <property name="position">1</property> + </packing> + </child> + </object> + </child> </object> + <packing> + <property name="position">1</property> + </packing> </child> - </object> - </child> - <child type="tab"> <object class="GtkLabel" id="label81"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes">Filters</property> </object> <packing> @@ -7768,492 +9078,307 @@ The classic deinterlace filter is applied to all frames. Frames that are not int </object> <packing> <property name="expand">True</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> </child> </object> - - <object class="GtkAlignment" id="preview_image_align"> - <property name="visible">True</property> - <property name="xalign">.5</property> - <property name="yalign">.5</property> - <property name="xscale">0</property> - <property name="yscale">0</property> - <child> - <object class="GtkDrawingArea" id="preview_image"> - <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 | GDK_LEAVE_NOTIFY_MASK</property> - <property name="app_paintable">True</property> - <signal name="motion-notify-event" handler="preview_motion_cb"/> - <signal name="leave-notify-event" handler="preview_leave_cb"/> - </object> - </child> - </object> - - <object class="GtkAlignment" id="preview_hud"> - <property name="visible">False</property> - <property name="xalign">.5</property> - <property name="yalign">.9</property> - <property name="xscale">0</property> - <property name="yscale">0</property> - <child> - <object class="GtkEventBox" id="preview_event_box"> + <object class="GtkFileChooserDialog" id="source_dialog"> + <property name="can_focus">False</property> + <property name="border_width">5</property> + <property name="modal">True</property> + <property name="type_hint">dialog</property> + <property name="skip_taskbar_hint">True</property> + <property name="skip_pager_hint">True</property> + <property name="create_folders">False</property> + <property name="local_only">False</property> + <signal name="selection-changed" handler="chooser_file_selected_cb" swapped="no"/> + <child internal-child="vbox"> + <object class="GtkBox" id="dialog-vbox9"> <property name="visible">True</property> - <property name="app-paintable">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_ENTER_NOTIFY_MASK</property> - <signal name="enter-notify-event" handler="hud_enter_cb"/> - <signal handler="preview_hud_size_alloc_cb" name="size-allocate"/> + <property name="can_focus">False</property> + <property name="spacing">2</property> + <child internal-child="action_area"> + <object class="GtkButtonBox" id="dialog-action_area6"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="layout_style">end</property> + <child> + <object class="GtkButton" id="source_cancel"> + <property name="label">gtk-cancel</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="can_default">True</property> + <property name="has_default">True</property> + <property name="receives_default">True</property> + <property name="use_stock">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkButton" id="source_ok"> + <property name="label">gtk-ok</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="can_default">True</property> + <property name="has_default">True</property> + <property name="receives_default">True</property> + <property name="use_stock">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">1</property> + </packing> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="pack_type">end</property> + <property name="position">0</property> + </packing> + </child> <child> - <object class="GtkAlignment" id="alignment53"> + <object class="GtkVBox" id="source_extra"> <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> - <property name="top_padding">5</property> - <property name="bottom_padding">5</property> + <property name="can_focus">False</property> <child> - <object class="GtkVBox" id="vbox35"> - <property name="orientation">vertical</property> + <object class="GtkHBox" id="single_title_box"> <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="can_focus">False</property> + <property name="spacing">4</property> <child> - <object class="GtkScale" id="preview_frame"> - <property name="orientation">horizontal</property> + <object class="GtkLabel" id="label89"> <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="adjustment">adjustment19</property> - <property name="digits">0</property> - <property name="value_pos">bottom</property> - <property name="tooltip-text" translatable="yes">Select preview frames.</property> - <signal name="value_changed" handler="preview_frame_value_changed_cb"/> + <property name="can_focus">False</property> + <property name="label" translatable="yes">Title Number:</property> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> - <object class="GtkHBox" id="live_preview_box"> + <object class="GtkAlignment" id="alignment24"> <property name="visible">True</property> - <property name="spacing">5</property> + <property name="can_focus">False</property> + <property name="xalign">0</property> + <property name="xscale">0</property> <child> - <object class="GtkButton" id="live_preview_play"> - <property name="height_request">30</property> + <object class="GtkSpinButton" id="single_title"> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="receives_default">True</property> - <property name="relief">none</property> - <property name="tooltip-text" translatable="yes">Encode and play a short sequence of video starting from the current preview position.</property> - <signal name="clicked" handler="live_preview_start_cb"/> - <child> - <object class="GtkImage" id="live_preview_play_image"> - <property name="visible">True</property> - <property name="stock">gtk-media-play</property> - </object> - </child> - </object> - <packing> - <property name="expand">False</property> - <property name="position">0</property> - </packing> - </child> - <child> - <object class="GtkScale" id="live_preview_progress"> - <property name="orientation">horizontal</property> - <property name="can_focus">True</property> - <property name="adjustment">preview_progress_adj</property> - <property name="draw_value">False</property> - <property name="value_pos">right</property> - <signal name="value_changed" handler="live_preview_seek_cb"/> - </object> - <packing> - <property name="position">1</property> - </packing> - </child> - <child> - <object class="GtkVBox" id="live_progress_box"> - <property name="orientation">vertical</property> - <property name="visible">True</property> - <!-- - <child> - <object class="GtkLabel" id="label71"> - <property name="height_request">1</property> - <property name="visible">True</property> - </object> - <packing> - <property name="position">0</property> - </packing> - </child> ---> - <child> - <object class="GtkProgressBar" id="live_encode_progress"> - <property name="height_request">20</property> - <property name="visible">True</property> - <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> - </object> - <packing> - <property name="expand">False</property> - <property name="position">0</property> - </packing> - </child> - <!-- - <child> - <object class="GtkLabel" id="label72"> - <property name="height_request">1</property> - <property name="visible">True</property> - </object> - <packing> - <property name="position">2</property> - </packing> - </child> ---> + <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + <property name="adjustment">adjustment24</property> + <signal name="value-changed" handler="setting_widget_changed_cb" swapped="no"/> </object> - <packing> - <property name="position">2</property> - </packing> </child> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">1</property> + </packing> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkHBox" id="hbox74"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="spacing">4</property> + <child> + <object class="GtkLabel" id="label90"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes">Detected DVD devices:</property> + </object> + <packing> <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> - <object class="GtkHBox" id="hbox26"> + <object class="GtkAlignment" id="alignment42"> <property name="visible">True</property> - <property name="spacing">10</property> - <child> - <object class="GtkHBox" id="live_preview_duration_box"> - <property name="visible">True</property> - <property name="spacing">2</property> - <child> - <object class="GtkLabel" id="label37"> - <property name="visible">True</property> - <property name="label" translatable="yes"><b>Duration:</b></property> - <property name="use_markup">True</property> - </object> - <packing> - <property name="expand">False</property> - <property name="position">0</property> - </packing> - </child> - <child> - <object class="GtkSpinButton" id="live_duration"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="adjustment">adjustment21</property> - <property name="numeric">True</property> - <property name="tooltip-text" translatable="yes">Set the duration of the live preview in seconds.</property> - <signal name="value_changed" handler="preview_duration_changed_cb"/> - </object> - <packing> - <property name="expand">False</property> - <property name="position">1</property> - </packing> - </child> - </object> - <packing> - <property name="position">0</property> - </packing> - </child> - <child> - <object class="GtkCheckButton" id="preview_show_crop"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="tooltip-text" translatable="yes">Show Cropped area of the preview</property> - <property name="label" translatable="yes">Show Crop</property> - <signal name="toggled" handler="show_crop_changed_cb"/> - </object> - <packing> - <property name="expand">False</property> - <property name="position">1</property> - </packing> - </child> - <child> - <object class="GtkToggleButton" id="preview_fullscreen"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="tooltip-text" translatable="yes">View Fullscreen Preview</property> - <property name="label" translatable="yes">Fullscreen</property> - <property name="relief">none</property> - <signal handler="fullscreen_clicked_cb" name="toggled"/> - </object> - <packing> - <property name="expand">False</property> - <property name="position">2</property> - </packing> - </child> + <property name="can_focus">False</property> + <property name="xalign">0</property> + <property name="xscale">0</property> <child> - <object class="GtkToggleButton" id="hide_settings"> + <object class="GtkComboBoxText" id="source_device"> <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="tooltip-text" translatable="yes">Hide the picture settings window while leaving the preview visible.</property> - <property name="label" translatable="yes">Hide Settings</property> - <property name="relief">none</property> - <signal handler="picture_settings_alt2_clicked_cb" name="clicked"/> + <property name="can_focus">False</property> + <signal name="changed" handler="dvd_device_changed_cb" swapped="no"/> </object> - <packing> - <property name="expand">False</property> - <property name="position">3</property> - </packing> </child> </object> <packing> - <property name="expand">False</property> - <property name="position">2</property> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">1</property> </packing> </child> </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> </child> </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">2</property> + </packing> </child> </object> </child> + <action-widgets> + <action-widget response="-6">source_cancel</action-widget> + <action-widget response="-9">source_ok</action-widget> + </action-widgets> </object> - - <object class="GtkWindow" id="preview_window"> - <property name="visible">False</property> - <property name="title" translatable="yes">Preview</property> - <property name="window_position">GTK_WIN_POS_CENTER</property> - <property name="skip_taskbar_hint">True</property> - <property name="type_hint">GDK_WINDOW_TYPE_HINT_UTILITY</property> - <property name="skip_pager_hint">True</property> - <property name="resizable">False</property> - <property name="transient-for">hb_window</property> - <property name="events">GDK_STRUCTURE_MASK | GDK_POINTER_MOTION_MASK</property> - <signal handler="preview_configure_cb" name="configure-event"/> - <signal handler="preview_window_delete_cb" name="delete_event"/> - <child> - <object class="GtkAlignment" id="preview_window_alignment"> - <property name="visible">True</property> - <property name="xalign">.5</property> - <property name="yalign">.5</property> - <property name="xscale">0</property> - <property name="yscale">0</property> - </object> - </child> + <object class="GtkImage" id="srt_add_image"> + <property name="visible">True</property> + <property name="can_focus">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="stock">gtk-add</property> </object> - - <object class="GtkAboutDialog" id="hb_about"> + <object class="GtkImage" id="subtitle_add_image"> + <property name="visible">True</property> + <property name="can_focus">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="stock">gtk-add</property> + </object> + <object class="GtkDialog" id="tweak_dialog"> + <property name="can_focus">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">5</property> - <property name="title" translatable="yes">About HandBrake</property> - <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property> - <property name="skip_taskbar_hint">True</property> - <property name="skip_pager_hint">True</property> - <property name="program_name">HandBrake</property> - <property name="version">0.9.2</property> - <property name="copyright" translatable="yes">Copyright © 2008 - 2013 John Stebbins -Copyright © 2004 - 2013, HandBrake Devs</property> - <property name="comments" translatable="yes">HandBrake is a GPL-licensed, multiplatform, multithreaded video transcoder.</property> - <property name="website">http://handbrake.fr</property> - <property name="website_label" translatable="yes">http://handbrake.fr</property> - <property name="license" translatable="yes">HandBrake is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - -HandBrake is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - -You should have received a copy of the GNU General Public License along with Glade; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</property> - <property name="authors">ghb author: - John Stebbins - -HandBrake authors: - Eric Petit - Laurent Aimar - John Allen - Joe Crain - Damiano Galassi - Edward Groenendaal - Rodney Hester - Andrew Kimpton - Chris Lee - Chris Long - Brian Mario - Maurj - Mirkwood - Nyx - Philippe Rigaux - Jonathon Rubin - Scott - Chris Thoman - Mark Krenek - Van Jacobson - -liba52 authors: - Aaron Holtzman - Michel Lespinasse - Gildas Bazin - Billy Biggs - Eduard Hasenleithner - Håkan Hjort - Charles M. Hannum - Chris Hodges - Michael Holzt - Angelos Keromytis - David I. Lehn - Don Mahurin - Jim Miller - Takefumi Sayo - Shoji Tokunaga - -libavcodec authors: - Fabrice Bellard - Alex Beregszaszi - Brian Foley - Arpad Gereoffy - Philip Gladstone - Falk Hueffner - Zdenek Kabelac - Nick Kurshev - Michael Niedermayer - François Revol - Dieter Shirley - Juan J. Sierralta - Lionel Ulmer - -libdts authors: - Gildas Bazin - Sam Hocevar - -libdvdcss authors: - Billy Biggs - Stéphane Borel - Håkan Hjort - Samuel Hocevar - Eugenio Jarosiewicz - Jon Lech Johansen - Markus Kuespert - Pascal Levesque - Steven M. Schultz - David Siebörger - Alex Strelnikov - German Tischler - Gildas Bazin - -libdvdread authors: - Björn Englund - Håkan Hjort - Billy Biggs - Christian Wolff - -libfaac authors: - M. Bakker - Tony Lenox - RageOMatic - thebard - Ivan Dimkovic - Krzysztof Nikiel - -libmp3lame authors: - Mike Cheng - Robert Hegemann - Frank Klemm - Alexander Leidinger - Naoki Shibata - Mark Taylor - Takehiro Tominiga - Iván Cavero Belaunde - Gabriel Bouvigne - Florian Bomers - CISC - John Dahlstrom - John Dee - Albert Faber - Peter Gubanov - Lars Magne Ingebrigtsen - Yosi Markovich - Zdenek Kabelac - Iwasa Kazmi - Guillaume Lessard - Steve Lhomme - Don Melton - Viral Shah - Acy Stapp - Roel VdB - -libmp4v2 authors: - Dave Mackie - Alix Marchandise-Franquet - Bill May - Massimo Villari - Waqar Mohsin - Richard Chen - Rob Arnold - Howdy Pierce - Steven Schultz - Sean Gilligan - Michael Rossberg - Luis F. Ramirez - Petter Reinholdtsen - -libmpeg2 authors: - Aaron Holtzman - Michel Lespinasse - Bruno Barreyra - Gildas Bazin - Alexander W. Chin - Stephen Crowley - Didier Gautheron - Ryan C. Gordon - Peter Gubanov - Håkan Hjort - Nicolas Joly - Gerd Knorr - David I. Lehn - Olie Lho - Rick Niles - Real Ouellet - Bajusz Peter - Franck Sicard - Brion Vibber - Martin Vogt - Fredrik Vraalsen - -libogg authors: - Christopher Montgomery - -libsamplerate authors: - Erik de Castro Lopo - -libvorbis authors: - Christopher Montgomery - -libx264 authors: - Laurent Aimar - -</property> - <property name="logo_icon_name">hb-icon</property> - <property name="wrap_license">True</property> - <signal handler="hb_about_response_cb" name="response"/> - <signal handler="gtk_widget_hide_on_delete" name="delete_event"/> + <property name="modal">True</property> + <property name="window_position">center-on-parent</property> + <property name="type_hint">dialog</property> + <signal name="delete-event" handler="gtk_widget_hide_on_delete" swapped="no"/> <child internal-child="vbox"> - <object class="GtkVBox" id="dialog-vbox4"> - <property name="orientation">vertical</property> + <object class="GtkBox" id="dialog-vbox7"> <property name="visible">True</property> + <property name="can_focus">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="spacing">2</property> - <child> - <placeholder/> - </child> <child internal-child="action_area"> - <object class="GtkHButtonBox" id="dialog-action_area4"> + <object class="GtkButtonBox" id="dialog-action_area7"> + <property name="visible">True</property> + <property name="can_focus">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="layout_style">end</property> + <child> + <object class="GtkButton" id="tweak_cancel"> + <property name="label">gtk-cancel</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">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="use_stock">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkButton" id="tweak_ok"> + <property name="label">gtk-ok</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="can_default">True</property> + <property name="has_default">True</property> + <property name="receives_default">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="use_stock">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">1</property> + </packing> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="pack_type">end</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkHBox" id="hbox9"> <property name="visible">True</property> - <property name="layout_style">GTK_BUTTONBOX_END</property> + <property name="can_focus">False</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="label33"> + <property name="visible">True</property> + <property name="can_focus">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="label" translatable="yes">Setting:</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkEntry" id="tweak_setting"> + <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="max_length">40</property> + <property name="activates_default">True</property> + <property name="width_chars">30</property> + <property name="truncate_multiline">True</property> + <property name="primary_icon_activatable">False</property> + <property name="secondary_icon_activatable">False</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> </object> <packing> <property name="expand">False</property> - <property name="pack_type">GTK_PACK_END</property> + <property name="fill">True</property> + <property name="position">1</property> </packing> </child> </object> </child> - </object> - <object class="GtkStatusIcon" id="hb_status"> - <property name="visible">False</property> - <property name="icon_name">hb-icon</property> - <signal handler="status_activate_cb" name="activate"/> + <action-widgets> + <action-widget response="0">tweak_cancel</action-widget> + <action-widget response="-5">tweak_ok</action-widget> + </action-widgets> </object> <object class="GtkDialog" id="update_dialog"> + <property name="can_focus">False</property> <property name="border_width">5</property> <property name="modal">True</property> <property name="window_position">center-on-parent</property> @@ -8261,34 +9386,77 @@ libx264 authors: <property name="skip_taskbar_hint">True</property> <property name="skip_pager_hint">True</property> <child internal-child="vbox"> - <object class="GtkVBox" id="dialog-vbox8"> - <property name="orientation">vertical</property> + <object class="GtkBox" id="dialog-vbox8"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="spacing">2</property> + <child internal-child="action_area"> + <object class="GtkButtonBox" id="dialog-action_area8"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="layout_style">end</property> + <child> + <object class="GtkButton" id="update_skip"> + <property name="label" translatable="yes">Skip This Version</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkButton" id="update_remind"> + <property name="label" translatable="yes">Remind Me Later</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">1</property> + </packing> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="pack_type">end</property> + <property name="position">0</property> + </packing> + </child> <child> <object class="GtkHBox" id="hbox24"> <property name="visible">True</property> + <property name="can_focus">False</property> <child> <object class="GtkVBox" id="vbox19"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</property> <child> <object class="GtkEventBox" id="eventbox2"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="events">GDK_BUTTON_MOTION_MASK | GDK_BUTTON_PRESS_MASK | GDK_STRUCTURE_MASK</property> <property name="visible_window">False</property> <property name="above_child">True</property> <child> <object class="GtkImage" id="image10"> <property name="visible">True</property> + <property name="can_focus">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="pixel_size">64</property> <property name="icon_name">hb-icon</property> - <property name="pixel-size">64</property> </object> </child> </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> @@ -8298,16 +9466,18 @@ libx264 authors: </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkVBox" id="vbox41"> - <property name="orientation">vertical</property> <property name="visible">True</property> + <property name="can_focus">False</property> <child> <object class="GtkLabel" id="label22"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="xpad">10</property> <property name="ypad">5</property> @@ -8316,12 +9486,14 @@ libx264 authors: </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="update_message"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="xalign">0</property> <property name="xpad">10</property> <property name="ypad">5</property> @@ -8329,24 +9501,25 @@ libx264 authors: </object> <packing> <property name="expand">False</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkFrame" id="frame15"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label_xalign">0</property> <property name="shadow_type">etched-out</property> <child> <object class="GtkAlignment" id="alignment28"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="left_padding">12</property> <child> <object class="GtkScrolledWindow" id="update_scroll"> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="hscrollbar_policy">automatic</property> - <property name="vscrollbar_policy">automatic</property> <child> <placeholder/> </child> @@ -8357,58 +9530,32 @@ libx264 authors: <child type="label"> <object class="GtkLabel" id="label88"> <property name="visible">True</property> + <property name="can_focus">False</property> <property name="label" translatable="yes"><b>Release Notes</b></property> <property name="use_markup">True</property> </object> </child> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">2</property> </packing> </child> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> + <property name="expand">True</property> + <property name="fill">True</property> <property name="position">1</property> </packing> </child> - <child internal-child="action_area"> - <object class="GtkHButtonBox" id="dialog-action_area8"> - <property name="visible">True</property> - <property name="layout_style">end</property> - <child> - <object class="GtkButton" id="update_skip"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">True</property> - <property name="label" translatable="yes">Skip This Version</property> - </object> - <packing> - <property name="position">0</property> - </packing> - </child> - <child> - <object class="GtkButton" id="update_remind"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">True</property> - <property name="label" translatable="yes">Remind Me Later</property> - </object> - <packing> - <property name="position">1</property> - </packing> - </child> - </object> - <packing> - <property name="expand">False</property> - <property name="pack_type">end</property> - <property name="position">0</property> - </packing> - </child> </object> </child> <action-widgets> @@ -8416,171 +9563,9 @@ libx264 authors: <action-widget response="0">update_remind</action-widget> </action-widgets> </object> - <object class="GtkFileChooserDialog" id="source_dialog"> - <property name="border_width">5</property> - <property name="local-only">False</property> - <property name="create-folders">False</property> - <property name="modal">True</property> - <property name="action">GTK_FILE_CHOOSER_ACTION_OPEN</property> - <property name="type_hint">dialog</property> - <property name="skip_taskbar_hint">True</property> - <property name="skip_pager_hint">True</property> - <signal handler="chooser_file_selected_cb" name="selection-changed"/> - <child internal-child="vbox"> - <object class="GtkVBox" id="dialog-vbox9"> - <property name="orientation">vertical</property> - <property name="visible">True</property> - <property name="spacing">2</property> - <child> - <object class="GtkVBox" id="source_extra"> - <property name="orientation">vertical</property> - <property name="visible">True</property> - <child> - <object class="GtkHBox" id="single_title_box"> - <property name="visible">True</property> - <property name="spacing">4</property> - <child> - <object class="GtkLabel" id="label89"> - <property name="visible">True</property> - <property name="label" translatable="yes">Title Number:</property> - </object> - <packing> - <property name="expand">False</property> - <property name="position">0</property> - </packing> - </child> - <child> - <object class="GtkAlignment" id="alignment24"> - <property name="visible">True</property> - <property name="xalign">0</property> - <property name="xscale">0</property> - <child> - <object class="GtkSpinButton" id="single_title"> - <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="adjustment">adjustment24</property> - <signal name="value_changed" handler="setting_widget_changed_cb"/> - </object> - </child> - </object> - <packing> - <property name="position">1</property> - </packing> - </child> - </object> - <packing> - <property name="expand">False</property> - <property name="position">0</property> - </packing> - </child> - <child> - <object class="GtkHBox" id="hbox74"> - <property name="visible">True</property> - <property name="spacing">4</property> - <child> - <object class="GtkLabel" id="label90"> - <property name="visible">True</property> - <property name="label" translatable="yes">Detected DVD devices:</property> - </object> - <packing> - <property name="expand">False</property> - <property name="position">0</property> - </packing> - </child> - <child> - <object class="GtkAlignment" id="alignment42"> - <property name="visible">True</property> - <property name="xalign">0</property> - <property name="xscale">0</property> - <child> - <object class="GtkComboBoxText" id="source_device"> - <property name="visible">True</property> - <property name="entry-text-column">0</property> - <signal handler="dvd_device_changed_cb" name="changed"/> - </object> - </child> - </object> - <packing> - <property name="position">1</property> - </packing> - </child> - </object> - <packing> - <property name="position">1</property> - <property name="expand">False</property> - </packing> - </child> - </object> - <packing> - <property name="expand">False</property> - <property name="position">2</property> - </packing> - </child> - <child internal-child="action_area"> - <object class="GtkHButtonBox" id="dialog-action_area6"> - <property name="visible">True</property> - <property name="layout_style">end</property> - <child> - <object class="GtkButton" id="source_cancel"> - <property name="label" translatable="yes">gtk-cancel</property> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="can_default">True</property> - <property name="has_default">True</property> - <property name="receives_default">True</property> - <property name="use_stock">True</property> - </object> - <packing> - <property name="position">0</property> - </packing> - </child> - <child> - <object class="GtkButton" id="source_ok"> - <property name="label" translatable="yes">gtk-ok</property> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="can_default">True</property> - <property name="has_default">True</property> - <property name="receives_default">True</property> - <property name="use_stock">True</property> - </object> - <packing> - <property name="position">1</property> - </packing> - </child> - </object> - <packing> - <property name="expand">False</property> - <property name="pack_type">end</property> - <property name="position">0</property> - </packing> - </child> - </object> - </child> - <action-widgets> - <action-widget response="-6">source_cancel</action-widget> - <action-widget response="-9">source_ok</action-widget> - </action-widgets> - </object> - <object class="GtkImage" id="image11"> - <property name="visible">True</property> - <property name="stock">gtk-new</property> - </object> - <object class="GtkImage" id="image12"> - <property name="visible">True</property> - <property name="stock">gtk-apply</property> - </object> - <object class="GtkImage" id="image13"> - <property name="visible">True</property> - <property name="stock">gtk-save-as</property> - </object> - <object class="GtkImage" id="image14"> - <property name="visible">True</property> - <property name="stock">gtk-open</property> - </object> - <object class="GtkImage" id="image15"> - <property name="visible">True</property> - <property name="stock">gtk-refresh</property> + <object class="GtkAdjustment" id="x264PresetRange"> + <property name="upper">1</property> + <property name="step_increment">1</property> + <property name="page_increment">1</property> </object> </interface> diff --git a/gtk/src/main.c b/gtk/src/main.c index d57fdaf0b..04c43df6a 100644 --- a/gtk/src/main.c +++ b/gtk/src/main.c @@ -1088,9 +1088,7 @@ main(int argc, char *argv[]) GHB_THREAD_NEW("Cache Volume Names", (GThreadFunc)ghb_cache_volnames, ud); #if defined(_USE_APP_IND) - GtkUIManager * uim = GTK_UI_MANAGER(GHB_OBJECT(ud->builder, "uimanager1")); - - GtkMenu *ai_menu = GTK_MENU(gtk_ui_manager_get_widget(uim, "/ui/tray_menu")); + GtkMenu *ai_menu = GTK_MENU(GHB_OBJECT(ud->builder, "tray_menu")); ud->ai = app_indicator_new("HandBrake", "hb-icon", APP_INDICATOR_CATEGORY_APPLICATION_STATUS); app_indicator_set_menu( ud->ai, ai_menu ); app_indicator_set_label( ud->ai, "", "99.99%"); diff --git a/gtk/src/makedeps.py b/gtk/src/makedeps.py index 1a6438933..6ab44ccd4 100644 --- a/gtk/src/makedeps.py +++ b/gtk/src/makedeps.py @@ -8,6 +8,7 @@ DepEntry = collections.namedtuple('DepEntry', 'widget dep enable die hide') dep_map = ( DepEntry("title", "queue_add", "none", True, False), DepEntry("title", "queue_add_menu", "none", True, False), + DepEntry("title", "queue_add_all_menu", "none", True, False), DepEntry("title", "preview_frame", "none", True, False), DepEntry("title", "picture_summary", "none", True, False), DepEntry("title", "picture_summary2", "none", True, False), diff --git a/gtk/src/presets.c b/gtk/src/presets.c index d2ea4c022..3b374375b 100644 --- a/gtk/src/presets.c +++ b/gtk/src/presets.c @@ -1378,11 +1378,11 @@ ghb_prefs_to_ui(signal_user_data_t *ud) ghb_ui_update(ud, "show_presets", val); if (ghb_settings_get_boolean(ud->settings, "hbfd_feature")) { - GtkAction *action; + GtkWidget *widget; val = ghb_settings_get_value(ud->settings, "hbfd"); ghb_ui_update(ud, "hbfd", val); - action = GHB_ACTION (ud->builder, "hbfd"); - gtk_action_set_visible(action, TRUE); + widget = GHB_WIDGET (ud->builder, "hbfd"); + gtk_widget_set_visible(widget, TRUE); } else { diff --git a/gtk/src/queuehandler.c b/gtk/src/queuehandler.c index 8642bfe21..f02195673 100644 --- a/gtk/src/queuehandler.c +++ b/gtk/src/queuehandler.c @@ -996,7 +996,6 @@ void ghb_queue_buttons_grey(signal_user_data_t *ud) { GtkWidget *widget; - GtkAction *action; gint queue_count; gint titleindex; gint queue_state, scan_state; @@ -1019,10 +1018,10 @@ ghb_queue_buttons_grey(signal_user_data_t *ud) widget = GHB_WIDGET(ud->builder, "queue_add"); gtk_widget_set_sensitive(widget, show_start); - action = GHB_ACTION(ud->builder, "queue_add_menu"); - gtk_action_set_sensitive(action, show_start); - action = GHB_ACTION(ud->builder, "queue_add_all_menu"); - gtk_action_set_sensitive(action, show_start); + widget = GHB_WIDGET(ud->builder, "queue_add_menu"); + gtk_widget_set_sensitive(widget, show_start); + widget = GHB_WIDGET(ud->builder, "queue_add_all_menu"); + gtk_widget_set_sensitive(widget, show_start); widget = GHB_WIDGET (ud->builder, "queue_start1"); if (show_stop) @@ -1085,69 +1084,57 @@ ghb_queue_buttons_grey(signal_user_data_t *ud) gtk_tool_item_set_tooltip_text(GTK_TOOL_ITEM(widget), _("Pause Encoding")); } - action = GHB_ACTION (ud->builder, "queue_start_menu"); + widget = GHB_WIDGET (ud->builder, "queue_start_menu"); if (show_stop) { - gtk_action_set_sensitive (action, TRUE); + gtk_widget_set_sensitive (widget, TRUE); #if GTK_CHECK_VERSION(2, 16, 0) - gtk_action_set_icon_name(action, "hb-stop"); - gtk_action_set_label(action, _("S_top Queue")); - gtk_action_set_tooltip(action, _("Stop Encoding")); + gtk_menu_item_set_label(GTK_MENU_ITEM(widget), _("S_top Queue")); + gtk_widget_set_tooltip_text(widget, _("Stop Encoding")); #else - g_object_set_property(G_OBJECT(action), "icon-name", - ghb_string_value("hb-stop")); - g_object_set_property(G_OBJECT(action), "label", + g_object_set_property(G_OBJECT(widget), "label", ghb_string_value(_("S_top Queue"))); - g_object_set_property(G_OBJECT(action), "tooltip", + g_object_set_property(G_OBJECT(widget), "tooltip", ghb_string_value(_("Stop Encoding"))); #endif } else { - gtk_action_set_sensitive (action, show_start); + gtk_widget_set_sensitive (widget, show_start); #if GTK_CHECK_VERSION(2, 16, 0) - gtk_action_set_icon_name(action, "hb-start"); - gtk_action_set_label(action, _("_Start Queue")); - gtk_action_set_tooltip(action, _("Start Encoding")); + gtk_menu_item_set_label(GTK_MENU_ITEM(widget), _("_Start Queue")); + gtk_widget_set_tooltip_text(widget, _("Start Encoding")); #else - g_object_set_property(G_OBJECT(action), "icon-name", - ghb_string_value("hb-start")); - g_object_set_property(G_OBJECT(action), "label", + g_object_set_property(G_OBJECT(widget), "label", ghb_string_value(_("_Start Queue"))); - g_object_set_property(G_OBJECT(action), "tooltip", + g_object_set_property(G_OBJECT(widget), "tooltip", ghb_string_value(_("Start Encoding"))); #endif } - action = GHB_ACTION (ud->builder, "queue_pause_menu"); + widget = GHB_WIDGET (ud->builder, "queue_pause_menu"); if (paused) { - gtk_action_set_sensitive (action, show_start); + gtk_widget_set_sensitive (widget, show_start); #if GTK_CHECK_VERSION(2, 16, 0) - gtk_action_set_icon_name(action, "hb-start"); - gtk_action_set_label(action, "_Resume Queue"); - gtk_action_set_tooltip(action, "Resume Encoding"); + gtk_menu_item_set_label(GTK_MENU_ITEM(widget), "_Resume Queue"); + gtk_widget_set_tooltip_text(widget, "Resume Encoding"); #else - g_object_set_property(G_OBJECT(action), "icon-name", - ghb_string_value("hb-start")); - g_object_set_property(G_OBJECT(action), "label", + g_object_set_property(G_OBJECT(widget), "label", ghb_string_value(_("_Resume Queue"))); - g_object_set_property(G_OBJECT(action), "tooltip", + g_object_set_property(G_OBJECT(widget), "tooltip", ghb_string_value(_("Resume Encoding"))); #endif } else { - gtk_action_set_sensitive (action, show_stop); + gtk_widget_set_sensitive (widget, show_stop); #if GTK_CHECK_VERSION(2, 16, 0) - gtk_action_set_icon_name(action, "hb-pause"); - gtk_action_set_label(action, _("_Pause Queue")); - gtk_action_set_tooltip(action, _("Pause Encoding")); + gtk_menu_item_set_label(GTK_MENU_ITEM(widget), _("_Pause Queue")); + gtk_widget_set_tooltip_text(widget, _("Pause Encoding")); #else - g_object_set_property(G_OBJECT(action), "icon-name", - ghb_string_value("hb-pause")); - g_object_set_property(G_OBJECT(action), "label", + g_object_set_property(G_OBJECT(widget), "label", ghb_string_value(_("_Pause Queue"))); - g_object_set_property(G_OBJECT(action), "tooltip", + g_object_set_property(G_OBJECT(widget), "tooltip", ghb_string_value(_("Pause Encoding"))); #endif } diff --git a/gtk/src/settings.c b/gtk/src/settings.c index 9d211797e..ee68f74f6 100644 --- a/gtk/src/settings.c +++ b/gtk/src/settings.c @@ -254,13 +254,6 @@ ghb_widget_value(GtkWidget *widget) bval = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)); value = ghb_boolean_value_new(bval); } - else if (type == GTK_TYPE_TOGGLE_ACTION) - { - g_debug("\ttoggle action"); - gboolean bval; - bval = gtk_toggle_action_get_active(GTK_TOGGLE_ACTION(widget)); - value = ghb_boolean_value_new(bval); - } else if (type == GTK_TYPE_CHECK_MENU_ITEM) { g_debug("\tcheck_menu_item"); @@ -516,11 +509,6 @@ update_widget(GtkWidget *widget, const GValue *value) g_debug("toggle button"); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), ival); } - else if (type == GTK_TYPE_TOGGLE_ACTION) - { - g_debug("toggle action"); - gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(widget), ival); - } else if (type == GTK_TYPE_CHECK_MENU_ITEM) { g_debug("check menu item"); |