aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-08-26 09:48:45 -0500
committerTed Gould <ted@canonical.com>2009-08-26 09:48:45 -0500
commit03ca8ad97b53334826abc317472932289b17f69f (patch)
tree1b83baa443b2ab5bb37377e790b6917d7b7e5f53
parent3e09c01a33e88d9789678adbdb57f1bfcbe44edd (diff)
downloadayatana-indicator-messages-03ca8ad97b53334826abc317472932289b17f69f.tar.gz
ayatana-indicator-messages-03ca8ad97b53334826abc317472932289b17f69f.tar.bz2
ayatana-indicator-messages-03ca8ad97b53334826abc317472932289b17f69f.zip
Building a proxy...
-rw-r--r--src/indicator-messages.c29
1 files changed, 26 insertions, 3 deletions
diff --git a/src/indicator-messages.c b/src/indicator-messages.c
index efb52b2..a7628b0 100644
--- a/src/indicator-messages.c
+++ b/src/indicator-messages.c
@@ -32,11 +32,34 @@ INDICATOR_SET_NAME("messages")
#include "dbus-data.h"
-static GtkWidget * main_image;
+static GtkWidget * main_image = NULL;
#define DESIGN_TEAM_SIZE design_team_size
static GtkIconSize design_team_size;
+static DBusGProxy * icon_proxy = NULL;
+
+gboolean
+setup_icon_proxy (gpointer userdata)
+{
+ DBusGConnection * connection = dbus_g_bus_get(DBUS_BUS_SESSION, NULL);
+ if (connection == NULL) {
+ g_warning("Unable to get session bus");
+ return FALSE; /* TRUE? */
+ }
+
+ icon_proxy = dbus_g_proxy_new_for_name(connection,
+ INDICATOR_MESSAGES_DBUS_NAME,
+ INDICATOR_MESSAGES_DBUS_SERVICE_OBJECT,
+ INDICATOR_MESSAGES_DBUS_SERVICE_INTERFACE);
+ if (icon_proxy == NULL) {
+ g_warning("Unable to get messages service interface.");
+ return FALSE;
+ }
+
+ return FALSE;
+}
+
GtkLabel *
get_label (void)
{
@@ -51,8 +74,6 @@ get_icon (void)
main_image = gtk_image_new_from_icon_name("indicator-messages", DESIGN_TEAM_SIZE);
gtk_widget_show(main_image);
- /* Need a proxy here to figure out when the icon changes */
-
return GTK_IMAGE(main_image);
}
@@ -76,6 +97,8 @@ get_menu (void)
return NULL;
}
+ g_idle_add(setup_icon_proxy, NULL);
+
return GTK_MENU(dbusmenu_gtkmenu_new(INDICATOR_MESSAGES_DBUS_NAME, INDICATOR_MESSAGES_DBUS_OBJECT));
}