[gedit] Improve checkupdate infobar
- From: Paolo Borelli <pborelli src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gedit] Improve checkupdate infobar
- Date: Wed, 5 Feb 2014 15:42:08 +0000 (UTC)
commit 186585afd794737ec6f4afb411487fcaf6d6ed73
Author: Paolo Borelli <pborelli gnome org>
Date: Wed Feb 5 16:41:29 2014 +0100
Improve checkupdate infobar
plugins/checkupdate/gedit-check-update-plugin.c | 28 +++++------------------
1 files changed, 6 insertions(+), 22 deletions(-)
---
diff --git a/plugins/checkupdate/gedit-check-update-plugin.c b/plugins/checkupdate/gedit-check-update-plugin.c
index 95a0d1a..d3a77c9 100644
--- a/plugins/checkupdate/gedit-check-update-plugin.c
+++ b/plugins/checkupdate/gedit-check-update-plugin.c
@@ -290,28 +290,12 @@ create_infobar (GeditWindow *window,
infobar = gtk_info_bar_new ();
- button = gedit_gtk_button_new_with_stock_icon (_("_Download"),
- GTK_STOCK_SAVE);
- gtk_widget_show (button);
-
- gtk_info_bar_add_action_widget (GTK_INFO_BAR (infobar),
- button,
- GTK_RESPONSE_YES);
-
- button = gedit_gtk_button_new_with_stock_icon (_("_Ignore Version"),
- GTK_STOCK_DISCARD);
- gtk_widget_show (button);
-
- gtk_info_bar_add_action_widget (GTK_INFO_BAR (infobar),
- button,
- GTK_RESPONSE_NO);
-
- gtk_info_bar_add_button (GTK_INFO_BAR (infobar),
- GTK_STOCK_CANCEL,
- GTK_RESPONSE_CANCEL);
-
- gtk_info_bar_set_message_type (GTK_INFO_BAR (infobar),
- GTK_MESSAGE_INFO);
+ gtk_info_bar_add_buttons (GTK_INFO_BAR (infobar),
+ _("_Download"), GTK_RESPONSE_YES,
+ _("_Ignore Version"), GTK_RESPONSE_NO,
+ NULL);
+ gtk_info_bar_set_show_close_button (GTK_INFO_BAR (infobar), TRUE);
+ gtk_info_bar_set_message_type (GTK_INFO_BAR (infobar), GTK_MESSAGE_INFO);
message = g_strdup_printf ("%s (%s)", _("There is a new version of gedit"), version);
set_message_area_text_and_icon (infobar,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]