aboutsummaryrefslogtreecommitdiff
path: root/src/user-widget.c
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2011-07-12 19:48:30 +0100
committerConor Curran <conor.curran@canonical.com>2011-07-12 19:48:30 +0100
commit6fe9d17b60870f96ff4325277118e555e8054d74 (patch)
tree046e4686efdb2c971c964e1a61f774225688de7b /src/user-widget.c
parent4998457e8fe3d6cd90cd6f651eb9d7392138dd87 (diff)
downloadayatana-indicator-session-6fe9d17b60870f96ff4325277118e555e8054d74.tar.gz
ayatana-indicator-session-6fe9d17b60870f96ff4325277118e555e8054d74.tar.bz2
ayatana-indicator-session-6fe9d17b60870f96ff4325277118e555e8054d74.zip
radio button for is-current-user handled
Diffstat (limited to 'src/user-widget.c')
-rw-r--r--src/user-widget.c119
1 files changed, 79 insertions, 40 deletions
diff --git a/src/user-widget.c b/src/user-widget.c
index bd6634a..22f611c 100644
--- a/src/user-widget.c
+++ b/src/user-widget.c
@@ -26,6 +26,8 @@ with this program. If not, see <http://www.gnu.org/licenses/>.
#include <glib.h>
#include <libindicator/indicator-image-helper.h>
#include "user-widget.h"
+#include "dbus-shared-names.h"
+
typedef struct _UserWidgetPrivate UserWidgetPrivate;
@@ -34,6 +36,8 @@ struct _UserWidgetPrivate
DbusmenuMenuitem* twin_item;
GtkWidget* user_image;
GtkWidget* user_name;
+ GtkWidget* container;
+ GtkWidget* tick_icon;
gboolean logged_in;
gboolean sessions_active;
};
@@ -86,11 +90,21 @@ static void
user_widget_init (UserWidget *self)
{
UserWidgetPrivate * priv = USER_WIDGET_GET_PRIVATE(self);
+
+ gint padding = 0;
+ gtk_widget_style_get (GTK_WIDGET(self),
+ "horizontal-padding",
+ &padding,
+ NULL);
+
priv->user_image = NULL;
priv->user_name = NULL;
priv->logged_in = FALSE;
priv->sessions_active = FALSE;
+ priv->container = NULL;
+ priv->tick_icon = NULL;
+ // Create the UI elements.
priv->user_image = gtk_image_new ();
// Just for now set the image to the default avator image
@@ -98,7 +112,7 @@ user_widget_init (UserWidget *self)
GError* error = NULL;
pixbuf = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (),
"avatar-default",
- 12,
+ 32,
GTK_ICON_LOOKUP_FORCE_SIZE,
&error);
@@ -109,9 +123,35 @@ user_widget_init (UserWidget *self)
gtk_image_set_from_pixbuf (GTK_IMAGE(priv->user_image), pixbuf);
g_object_unref (pixbuf);
}
-
+
priv->user_name = gtk_label_new ("");
+ priv->container = gtk_hbox_new (FALSE, 0);
+ // TODO:
+ // Delete tick icon and draw primitively.
+ priv->tick_icon = gtk_image_new_from_icon_name ("account-logged-in",
+ GTK_ICON_SIZE_MENU);
+ gtk_misc_set_alignment(GTK_MISC(priv->tick_icon), 1.0, 0.5);
+
+ // Pack it together
+ gtk_box_pack_start (GTK_BOX (priv->container),
+ priv->user_image,
+ FALSE,
+ FALSE,
+ 0);
+ gtk_box_pack_start (GTK_BOX (priv->container),
+ priv->user_name,
+ FALSE,
+ FALSE,
+ 3);
+ gtk_box_pack_start (GTK_BOX(priv->container),
+ priv->tick_icon,
+ FALSE,
+ FALSE, 5);
+
+ gtk_widget_show_all (priv->container);
+ gtk_container_add (GTK_CONTAINER (self), priv->container);
+ // Fetch the drawing context.
#if GTK_CHECK_VERSION(3, 0, 0)
g_signal_connect_after (GTK_WIDGET(self), "draw",
G_CALLBACK(user_widget_primitive_draw_cb_gtk_3),
@@ -145,58 +185,43 @@ user_widget_finalize (GObject *object)
#if GTK_CHECK_VERSION(3, 0, 0)
-// Draw the triangle if the player is running ...
+// Draw the radio dot and/or green check mark
+// TODO handle drawing of green check mark
static gboolean
user_widget_primitive_draw_cb_gtk_3 (GtkWidget *widget,
cairo_t* cr,
gpointer user_data)
{
- /*
+
g_return_val_if_fail(IS_USER_WIDGET(user_data), FALSE);
UserWidget* meta = USER_WIDGET(user_data);
UserWidgetPrivate * priv = USER_WIDGET_GET_PRIVATE(meta);
+ // Draw dot only when user is the current user.
+ if (!dbusmenu_menuitem_property_get_bool (priv->twin_item,
+ USER_ITEM_PROP_IS_CURRENT_USER)){
+ return FALSE;
+ }
+
+
GtkStyle *style;
- int x, y, arrow_width, arrow_height;
-
- gint offset = 3;
- arrow_width = 5;
- arrow_height = 9;
+ gdouble x, y;
+ gdouble offset = 15.0;
style = gtk_widget_get_style (widget);
GtkAllocation allocation;
gtk_widget_get_allocation (widget, &allocation);
- x = allocation.x;
- y = 0;
-
- // Draw player icon
- if (priv->icon_buf != NULL){
- gdk_cairo_set_source_pixbuf (cr,
- priv->icon_buf,
- x + arrow_width + 1,
- y + offset);
- cairo_paint (cr);
- }
-
- // Draw triangle but only if the player is running.
- if (dbusmenu_menuitem_property_get_bool (priv->twin_item,
- DBUSMENU_METADATA_MENUITEM_PLAYER_RUNNING)){
- y += (double)arrow_height/2.0 + offset;
- cairo_set_line_width (cr, 1.0);
-
- //g_debug ("triangle drawing");
-
- cairo_move_to (cr, x, y);
- cairo_line_to (cr, x, y + arrow_height);
- cairo_line_to (cr, x + arrow_width, y + (double)arrow_height/2.0);
- cairo_close_path (cr);
- cairo_set_source_rgb (cr, style->fg[gtk_widget_get_state(widget)].red/65535.0,
- style->fg[gtk_widget_get_state(widget)].green/65535.0,
- style->fg[gtk_widget_get_state(widget)].blue/65535.0);
- cairo_fill (cr);
- }*/
+ x = allocation.x + 13;
+ y = offset;
+
+ cairo_arc (cr, x, y, 3.0, 0.0, 2 * G_PI);;
+ cairo_set_source_rgb (cr, style->fg[gtk_widget_get_state(widget)].red/65535.0,
+ style->fg[gtk_widget_get_state(widget)].green/65535.0,
+ style->fg[gtk_widget_get_state(widget)].blue/65535.0);
+ cairo_fill (cr);
+
return FALSE;
}
@@ -275,7 +300,7 @@ user_widget_property_update (DbusmenuMenuitem* item, gchar* property,
GVariant* value, gpointer userdata)
{
g_return_if_fail (IS_USER_WIDGET (userdata));
-
+ //gtk_widget_queue_redraw (GTK_WIDGET(userdata));
}
@@ -287,7 +312,21 @@ user_widget_set_twin_item (UserWidget* self,
priv->twin_item = twin_item;
g_signal_connect( G_OBJECT(priv->twin_item), "property-changed",
G_CALLBACK(user_widget_property_update), self);
-
+
+ const gchar * icon_name = dbusmenu_menuitem_property_get (twin_item,
+ USER_ITEM_PROP_ICON);
+ gtk_label_set_label (GTK_LABEL (priv->user_name),
+ dbusmenu_menuitem_property_get (twin_item, USER_ITEM_PROP_NAME));
+
+ //if (dbusmenu_menuitem_property_get_bool (twin_item, USER_ITEM_PROP_LOGGED_IN)) {
+ // gtk_widget_show(priv->tick_icon);
+ //} else {
+ gtk_widget_show(priv->tick_icon);
+ //}
+
+ g_debug("Using user icon for '%s' from file: %s",
+ dbusmenu_menuitem_property_get(twin_item, USER_ITEM_PROP_NAME), icon_name);
+
}
/**