diff options
author | Pablo Barciela <[email protected]> | 2018-03-05 01:57:02 +0100 |
---|---|---|
committer | lukefromdc <[email protected]> | 2018-03-06 14:41:01 -0500 |
commit | a29f7405e31e2222ea116f1fe1d600967fff409a (patch) | |
tree | 02cc558d69aa1eea66bc7ee55b7c86a9b4c0d428 | |
parent | 2b86db36250fd6a9c6add88c4bae3471c8ce47db (diff) | |
download | pluma-a29f7405e31e2222ea116f1fe1d600967fff409a.tar.bz2 pluma-a29f7405e31e2222ea116f1fe1d600967fff409a.tar.xz |
pluma-encodings-dialog.ui: avoid GtkButton:use-stock
-rw-r--r-- | pluma/dialogs/pluma-encodings-dialog.c | 3 | ||||
-rw-r--r-- | pluma/dialogs/pluma-encodings-dialog.ui | 45 |
2 files changed, 36 insertions, 12 deletions
diff --git a/pluma/dialogs/pluma-encodings-dialog.c b/pluma/dialogs/pluma-encodings-dialog.c index 2e58e723..e71b5473 100644 --- a/pluma/dialogs/pluma-encodings-dialog.c +++ b/pluma/dialogs/pluma-encodings-dialog.c @@ -366,6 +366,9 @@ pluma_encodings_dialog_init (PlumaEncodingsDialog *dlg) g_object_unref (content); gtk_container_set_border_width (GTK_CONTAINER (content), 5); + gtk_button_set_image (GTK_BUTTON (dlg->priv->add_button), gtk_image_new_from_icon_name ("list-add", GTK_ICON_SIZE_BUTTON)); + gtk_button_set_image (GTK_BUTTON (dlg->priv->remove_button), gtk_image_new_from_icon_name ("list-remove", GTK_ICON_SIZE_BUTTON)); + g_signal_connect (dlg->priv->add_button, "clicked", G_CALLBACK (add_button_clicked_callback), diff --git a/pluma/dialogs/pluma-encodings-dialog.ui b/pluma/dialogs/pluma-encodings-dialog.ui index a388d84d..66602e63 100644 --- a/pluma/dialogs/pluma-encodings-dialog.ui +++ b/pluma/dialogs/pluma-encodings-dialog.ui @@ -1,8 +1,23 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- Generated with glade 3.20.0 --> +<!-- Generated with glade 3.20.2 --> <!--*- mode: xml -*--> <interface> - <requires lib="gtk+" version="3.14"/> + <requires lib="gtk+" version="3.22"/> + <object class="GtkImage" id="image1"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="icon_name">help-browser</property> + </object> + <object class="GtkImage" id="image2"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="icon_name">process-stop</property> + </object> + <object class="GtkImage" id="image3"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="icon_name">gtk-ok</property> + </object> <object class="GtkDialog" id="encodings-dialog"> <property name="width_request">650</property> <property name="height_request">400</property> @@ -22,12 +37,13 @@ <property name="layout_style">end</property> <child> <object class="GtkButton" id="helpbutton1"> - <property name="label">gtk-help</property> + <property name="label" translatable="yes">_Help</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="can_default">True</property> <property name="receives_default">False</property> - <property name="use_stock">True</property> + <property name="image">image1</property> + <property name="use_underline">True</property> </object> <packing> <property name="expand">True</property> @@ -37,12 +53,13 @@ </child> <child> <object class="GtkButton" id="closebutton1"> - <property name="label">gtk-cancel</property> + <property name="label" translatable="yes">_Cancel</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="can_default">True</property> <property name="receives_default">False</property> - <property name="use_stock">True</property> + <property name="image">image2</property> + <property name="use_underline">True</property> </object> <packing> <property name="expand">True</property> @@ -52,12 +69,13 @@ </child> <child> <object class="GtkButton" id="button1"> - <property name="label">gtk-ok</property> + <property name="label" translatable="yes">_OK</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="can_default">True</property> <property name="receives_default">False</property> - <property name="use_stock">True</property> + <property name="image">image3</property> + <property name="use_underline">True</property> </object> <packing> <property name="expand">True</property> @@ -129,11 +147,11 @@ <property name="can_focus">False</property> <child> <object class="GtkButton" id="add-button"> - <property name="label">gtk-add</property> + <property name="label" translatable="yes">_Add</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> - <property name="use_stock">True</property> + <property name="use_underline">True</property> </object> <packing> <property name="expand">False</property> @@ -207,11 +225,11 @@ <property name="can_focus">False</property> <child> <object class="GtkButton" id="remove-button"> - <property name="label">gtk-remove</property> + <property name="label" translatable="yes">_Remove</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> - <property name="use_stock">True</property> + <property name="use_underline">True</property> </object> <packing> <property name="expand">False</property> @@ -250,5 +268,8 @@ <action-widget response="-6">closebutton1</action-widget> <action-widget response="-5">button1</action-widget> </action-widgets> + <child> + <placeholder/> + </child> </object> </interface> |