diff options
author | raveit65 <[email protected]> | 2016-07-10 17:43:40 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-07-25 16:13:41 +0200 |
commit | 85afd16cee70390540d73e0b66999b0d859d299e (patch) | |
tree | 97d2571ee1ff6d1bdc77c6dcc3da0c438bd6c093 /src/gpm-tray-icon.c | |
parent | ab62a95bb36351eb67638a992bfc57aff3deda87 (diff) | |
download | mate-power-manager-85afd16cee70390540d73e0b66999b0d859d299e.tar.bz2 mate-power-manager-85afd16cee70390540d73e0b66999b0d859d299e.tar.xz |
Show the primary device time remaining as the first entry in the context menu
taken from:
https://git.gnome.org/browse/gnome-power-manager/commit/?id=93da9b4
Diffstat (limited to 'src/gpm-tray-icon.c')
-rw-r--r-- | src/gpm-tray-icon.c | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/gpm-tray-icon.c b/src/gpm-tray-icon.c index 0f9b911..052af38 100644 --- a/src/gpm-tray-icon.c +++ b/src/gpm-tray-icon.c @@ -275,6 +275,33 @@ gpm_tray_icon_add_device (GpmTrayIcon *icon, GtkMenu *menu, const GPtrArray *arr } /** + * gpm_tray_icon_add_primary_device: + **/ +static void +gpm_tray_icon_add_primary_device (GpmTrayIcon *icon, GtkMenu *menu, UpDevice *device) +{ + GtkWidget *item; + gchar *time_str; + gchar *string; + gint64 time_to_empty = 0; + + /* get details */ + g_object_get (device, + "time-to-empty", &time_to_empty, + NULL); + + /* convert time to string */ + time_str = gpm_get_timestring (time_to_empty); + + /* TRANSLATORS: % is a timestring, e.g. "6 hours 10 minutes" */ + string = g_strdup_printf (_("%s remaining"), time_str); + item = gtk_image_menu_item_new_with_label (string); + gtk_menu_shell_append (GTK_MENU_SHELL (menu), item); + g_free (time_str); + g_free (string); +} + +/** * gpm_tray_icon_create_menu: * * Create the popup menu. @@ -287,6 +314,15 @@ gpm_tray_icon_create_menu (GpmTrayIcon *icon) GtkWidget *image; guint dev_cnt = 0; GPtrArray *array; + UpDevice *device = NULL; + + /* show the primary device time remaining */ + device = gpm_engine_get_primary_device (icon->priv->engine); + if (device != NULL) { + gpm_tray_icon_add_primary_device (icon, menu, device); + item = gtk_separator_menu_item_new (); + gtk_menu_shell_append (GTK_MENU_SHELL (menu), item); + } /* add all device types to the drop down menu */ array = gpm_engine_get_devices (icon->priv->engine); @@ -340,6 +376,8 @@ gpm_tray_icon_create_menu (GpmTrayIcon *icon) gtk_menu_shell_append (GTK_MENU_SHELL (menu), item); skip_prefs: + if (device != NULL) + g_object_unref (device); return menu; } |