From a518a93b575372faee1a3da6aaa9f20cf2e10ec1 Mon Sep 17 00:00:00 2001 From: Pablo Barciela Date: Mon, 9 Apr 2018 20:47:07 +0200 Subject: avoid gtk_dialog_add_buttons with stock ids --- mate-panel/libpanel-util/panel-gtk.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'mate-panel/libpanel-util/panel-gtk.c') diff --git a/mate-panel/libpanel-util/panel-gtk.c b/mate-panel/libpanel-util/panel-gtk.c index b096d24f..aed2ce9c 100644 --- a/mate-panel/libpanel-util/panel-gtk.c +++ b/mate-panel/libpanel-util/panel-gtk.c @@ -81,3 +81,23 @@ panel_gtk_file_chooser_add_image_preview (GtkFileChooser *chooser) /* * End of code coming from panel-properties-dialog.c */ + +GtkWidget* +panel_dialog_add_button (GtkDialog *dialog, + const gchar *button_text, + const gchar *icon_name, + gint response_id) +{ + GtkWidget *button; + + button = gtk_button_new_with_mnemonic (button_text); + gtk_button_set_image (GTK_BUTTON (button), gtk_image_new_from_icon_name (icon_name, GTK_ICON_SIZE_BUTTON)); + + gtk_button_set_use_underline (GTK_BUTTON (button), TRUE); + gtk_style_context_add_class (gtk_widget_get_style_context (button), "text-button"); + gtk_widget_set_can_default (button, TRUE); + gtk_widget_show (button); + gtk_dialog_add_action_widget (GTK_DIALOG (dialog), button, response_id); + + return button; +} -- cgit v1.2.1