aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-status-icon.c
blob: e46944e5b32dd09f79f36058358b65dedcf2b9f0 (plain) (blame)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Copyright (C) 2007 Collabora Ltd.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 * 
 * Authors: Xavier Claessens <xclaesse@gmail.com>
 */

#include <config.h>

#include <string.h>

#include <glib.h>
#include <gtk/gtk.h>

#include <libtelepathy/tp-helpers.h>

#include <libmissioncontrol/mission-control.h>

#include <libempathy/gossip-debug.h>
#include <libempathy/gossip-utils.h>

#include "empathy-status-icon.h"
#include "gossip-ui-utils.h"

#define GET_PRIV(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), \
               EMPATHY_TYPE_STATUS_ICON, EmpathyStatusIconPriv))

#define DEBUG_DOMAIN "StatusIcon"

struct _EmpathyStatusIconPriv {
    MissionControl *mc;
    GtkStatusIcon  *icon;
};

static void empathy_status_icon_class_init  (EmpathyStatusIconClass          *klass);
static void empathy_status_icon_init        (EmpathyStatusIcon               *icon);
static void status_icon_finalize            (GObject                         *object);
static void status_icon_presence_changed_cb (MissionControl                  *mc,
                         McPresence                       state,
                         EmpathyStatusIcon               *icon);
static void status_icon_activate_cb         (GtkStatusIcon                   *status_icon,
                         EmpathyStatusIcon               *icon);

enum {
    ACTIVATE,
    LAST_SIGNAL
};

static guint signals[LAST_SIGNAL];

G_DEFINE_TYPE (EmpathyStatusIcon, empathy_status_icon, G_TYPE_OBJECT);

static void
empathy_status_icon_class_init (EmpathyStatusIconClass *klass)
{
    GObjectClass *object_class = G_OBJECT_CLASS (klass);

    object_class->finalize = status_icon_finalize;

    signals[ACTIVATE] =
        g_signal_new ("activate",
                  G_TYPE_FROM_CLASS (klass),
                  G_SIGNAL_RUN_LAST,
                  0,
                  NULL, NULL,
                  g_cclosure_marshal_VOID__VOID,
                  G_TYPE_NONE,
                  0);

    g_type_class_add_private (object_class, sizeof (EmpathyStatusIconPriv));
}

static void
empathy_status_icon_init (EmpathyStatusIcon *icon)
{
    EmpathyStatusIconPriv *priv;
    McPresence             state;

    priv = GET_PRIV (icon);

    priv->mc = mission_control_new (tp_get_bus ());
    priv->icon = gtk_status_icon_new ();

    dbus_g_proxy_connect_signal (DBUS_G_PROXY (priv->mc),
                     "PresenceStatusActual",
                     G_CALLBACK (status_icon_presence_changed_cb),
                     icon, NULL);
    g_signal_connect (priv->icon, "activate",
              G_CALLBACK (status_icon_activate_cb),
              icon);

    state = mission_control_get_presence_actual (priv->mc, NULL);
    status_icon_presence_changed_cb (priv->mc, state, icon);
}

static void
status_icon_finalize (GObject *object)
{
    EmpathyStatusIconPriv *priv;

    priv = GET_PRIV (object);

    dbus_g_proxy_disconnect_signal (DBUS_G_PROXY (priv->mc),
                    "PresenceStatusActual",
                    G_CALLBACK (status_icon_presence_changed_cb),
                    object);
    g_signal_handlers_disconnect_by_func (priv->icon,
                          status_icon_activate_cb,
                          object);

    g_object_unref (priv->mc);
    g_object_unref (priv->icon);
}

EmpathyStatusIcon *
empathy_status_icon_new (void)
{
    return g_object_new (EMPATHY_TYPE_STATUS_ICON, NULL);
}

static void
status_icon_presence_changed_cb (MissionControl    *mc,
                 McPresence         state,
                 EmpathyStatusIcon *icon)
{
    EmpathyStatusIconPriv *priv;
    const gchar           *icon_name;
    gchar                 *status;

    priv = GET_PRIV (icon);

    icon_name = gossip_icon_name_for_presence_state (state);
    status = mission_control_get_presence_message_actual (priv->mc, NULL);
    if (G_STR_EMPTY (status)) {
        g_free (status);
        status = g_strdup (gossip_presence_state_get_default_status (state));
    }

    gtk_status_icon_set_from_icon_name (priv->icon, icon_name);
    gtk_status_icon_set_tooltip (priv->icon, status);

    g_free (status);
}

static void
status_icon_activate_cb (GtkStatusIcon     *status_icon,
             EmpathyStatusIcon *icon)
{
    g_signal_emit (icon, signals[ACTIVATE], 0);
}