aboutsummaryrefslogtreecommitdiff
path: root/src/users-service.c
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-06-09 16:58:52 -0500
committerTed Gould <ted@canonical.com>2009-06-09 16:58:52 -0500
commit21cc4e9079d0cf6b13f8232f10a265ce64fd260c (patch)
tree30786017eec9561a3fcfba21009a29c28f83df90 /src/users-service.c
parentee013228b486d5b49be2737e90f3e75aded90365 (diff)
downloadayatana-indicator-session-21cc4e9079d0cf6b13f8232f10a265ce64fd260c.tar.gz
ayatana-indicator-session-21cc4e9079d0cf6b13f8232f10a265ce64fd260c.tar.bz2
ayatana-indicator-session-21cc4e9079d0cf6b13f8232f10a265ce64fd260c.zip
Bringing up a dbusmenu item.
Diffstat (limited to 'src/users-service.c')
-rw-r--r--src/users-service.c37
1 files changed, 36 insertions, 1 deletions
diff --git a/src/users-service.c b/src/users-service.c
index 63590c7..39afe39 100644
--- a/src/users-service.c
+++ b/src/users-service.c
@@ -1,7 +1,42 @@
+#include <dbus/dbus-glib.h>
+#include <dbus/dbus-glib-bindings.h>
+
+#include <libdbusmenu-glib/server.h>
+#include <libdbusmenu-glib/menuitem.h>
+
+#include "dbus-shared-names.h"
+
+static DbusmenuMenuitem * root_menuitem = NULL;
+static GMainLoop * mainloop = NULL;
+
int
main (int argc, char ** argv)
{
+ g_type_init();
+
+ DBusGConnection * connection = dbus_g_bus_get(DBUS_BUS_SESSION, NULL);
+ DBusGProxy * bus_proxy = dbus_g_proxy_new_for_name(connection, DBUS_SERVICE_DBUS, DBUS_PATH_DBUS, DBUS_INTERFACE_DBUS);
+ GError * error = NULL;
+ guint nameret = 0;
- return 0;
+ if (!org_freedesktop_DBus_request_name(bus_proxy, INDICATOR_USERS_DBUS_NAME, 0, &nameret, &error)) {
+ g_error("Unable to call to request name");
+ return 1;
+ }
+
+ if (nameret != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER) {
+ g_error("Unable to get name");
+ return 1;
+ }
+
+ root_menuitem = dbusmenu_menuitem_new();
+ DbusmenuServer * server = dbusmenu_server_new(INDICATOR_USERS_DBUS_OBJECT);
+ dbusmenu_server_set_root(server, root_menuitem);
+
+ mainloop = g_main_loop_new(NULL, FALSE);
+ g_main_loop_run(mainloop);
+
+ return 0;
}
+