aboutsummaryrefslogtreecommitdiffstats
path: root/src/prefs-dialog.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-10-22 07:46:13 +0800
committerChristian Persch <chpe@src.gnome.org>2004-10-22 07:46:13 +0800
commit359f14df6b76ebf2a236245f51cf69e1ae0f351e (patch)
tree74741c4dc6a80bec3b4938a86cedf3b3d823e38d /src/prefs-dialog.c
parentf946f0f12df551e2960114e1378785ab245ae0c6 (diff)
downloadgsoc2013-epiphany-359f14df6b76ebf2a236245f51cf69e1ae0f351e.tar
gsoc2013-epiphany-359f14df6b76ebf2a236245f51cf69e1ae0f351e.tar.gz
gsoc2013-epiphany-359f14df6b76ebf2a236245f51cf69e1ae0f351e.tar.bz2
gsoc2013-epiphany-359f14df6b76ebf2a236245f51cf69e1ae0f351e.tar.lz
gsoc2013-epiphany-359f14df6b76ebf2a236245f51cf69e1ae0f351e.tar.xz
gsoc2013-epiphany-359f14df6b76ebf2a236245f51cf69e1ae0f351e.tar.zst
gsoc2013-epiphany-359f14df6b76ebf2a236245f51cf69e1ae0f351e.zip
Add varargs version of ephy_dialog_get_control to get more than one
2004-10-22 Christian Persch <chpe@cvs.gnome.org> * lib/ephy-dialog.c: (ephy_dialog_get_controls): * lib/ephy-dialog.h: Add varargs version of ephy_dialog_get_control to get more than one control at a time. * embed/downloader-view.c: (downloader_view_build_ui): * src/pdm-dialog.c: (pdm_dialog_show_help), (pdm_dialog_init): * src/prefs-dialog.c: (prefs_dialog_show_help), (setup_add_language_dialog), (create_language_section), (prefs_dialog_init): Use that.
Diffstat (limited to 'src/prefs-dialog.c')
-rw-r--r--src/prefs-dialog.c62
1 files changed, 34 insertions, 28 deletions
diff --git a/src/prefs-dialog.c b/src/prefs-dialog.c
index b2529eb62..e5e8004e0 100644
--- a/src/prefs-dialog.c
+++ b/src/prefs-dialog.c
@@ -416,8 +416,10 @@ prefs_dialog_show_help (EphyDialog *dialog)
"language-preferences"
};
- window = ephy_dialog_get_control (dialog, properties[WINDOW_PROP].id);
- notebook = ephy_dialog_get_control (dialog, properties[NOTEBOOK_PROP].id);
+ ephy_dialog_get_controls (dialog,
+ properties[WINDOW_PROP].id, &window,
+ properties[NOTEBOOK_PROP].id, &notebook,
+ NULL);
id = gtk_notebook_get_current_page (GTK_NOTEBOOK (notebook));
id = CLAMP (id, 0, 3);
@@ -821,8 +823,10 @@ setup_add_language_dialog (PrefsDialog *pd)
gtk_tree_sortable_set_sort_column_id
(GTK_TREE_SORTABLE (sortmodel), COL_LANG_NAME, GTK_SORT_ASCENDING);
- treeview = GTK_TREE_VIEW (ephy_dialog_get_control
- (dialog, add_lang_props[LANGUAGE_PROP].id));
+ ephy_dialog_get_controls (dialog,
+ add_lang_props[LANGUAGE_PROP].id, &treeview,
+ add_lang_props[LANGUAGE_DIALOG].id, &window,
+ NULL);
gtk_tree_view_set_reorderable (GTK_TREE_VIEW (treeview), FALSE);
@@ -844,7 +848,6 @@ setup_add_language_dialog (PrefsDialog *pd)
selection = gtk_tree_view_get_selection (treeview);
gtk_tree_selection_set_mode (selection, GTK_SELECTION_MULTIPLE);
- window = ephy_dialog_get_control (dialog, add_lang_props[LANGUAGE_DIALOG].id);
g_signal_connect (window, "response",
G_CALLBACK (add_lang_dialog_response_cb), pd);
@@ -977,9 +980,16 @@ create_language_section (EphyDialog *dialog)
GtkTreeSelection *selection;
GSList *list, *l, *ulist = NULL;
+ ephy_dialog_get_controls
+ (dialog,
+ properties[LANGUAGE_TREEVIEW_PROP].id, &treeview,
+ properties[LANGUAGE_ADD_BUTTON_PROP].id, &pd->priv->lang_add_button,
+ properties[LANGUAGE_REMOVE_BUTTON_PROP].id, &pd->priv->lang_remove_button,
+ properties[LANGUAGE_UP_BUTTON_PROP].id, &pd->priv->lang_up_button,
+ properties[LANGUAGE_DOWN_BUTTON_PROP].id, &pd->priv->lang_down_button,
+ NULL);
+
/* setup the languages treeview */
- treeview = GTK_TREE_VIEW (ephy_dialog_get_control
- (dialog, properties[LANGUAGE_TREEVIEW_PROP].id));
pd->priv->lang_treeview = treeview;
gtk_tree_view_set_reorderable (GTK_TREE_VIEW (treeview), TRUE);
@@ -1013,15 +1023,6 @@ create_language_section (EphyDialog *dialog)
g_signal_connect (G_OBJECT (selection), "changed",
G_CALLBACK (language_editor_selection_changed_cb), pd);
- pd->priv->lang_add_button = ephy_dialog_get_control
- (dialog, properties[LANGUAGE_ADD_BUTTON_PROP].id);
- pd->priv->lang_remove_button = ephy_dialog_get_control
- (dialog, properties[LANGUAGE_REMOVE_BUTTON_PROP].id);
- pd->priv->lang_up_button = ephy_dialog_get_control
- (dialog, properties[LANGUAGE_UP_BUTTON_PROP].id);
- pd->priv->lang_down_button = ephy_dialog_get_control
- (dialog, properties[LANGUAGE_DOWN_BUTTON_PROP].id);
-
list = eel_gconf_get_string_list (CONF_RENDERING_LANGUAGE);
/* uniquify list */
@@ -1151,7 +1152,8 @@ prefs_dialog_init (PrefsDialog *pd)
{
EphyDialog *dialog = EPHY_DIALOG (pd);
EphyEncodings *encodings;
- GtkWidget *window, *button, *combo;
+ GtkWidget *window, *curr_button, *blank_button;
+ GtkWidget *variable_combo, *monospace_combo;
GtkCellRenderer *renderer;
gboolean sensitive;
@@ -1171,27 +1173,31 @@ prefs_dialog_init (PrefsDialog *pd)
properties[AUTO_ENCODING_LABEL_PROP].id,
NULL);
- window = ephy_dialog_get_control (dialog, properties[WINDOW_PROP].id);
+ ephy_dialog_get_controls
+ (dialog,
+ properties[WINDOW_PROP].id, &window,
+ properties[HOMEPAGE_CURRENT_PROP].id, &curr_button,
+ properties[HOMEPAGE_BLANK_PROP].id, &blank_button,
+ properties[VARIABLE_PROP].id, &variable_combo,
+ properties[MONOSPACE_PROP].id, &monospace_combo,
+ NULL);
+
gtk_window_set_icon_name (GTK_WINDOW (window), GTK_STOCK_PREFERENCES);
/* set homepage button sensitivity */
sensitive = eel_gconf_key_is_writable (CONF_GENERAL_HOMEPAGE);
- button = ephy_dialog_get_control (dialog, properties[HOMEPAGE_CURRENT_PROP].id);
- gtk_widget_set_sensitive (button, sensitive);
- button = ephy_dialog_get_control (dialog, properties[HOMEPAGE_BLANK_PROP].id);
- gtk_widget_set_sensitive (button, sensitive);
+ gtk_widget_set_sensitive (curr_button, sensitive);
+ gtk_widget_set_sensitive (blank_button, sensitive);
- combo = ephy_dialog_get_control (dialog, properties[VARIABLE_PROP].id);
renderer = gtk_cell_renderer_text_new ();
- gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo), renderer, TRUE);
- gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo), renderer,
+ gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (variable_combo), renderer, TRUE);
+ gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (variable_combo), renderer,
"text", 0,
NULL);
ephy_dialog_set_data_column (dialog, properties[VARIABLE_PROP].id, 0);
- combo = ephy_dialog_get_control (dialog, properties[MONOSPACE_PROP].id);
renderer = gtk_cell_renderer_text_new ();
- gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo), renderer, TRUE);
- gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo), renderer,
+ gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (monospace_combo), renderer, TRUE);
+ gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (monospace_combo), renderer,
"text", 0,
NULL);
ephy_dialog_set_data_column (dialog, properties[MONOSPACE_PROP].id, 0);