aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2011-07-13 17:34:03 +0100
committerConor Curran <conor.curran@canonical.com>2011-07-13 17:34:03 +0100
commitee23d617b4f66ddeddaa355faef5760d62314823 (patch)
tree36d6bd4c11e8f1156c6e3fc75f1cd24956aa1f18
parent1967b9c58fd2727733fb38c10d610eb80e365ae3 (diff)
downloadayatana-indicator-session-ee23d617b4f66ddeddaa355faef5760d62314823.tar.gz
ayatana-indicator-session-ee23d617b4f66ddeddaa355faef5760d62314823.tar.bz2
ayatana-indicator-session-ee23d617b4f66ddeddaa355faef5760d62314823.zip
user label fixed for now
-rw-r--r--src/indicator-session.c152
-rw-r--r--src/session-dbus.c8
-rw-r--r--src/session-dbus.h3
-rw-r--r--src/session-service.c4
4 files changed, 94 insertions, 73 deletions
diff --git a/src/indicator-session.c b/src/indicator-session.c
index 1de33d9..ab3e87a 100644
--- a/src/indicator-session.c
+++ b/src/indicator-session.c
@@ -89,10 +89,11 @@ static gboolean build_restart_item (DbusmenuMenuitem * newitem,
DbusmenuClient * client,
gpointer user_data);
static void indicator_session_update_users_label (IndicatorSession* self,
- GVariant * variant);
+ const gchar* name);
static void service_connection_cb (IndicatorServiceManager * sm, gboolean connected, gpointer user_data);
static void receive_signal (GDBusProxy * proxy, gchar * sender_name, gchar * signal_name, GVariant * parameters, gpointer user_data);
static void service_proxy_cb (GObject * object, GAsyncResult * res, gpointer user_data);
+static void user_real_name_get_cb (GObject * obj, GAsyncResult * res, gpointer user_data);
static void indicator_session_class_init (IndicatorSessionClass *klass);
static void indicator_session_init (IndicatorSession *self);
@@ -128,6 +129,8 @@ indicator_session_init (IndicatorSession *self)
g_signal_connect(G_OBJECT(self->service),
INDICATOR_SERVICE_MANAGER_SIGNAL_CONNECTION_CHANGE,
G_CALLBACK(service_connection_cb), self);
+
+ GtkWidget* avatar_icon = NULL;
// users
self->users.menu = GTK_MENU (dbusmenu_gtkmenu_new (INDICATOR_USERS_DBUS_NAME,
INDICATOR_USERS_DBUS_OBJECT));
@@ -140,8 +143,6 @@ indicator_session_init (IndicatorSession *self)
GTK_ICON_LOOKUP_FORCE_SIZE,
&error);
- GtkWidget* avatar_icon = NULL;
-
// I think the avatar image is available always but just in case have a fallback
if (error != NULL) {
g_warning ("Could not load the default avatar image for some reason");
@@ -192,19 +193,6 @@ indicator_session_init (IndicatorSession *self)
GtkAccelGroup * agroup = gtk_accel_group_new();
dbusmenu_gtkclient_set_accel_group(DBUSMENU_GTKCLIENT(devices_client), agroup);
-
- self->service_proxy_cancel = g_cancellable_new();
-
- g_dbus_proxy_new_for_bus (G_BUS_TYPE_SESSION,
- G_DBUS_PROXY_FLAGS_NONE,
- NULL,
- INDICATOR_SESSION_DBUS_NAME,
- INDICATOR_SESSION_SERVICE_DBUS_OBJECT,
- INDICATOR_SESSION_SERVICE_DBUS_IFACE,
- self->service_proxy_cancel,
- service_proxy_cb,
- self);
-
return;
}
@@ -249,9 +237,59 @@ indicator_session_finalize (GObject *object)
return;
}
-/* Callback from trying to create the proxy for the service, this
- could include starting the service. Sometime it'll fail and
- we'll try to start that dang service again! */
+static GList*
+indicator_session_get_entries (IndicatorObject* obj)
+{
+ g_return_val_if_fail(IS_INDICATOR_SESSION(obj), NULL);
+ IndicatorSession* self = INDICATOR_SESSION (obj);
+
+ GList * retval = NULL;
+
+ retval = g_list_prepend (retval, &self->users);
+ retval = g_list_prepend (retval, &self->devices);
+
+ if (retval != NULL) {
+ retval = g_list_reverse(retval);
+ }
+ return retval;
+}
+
+/* callback for the service manager state of being */
+static void
+service_connection_cb (IndicatorServiceManager * sm, gboolean connected, gpointer user_data)
+{
+ IndicatorSession * self = INDICATOR_SESSION (user_data);
+
+ if (connected) {
+ if (self->service_proxy != NULL){
+ // Its a reconnect !
+ // fetch the users's real name and return
+ g_dbus_proxy_call (self->service_proxy,
+ "GetUserRealName",
+ NULL,
+ G_DBUS_CALL_FLAGS_NONE,
+ -1,
+ NULL,
+ user_real_name_get_cb,
+ user_data);
+ return;
+ }
+
+ self->service_proxy_cancel = g_cancellable_new();
+ g_dbus_proxy_new_for_bus (G_BUS_TYPE_SESSION,
+ G_DBUS_PROXY_FLAGS_NONE,
+ NULL,
+ INDICATOR_SESSION_DBUS_NAME,
+ INDICATOR_SESSION_SERVICE_DBUS_OBJECT,
+ INDICATOR_SESSION_SERVICE_DBUS_IFACE,
+ self->service_proxy_cancel,
+ service_proxy_cb,
+ self);
+ }
+ return;
+}
+
+
static void
service_proxy_cb (GObject * object, GAsyncResult * res, gpointer user_data)
{
@@ -278,29 +316,20 @@ service_proxy_cb (GObject * object, GAsyncResult * res, gpointer user_data)
self->service_proxy = proxy;
g_signal_connect(proxy, "g-signal", G_CALLBACK(receive_signal), self);
-
+
+ // Fetch the user's real name for the user entry label
+ g_dbus_proxy_call (self->service_proxy,
+ "GetUserRealName",
+ NULL,
+ G_DBUS_CALL_FLAGS_NONE,
+ -1,
+ NULL,
+ user_real_name_get_cb,
+ user_data);
return;
}
-static GList*
-indicator_session_get_entries (IndicatorObject* obj)
-{
- g_return_val_if_fail(IS_INDICATOR_SESSION(obj), NULL);
- IndicatorSession* self = INDICATOR_SESSION (obj);
-
- GList * retval = NULL;
-
- retval = g_list_prepend (retval, &self->users);
- retval = g_list_prepend (retval, &self->devices);
-
- if (retval != NULL) {
- retval = g_list_reverse(retval);
- }
- return retval;
-}
-
-/* Builds an item with a hip little logged in icon. */
static gboolean
new_user_item (DbusmenuMenuitem * newitem,
DbusmenuMenuitem * parent,
@@ -346,20 +375,10 @@ user_real_name_get_cb (GObject * obj, GAsyncResult * res, gpointer user_data)
g_error_free (error);
return;
}
- indicator_session_update_users_label (self, result);
- return;
-}
-
-static void
-service_connection_cb (IndicatorServiceManager * sm, gboolean connected, gpointer user_data)
-{
- IndicatorSession * self = INDICATOR_SESSION (user_data);
-
- if (connected) {
- g_dbus_proxy_call(self->service_proxy, "GetUserRealName", NULL,
- G_DBUS_CALL_FLAGS_NONE, -1, NULL,
- user_real_name_get_cb, user_data);
- }
+
+ const gchar* username = NULL;
+ g_variant_get (result, "(s)", &username);
+ indicator_session_update_users_label (self, username);
return;
}
@@ -375,7 +394,9 @@ receive_signal (GDBusProxy * proxy,
IndicatorSession * self = INDICATOR_SESSION(user_data);
if (g_strcmp0(signal_name, "UserRealNameUpdated") == 0) {
- indicator_session_update_users_label (self, parameters);
+ const gchar* username = NULL;
+ g_variant_get (parameters, "(s)", &username);
+ indicator_session_update_users_label (self, username);
}
return;
}
@@ -559,25 +580,14 @@ build_menu_switch (DbusmenuMenuitem * newitem,
static void
indicator_session_update_users_label (IndicatorSession* self,
- GVariant * variant)
+ const gchar* name)
{
- const gchar* username = NULL;
- if (variant == NULL || g_variant_get_string(variant, NULL) == NULL ||
- g_variant_get_string(variant, NULL)[0] == '\0'){
- gtk_widget_hide(GTK_WIDGET(self->users.label));
- return;
- }
+ g_debug ("update users label");
- username = g_strdup (g_variant_get_string(variant, NULL));
-
- // Just in case protect again.
- if (username != NULL) {
- g_debug ("!!!!!!!!!!!!update users label: %s", username);
- gtk_label_set_text (self->users.label, username);
- gtk_widget_show(GTK_WIDGET(self->users.label));
- }
- else {
+ if (name == NULL){
gtk_widget_hide(GTK_WIDGET(self->users.label));
- }
+ return;
+ }
+ gtk_label_set_text (self->users.label, g_strdup(name));
+ gtk_widget_show(GTK_WIDGET(self->users.label));
}
-
diff --git a/src/session-dbus.c b/src/session-dbus.c
index 07cebf7..d28629b 100644
--- a/src/session-dbus.c
+++ b/src/session-dbus.c
@@ -231,12 +231,20 @@ session_dbus_new (void)
void
session_dbus_set_name (SessionDbus * session, const gchar * name)
{
+}
+
+void
+session_dbus_set_users_real_name (SessionDbus * session, const gchar * name)
+{
SessionDbusPrivate * priv = SESSION_DBUS_GET_PRIVATE(session);
GError * error = NULL;
if (priv->name != NULL) {
g_free(priv->name);
priv->name = NULL;
}
+
+ g_debug ("sesssion dbus set name with %s", name);
+
priv->name = g_strdup(name);
if (priv->bus != NULL) {
diff --git a/src/session-dbus.h b/src/session-dbus.h
index 792917b..377212b 100644
--- a/src/session-dbus.h
+++ b/src/session-dbus.h
@@ -48,7 +48,8 @@ struct _SessionDbus {
GType session_dbus_get_type (void);
SessionDbus * session_dbus_new (void);
-void session_dbus_set_name (SessionDbus * session, const gchar * name);
+void session_dbus_set_name (SessionDbus * session, const gchar * name);
+void session_dbus_set_users_real_name (SessionDbus * session, const gchar * name);
G_END_DECLS
diff --git a/src/session-service.c b/src/session-service.c
index d213b6d..2110241 100644
--- a/src/session-service.c
+++ b/src/session-service.c
@@ -541,7 +541,9 @@ rebuild_user_items (DbusmenuMenuitem *root,
USER_ITEM_PROP_IS_CURRENT_USER,
logged_in);
if (logged_in == TRUE){
- session_dbus_set_name (session_dbus, user->real_name);
+ g_debug ("about to set the users real name to %s for user %s",
+ user->real_name, user->user_name);
+ session_dbus_set_users_real_name (session_dbus, user->real_name);
}
dbusmenu_menuitem_child_append (root, mi);