From 85afd16cee70390540d73e0b66999b0d859d299e Mon Sep 17 00:00:00 2001 From: raveit65 Date: Sun, 10 Jul 2016 17:43:40 +0200 Subject: 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 --- src/gpm-engine.c | 44 ++++++++++++++++++++++++++++++++++++++++++++ src/gpm-engine.h | 1 + src/gpm-tray-icon.c | 38 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 83 insertions(+) (limited to 'src') diff --git a/src/gpm-engine.c b/src/gpm-engine.c index 6f16381..611ccf5 100644 --- a/src/gpm-engine.c +++ b/src/gpm-engine.c @@ -1011,6 +1011,50 @@ gpm_engine_get_devices (GpmEngine *engine) return g_ptr_array_ref (engine->priv->array); } +/** + * gpm_engine_get_primary_device: + * + * Return value: the #UpDevice, free with g_object_unref() + **/ +UpDevice * +gpm_engine_get_primary_device (GpmEngine *engine) +{ + guint i; + UpDevice *device = NULL; + UpDevice *device_tmp; + UpDeviceKind kind; + UpDeviceState state; + gboolean is_present; + + for (i=0; ipriv->array->len; i++) { + device_tmp = g_ptr_array_index (engine->priv->array, i); + + /* get device properties */ + g_object_get (device_tmp, + "kind", &kind, + "state", &state, + "is-present", &is_present, + NULL); + + /* not present */ + if (!is_present) + continue; + + /* not discharging */ + if (state != UP_DEVICE_STATE_DISCHARGING) + continue; + + /* not battery */ + if (kind != UP_DEVICE_KIND_BATTERY) + continue; + + /* use composite device to cope with multiple batteries */ + device = g_object_ref (gpm_engine_get_composite_device (engine, device_tmp)); + break; + } + return device; +} + /** * phone_device_added_cb: **/ diff --git a/src/gpm-engine.h b/src/gpm-engine.h index 484b3f2..8dbefbc 100644 --- a/src/gpm-engine.h +++ b/src/gpm-engine.h @@ -69,6 +69,7 @@ GpmEngine *gpm_engine_new (void); gchar *gpm_engine_get_icon (GpmEngine *engine); gchar *gpm_engine_get_summary (GpmEngine *engine); GPtrArray *gpm_engine_get_devices (GpmEngine *engine); +UpDevice *gpm_engine_get_primary_device (GpmEngine *engine); G_END_DECLS 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 @@ -274,6 +274,33 @@ gpm_tray_icon_add_device (GpmTrayIcon *icon, GtkMenu *menu, const GPtrArray *arr return added; } +/** + * 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: * @@ -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; } -- cgit v1.2.1