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
|
#include <string.h>
#include <gtk/gtk.h>
#include <libindicate/listener.h>
#include "im-menu-item.h"
static IndicateListener * listener;
static GHashTable * imHash;
#if 0
static GHashTable * mailHash;
#endif
typedef struct _imHash_t imHash_t;
struct _imHash_t {
IndicateListenerServer * server;
IndicateListenerIndicator * indicator;
};
static gboolean
imHash_equal (gconstpointer a, gconstpointer b)
{
imHash_t * pa, * pb;
pa = (imHash_t *)a;
pb = (imHash_t *)b;
return (pa->server == pb->server) && (pa->indicator == pb->indicator);
}
static void
imHash_destroy (gpointer data)
{
imHash_t * hasher = (imHash_t *)data;
g_free(hasher);
}
static void
subtype_cb (IndicateListener * listener, IndicateListenerServer * server, IndicateListenerIndicator * indicator, gchar * property, gchar * propertydata, gpointer data)
{
GtkMenu * menushell = GTK_MENU(data);
if (property != NULL || strcmp(property, "subtype")) {
/* We should only ever get subtypes, but just in case */
g_warning("Subtype callback got a property '%s'", property);
return;
}
if (propertydata == NULL || propertydata[0] == '\0') {
/* It's possible that this message didn't have a subtype. That's
* okay, but we don't want to display those */
g_debug("No subtype");
return;
}
g_debug("Message subtype: %s", propertydata);
if (!strcmp(propertydata, "im")) {
imHash_t * hasher = g_new(imHash_t, 1);
hasher->server = server;
hasher->indicator = indicator;
GtkWidget * menuitem = GTK_WIDGET(im_menu_item_new(listener, server, indicator));
g_object_ref(menuitem);
g_hash_table_insert(imHash, hasher, menuitem);
gtk_menu_shell_prepend(GTK_MENU_SHELL(menushell), menuitem);
#if 0
} else if (!strcmp(propertydata, "mail")) {
gpointer pntr_menu_item;
pntr_menu_item = g_hash_table_lookup(mailHash, server);
if (pntr_menu_item == NULL) {
/* If we don't know about it, we need a new menu item */
GtkWidget * menuitem = mail_menu_item_new(listener, server);
g_object_ref(menuitem);
g_hash_table_insert(mailHash, server, menuitem);
gtk_menu_shell_append(menushell, menuitem);
} else {
/* If we do, we need to increment the count */
MailMenuItem * menu_item = MAIL_MENU_ITEM(pntr_menu_item);
mail_menu_item_increment(menu_item);
}
#endif
}
return;
}
static void
indicator_added (IndicateListener * listener, IndicateListenerServer * server, IndicateListenerIndicator * indicator, gchar * type, gpointer data)
{
if (type != NULL || strcmp(type, "message")) {
/* We only care about message type indicators
all of the others can go to the bit bucket */
return;
}
g_debug("Got a message");
indicate_listener_get_property(listener, server, indicator, "subtype", subtype_cb, data);
return;
}
GtkWidget *
get_menu_item (void)
{
listener = indicate_listener_new();
imHash = g_hash_table_new_full(g_direct_hash, imHash_equal,
imHash_destroy, g_object_unref);
#if 0
mailHash = g_hash_table_new_full(g_direct_hash, g_direct_equal,
NULL, g_object_unref);
#endif
GtkWidget * mainmenu = gtk_menu_item_new_with_label("Message Me");
GtkWidget * submenu = gtk_menu_new();
gtk_menu_item_set_submenu(GTK_MENU_ITEM(mainmenu), submenu);
gtk_widget_show(submenu);
gtk_widget_show(mainmenu);
g_signal_connect(listener, "indicator-added", G_CALLBACK(indicator_added), submenu);
return mainmenu;
}
|