aboutsummaryrefslogtreecommitdiff
path: root/src/status-service.c
blob: 68b56857808285099a1fcba08e75f64c78f26e9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70

#include <glib/gi18n.h>

#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"

typedef enum
{
  STATUS_SERVICE_STATUS_ONLINE,
  STATUS_SERVICE_STATUS_AWAY,
  STATUS_SERVICE_STATUS_DND,
  STATUS_SERVICE_STATUS_OFFLINE,
  /* Leave as last */
  STATUS_SERVICE_STATUS_LAST
}
StatusServiceStatus;

static const gchar * status_strings [STATUS_SERVICE_STATUS_LAST] = {
  /* STATUS_SERVICE_STATUS_ONLINE,   */ N_("Available"),
  /* STATUS_SERVICE_STATUS_AWAY,     */ N_("Away"),
  /* STATUS_SERVICE_STATUS_DND       */ N_("Busy"),
  /* STATUS_SERVICE_STATUS_OFFLINE,  */ N_("Offline")
};

static const gchar * status_icons[STATUS_SERVICE_STATUS_LAST] = {
  /* STATUS_SERVICE_STATUS_ONLINE, */ "user-online",
  /* STATUS_SERVICE_STATUS_AWAY, */   "user-away",
  /* STATUS_SERVICE_STATUS_DND, */    "user-busy",
  /* STATUS_SERVICE_STATUS_OFFLINE */ "user-offline"
};


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;

    if (!org_freedesktop_DBus_request_name(bus_proxy, INDICATOR_STATUS_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_STATUS_DBUS_OBJECT);
    dbusmenu_server_set_root(server, root_menuitem);

    mainloop = g_main_loop_new(NULL, FALSE);
    g_main_loop_run(mainloop);

    return 0;
}