summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorErnestas Kulik <ernestask@src.gnome.org>2016-10-19 12:54:56 +0300
committerErnestas Kulik <ernestask@src.gnome.org>2016-10-24 17:22:53 +0300
commitfa86719d33b691504463c25ee2be83862bd14bde (patch)
tree5c80b0a989b43c68edc2632f512fbbc77f9948fc /src
parent34a48ba3bec1215a936638000b22de2c73c51fc7 (diff)
downloadnautilus-fa86719d33b691504463c25ee2be83862bd14bde.tar.gz
properties-window: merge create_page_with_{h,v}box()
The two functions are now nearly identical with the deprecation of Gtk{H,V}Box. https://bugzilla.gnome.org/show_bug.cgi?id=773211
Diffstat (limited to 'src')
-rw-r--r--src/nautilus-properties-window.c64
1 files changed, 24 insertions, 40 deletions
diff --git a/src/nautilus-properties-window.c b/src/nautilus-properties-window.c
index 769c4f5ba..d3e90fc99 100644
--- a/src/nautilus-properties-window.c
+++ b/src/nautilus-properties-window.c
@@ -2516,50 +2516,31 @@ append_directory_contents_fields (NautilusPropertiesWindow *window,
}
static GtkWidget *
-create_page_with_hbox (GtkNotebook *notebook,
- const char *title,
- const char *help_uri)
+create_page_with_box (GtkNotebook *notebook,
+ GtkOrientation orientation,
+ const gchar *title,
+ const gchar *help_uri)
{
- GtkWidget *hbox;
+ GtkWidget *box;
g_assert (GTK_IS_NOTEBOOK (notebook));
g_assert (title != NULL);
- hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
- gtk_widget_show (hbox);
- gtk_container_set_border_width (GTK_CONTAINER (hbox), 12);
- gtk_box_set_spacing (GTK_BOX (hbox), 12);
- gtk_notebook_append_page (notebook, hbox, gtk_label_new (title));
- gtk_container_child_set (GTK_CONTAINER (notebook),
- hbox,
- "tab-expand", TRUE,
- NULL);
- g_object_set_data_full (G_OBJECT (hbox), "help-uri", g_strdup (help_uri), g_free);
-
- return hbox;
-}
-
-static GtkWidget *
-create_page_with_vbox (GtkNotebook *notebook,
- const char *title,
- const char *help_uri)
-{
- GtkWidget *vbox;
-
- g_assert (GTK_IS_NOTEBOOK (notebook));
- g_assert (title != NULL);
-
- vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
- gtk_widget_show (vbox);
- gtk_container_set_border_width (GTK_CONTAINER (vbox), 12);
- gtk_notebook_append_page (notebook, vbox, gtk_label_new (title));
+ box = gtk_box_new (orientation, 0);
+ gtk_widget_show (box);
+ gtk_container_set_border_width (GTK_CONTAINER (box), 12);
+ if (orientation == GTK_ORIENTATION_HORIZONTAL)
+ {
+ gtk_box_set_spacing (GTK_BOX (box), 12);
+ }
+ gtk_notebook_append_page (notebook, box, gtk_label_new (title));
gtk_container_child_set (GTK_CONTAINER (notebook),
- vbox,
+ box,
"tab-expand", TRUE,
NULL);
- g_object_set_data_full (G_OBJECT (vbox), "help-uri", g_strdup (help_uri), g_free);
+ g_object_set_data_full (G_OBJECT (box), "help-uri", g_strdup (help_uri), g_free);
- return vbox;
+ return box;
}
static GtkWidget *
@@ -3161,8 +3142,10 @@ create_basic_page (NautilusPropertiesWindow *window)
GtkWidget *volume_usage;
GtkWidget *hbox, *vbox;
- hbox = create_page_with_hbox (window->details->notebook, _("Basic"),
- "help:gnome-help/nautilus-file-properties-basic");
+ hbox = create_page_with_box (window->details->notebook,
+ GTK_ORIENTATION_HORIZONTAL,
+ _("Basic"),
+ "help:gnome-help/nautilus-file-properties-basic");
/* Icon pixmap */
@@ -4685,9 +4668,10 @@ create_permissions_page (NautilusPropertiesWindow *window)
char *file_name, *prompt_text;
GList *file_list;
- vbox = create_page_with_vbox (window->details->notebook,
- _("Permissions"),
- "help:gnome-help/nautilus-file-properties-permissions");
+ vbox = create_page_with_box (window->details->notebook,
+ GTK_ORIENTATION_VERTICAL,
+ _("Permissions"),
+ "help:gnome-help/nautilus-file-properties-permissions");
file_list = window->details->original_files;