Mercurial > pidgin.yaz
annotate finch/gntblist.c @ 16935:49f66fab6b31
Change a string.
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Sun, 06 May 2007 21:40:29 +0000 |
parents | e79555933fc6 |
children | 9a568611fa4a |
rev | line source |
---|---|
15818 | 1 /** |
2 * @file gntblist.c GNT BuddyList API | |
16194
0f0832c13fcb
Rename the Doxygen group from gntui to finch and define the finch group
Richard Laager <rlaager@wiktel.com>
parents:
16106
diff
changeset
|
3 * @ingroup finch |
15818 | 4 * |
15871
66dff3dfdea6
Re-sed the copyright notices so they don't all talk about Purple.
Richard Laager <rlaager@wiktel.com>
parents:
15844
diff
changeset
|
5 * finch |
15818 | 6 * |
15871
66dff3dfdea6
Re-sed the copyright notices so they don't all talk about Purple.
Richard Laager <rlaager@wiktel.com>
parents:
15844
diff
changeset
|
7 * Finch is the legal property of its developers, whose names are too numerous |
15818 | 8 * to list here. Please refer to the COPYRIGHT file distributed with this |
9 * source distribution. | |
10 * | |
11 * This program is free software; you can redistribute it and/or modify | |
12 * it under the terms of the GNU General Public License as published by | |
13 * the Free Software Foundation; either version 2 of the License, or | |
14 * (at your option) any later version. | |
15 * | |
16 * This program is distributed in the hope that it will be useful, | |
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 * GNU General Public License for more details. | |
20 * | |
21 * You should have received a copy of the GNU General Public License | |
22 * along with this program; if not, write to the Free Software | |
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
24 */ | |
25 #include <account.h> | |
26 #include <blist.h> | |
27 #include <notify.h> | |
28 #include <request.h> | |
29 #include <savedstatuses.h> | |
30 #include <server.h> | |
31 #include <signal.h> | |
32 #include <status.h> | |
33 #include <util.h> | |
34 #include "debug.h" | |
35 | |
15823 | 36 #include "finch.h" |
15818 | 37 #include "gntbox.h" |
38 #include "gntcombobox.h" | |
39 #include "gntentry.h" | |
40 #include "gntft.h" | |
41 #include "gntlabel.h" | |
42 #include "gntline.h" | |
43 #include "gntmenu.h" | |
44 #include "gntmenuitem.h" | |
45 #include "gntmenuitemcheck.h" | |
46 #include "gntpounce.h" | |
47 #include "gnttree.h" | |
48 #include "gntutils.h" | |
49 #include "gntwindow.h" | |
50 | |
51 #include "gntblist.h" | |
52 #include "gntconv.h" | |
53 #include "gntstatus.h" | |
54 #include <string.h> | |
55 | |
16427
4999bbc52881
Works for me! Renames prefs: /core to /purple, /gaim/gtk to /pidgin, /gaim/gnt to /finch
Sean Egan <seanegan@gmail.com>
parents:
16276
diff
changeset
|
56 #define PREF_ROOT "/finch/blist" |
15818 | 57 #define TYPING_TIMEOUT 4000 |
58 | |
59 typedef struct | |
60 { | |
61 GntWidget *window; | |
62 GntWidget *tree; | |
63 | |
64 GntWidget *tooltip; | |
15823 | 65 PurpleBlistNode *tnode; /* Who is the tooltip being displayed for? */ |
15818 | 66 GList *tagged; /* A list of tagged blistnodes */ |
67 | |
68 GntWidget *context; | |
15823 | 69 PurpleBlistNode *cnode; |
15818 | 70 |
71 /* XXX: I am KISSing */ | |
72 GntWidget *status; /* Dropdown with the statuses */ | |
73 GntWidget *statustext; /* Status message */ | |
74 int typing; | |
75 | |
76 GntWidget *menu; | |
77 /* These are the menuitems that get regenerated */ | |
78 GntMenuItem *accounts; | |
79 GntMenuItem *plugins; | |
80 } FinchBlist; | |
81 | |
82 typedef enum | |
83 { | |
84 STATUS_PRIMITIVE = 0, | |
85 STATUS_SAVED_POPULAR, | |
86 STATUS_SAVED_ALL, | |
87 STATUS_SAVED_NEW | |
88 } StatusType; | |
89 | |
90 typedef struct | |
91 { | |
92 StatusType type; | |
93 union | |
94 { | |
15823 | 95 PurpleStatusPrimitive prim; |
96 PurpleSavedStatus *saved; | |
15818 | 97 } u; |
98 } StatusBoxItem; | |
99 | |
100 FinchBlist *ggblist; | |
101 | |
15823 | 102 static void add_buddy(PurpleBuddy *buddy, FinchBlist *ggblist); |
103 static void add_contact(PurpleContact *contact, FinchBlist *ggblist); | |
104 static void add_group(PurpleGroup *group, FinchBlist *ggblist); | |
105 static void add_chat(PurpleChat *chat, FinchBlist *ggblist); | |
106 static void add_node(PurpleBlistNode *node, FinchBlist *ggblist); | |
15818 | 107 static void draw_tooltip(FinchBlist *ggblist); |
108 static gboolean remove_typing_cb(gpointer null); | |
109 static void remove_peripherals(FinchBlist *ggblist); | |
15823 | 110 static const char * get_display_name(PurpleBlistNode *node); |
111 static void savedstatus_changed(PurpleSavedStatus *now, PurpleSavedStatus *old); | |
112 static void blist_show(PurpleBuddyList *list); | |
16575
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
113 static void update_node_display(PurpleBlistNode *buddy, FinchBlist *ggblist); |
15823 | 114 static void update_buddy_display(PurpleBuddy *buddy, FinchBlist *ggblist); |
16782
d7ad8013b914
Fix this spectacularly braindead code. I must've been on the good stuff when I wrote this. Fixes #364.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16663
diff
changeset
|
115 static void account_signed_on_cb(PurpleConnection *pc, gpointer null); |
15818 | 116 |
117 /* Sort functions */ | |
16491
0b97b224a829
Never change the orders of chats or the groups.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16442
diff
changeset
|
118 static int blist_node_compare_position(PurpleBlistNode *n1, PurpleBlistNode *n2); |
15823 | 119 static int blist_node_compare_text(PurpleBlistNode *n1, PurpleBlistNode *n2); |
120 static int blist_node_compare_status(PurpleBlistNode *n1, PurpleBlistNode *n2); | |
121 static int blist_node_compare_log(PurpleBlistNode *n1, PurpleBlistNode *n2); | |
15818 | 122 |
123 static gboolean | |
15823 | 124 is_contact_online(PurpleContact *contact) |
15818 | 125 { |
15823 | 126 PurpleBlistNode *node; |
127 for (node = ((PurpleBlistNode*)contact)->child; node; node = node->next) { | |
128 if (PURPLE_BUDDY_IS_ONLINE((PurpleBuddy*)node)) | |
15818 | 129 return TRUE; |
130 } | |
131 return FALSE; | |
132 } | |
133 | |
134 static gboolean | |
15823 | 135 is_group_online(PurpleGroup *group) |
15818 | 136 { |
15823 | 137 PurpleBlistNode *node; |
138 for (node = ((PurpleBlistNode*)group)->child; node; node = node->next) { | |
139 if (PURPLE_BLIST_NODE_IS_CHAT(node)) | |
15818 | 140 return TRUE; |
15823 | 141 else if (is_contact_online((PurpleContact*)node)) |
15818 | 142 return TRUE; |
143 } | |
144 return FALSE; | |
145 } | |
146 | |
147 static void | |
15823 | 148 new_node(PurpleBlistNode *node) |
15818 | 149 { |
150 } | |
151 | |
15823 | 152 static void add_node(PurpleBlistNode *node, FinchBlist *ggblist) |
15818 | 153 { |
15823 | 154 if (PURPLE_BLIST_NODE_IS_BUDDY(node)) |
155 add_buddy((PurpleBuddy*)node, ggblist); | |
156 else if (PURPLE_BLIST_NODE_IS_CONTACT(node)) | |
157 add_contact((PurpleContact*)node, ggblist); | |
158 else if (PURPLE_BLIST_NODE_IS_GROUP(node)) | |
159 add_group((PurpleGroup*)node, ggblist); | |
160 else if (PURPLE_BLIST_NODE_IS_CHAT(node)) | |
161 add_chat((PurpleChat *)node, ggblist); | |
15818 | 162 draw_tooltip(ggblist); |
163 } | |
164 | |
165 static void | |
166 remove_tooltip(FinchBlist *ggblist) | |
167 { | |
168 gnt_widget_destroy(ggblist->tooltip); | |
169 ggblist->tooltip = NULL; | |
170 ggblist->tnode = NULL; | |
171 } | |
172 | |
173 static void | |
15823 | 174 node_remove(PurpleBuddyList *list, PurpleBlistNode *node) |
15818 | 175 { |
176 FinchBlist *ggblist = list->ui_data; | |
177 | |
178 if (ggblist == NULL || node->ui_data == NULL) | |
179 return; | |
180 | |
181 gnt_tree_remove(GNT_TREE(ggblist->tree), node); | |
182 node->ui_data = NULL; | |
183 if (ggblist->tagged) | |
184 ggblist->tagged = g_list_remove(ggblist->tagged, node); | |
185 | |
15823 | 186 if (PURPLE_BLIST_NODE_IS_BUDDY(node)) { |
187 PurpleContact *contact = (PurpleContact*)node->parent; | |
188 if ((!purple_prefs_get_bool(PREF_ROOT "/showoffline") && !is_contact_online(contact)) || | |
15818 | 189 contact->currentsize < 1) |
15823 | 190 node_remove(list, (PurpleBlistNode*)contact); |
16575
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
191 } else if (!PURPLE_BLIST_NODE_IS_GROUP(node)) { |
15823 | 192 PurpleGroup *group = (PurpleGroup*)node->parent; |
193 if ((!purple_prefs_get_bool(PREF_ROOT "/showoffline") && !is_group_online(group)) || | |
15818 | 194 group->currentsize < 1) |
195 node_remove(list, node->parent); | |
196 for (node = node->child; node; node = node->next) | |
197 node->ui_data = NULL; | |
16575
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
198 } else { |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
199 for (node = node->child; node; node = node->next) |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
200 node_remove(list, node); |
15818 | 201 } |
202 | |
203 draw_tooltip(ggblist); | |
204 } | |
205 | |
206 static void | |
15823 | 207 node_update(PurpleBuddyList *list, PurpleBlistNode *node) |
15818 | 208 { |
209 /* It really looks like this should never happen ... but it does. | |
210 This will at least emit a warning to the log when it | |
211 happens, so maybe someone will figure it out. */ | |
212 g_return_if_fail(node != NULL); | |
213 | |
214 if (list->ui_data == NULL) | |
215 return; /* XXX: this is probably the place to auto-join chats */ | |
216 | |
217 if (node->ui_data != NULL) { | |
218 gnt_tree_change_text(GNT_TREE(ggblist->tree), node, | |
219 0, get_display_name(node)); | |
220 gnt_tree_sort_row(GNT_TREE(ggblist->tree), node); | |
221 } | |
222 | |
15823 | 223 if (PURPLE_BLIST_NODE_IS_BUDDY(node)) { |
224 PurpleBuddy *buddy = (PurpleBuddy*)node; | |
225 if (purple_account_is_connected(buddy->account) && | |
226 (PURPLE_BUDDY_IS_ONLINE(buddy) || purple_prefs_get_bool(PREF_ROOT "/showoffline"))) | |
227 add_node((PurpleBlistNode*)buddy, list->ui_data); | |
15818 | 228 else |
15823 | 229 node_remove(purple_get_blist(), node); |
15818 | 230 |
231 node_update(list, node->parent); | |
15823 | 232 } else if (PURPLE_BLIST_NODE_IS_CHAT(node)) { |
233 add_chat((PurpleChat *)node, list->ui_data); | |
234 } else if (PURPLE_BLIST_NODE_IS_CONTACT(node)) { | |
235 PurpleContact *contact = (PurpleContact*)node; | |
236 if ((!purple_prefs_get_bool(PREF_ROOT "/showoffline") && !is_contact_online(contact)) || | |
15818 | 237 contact->currentsize < 1) |
15823 | 238 node_remove(purple_get_blist(), node); |
16575
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
239 else { |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
240 if (node->ui_data == NULL) { |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
241 /* The core seems to expect the UI to add the buddies. */ |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
242 for (node = node->child; node; node = node->next) |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
243 add_node(node, list->ui_data); |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
244 } |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
245 } |
15823 | 246 } else if (PURPLE_BLIST_NODE_IS_GROUP(node)) { |
247 PurpleGroup *group = (PurpleGroup*)node; | |
248 if ((!purple_prefs_get_bool(PREF_ROOT "/showoffline") && !is_group_online(group)) || | |
15818 | 249 group->currentsize < 1) |
250 node_remove(list, node); | |
16575
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
251 else |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
252 add_node(node, list->ui_data); |
15818 | 253 } |
254 } | |
255 | |
256 static void | |
15823 | 257 new_list(PurpleBuddyList *list) |
15818 | 258 { |
259 if (ggblist) | |
260 return; | |
261 | |
262 ggblist = g_new0(FinchBlist, 1); | |
263 list->ui_data = ggblist; | |
264 } | |
265 | |
266 static void | |
15823 | 267 add_buddy_cb(void *data, PurpleRequestFields *allfields) |
15818 | 268 { |
15823 | 269 const char *username = purple_request_fields_get_string(allfields, "screenname"); |
270 const char *alias = purple_request_fields_get_string(allfields, "alias"); | |
271 const char *group = purple_request_fields_get_string(allfields, "group"); | |
272 PurpleAccount *account = purple_request_fields_get_account(allfields, "account"); | |
15818 | 273 const char *error = NULL; |
15823 | 274 PurpleGroup *grp; |
275 PurpleBuddy *buddy; | |
15818 | 276 |
277 if (!username) | |
278 error = _("You must provide a screename for the buddy."); | |
279 else if (!group) | |
280 error = _("You must provide a group."); | |
281 else if (!account) | |
282 error = _("You must select an account."); | |
283 | |
284 if (error) | |
285 { | |
15823 | 286 purple_notify_error(NULL, _("Error"), _("Error adding buddy"), error); |
15818 | 287 return; |
288 } | |
289 | |
15823 | 290 grp = purple_find_group(group); |
15818 | 291 if (!grp) |
292 { | |
15823 | 293 grp = purple_group_new(group); |
294 purple_blist_add_group(grp, NULL); | |
15818 | 295 } |
296 | |
15823 | 297 buddy = purple_buddy_new(account, username, alias); |
298 purple_blist_add_buddy(buddy, NULL, grp, NULL); | |
299 purple_account_add_buddy(account, buddy); | |
15818 | 300 } |
301 | |
302 static void | |
15823 | 303 finch_request_add_buddy(PurpleAccount *account, const char *username, const char *grp, const char *alias) |
15818 | 304 { |
15823 | 305 PurpleRequestFields *fields = purple_request_fields_new(); |
306 PurpleRequestFieldGroup *group = purple_request_field_group_new(NULL); | |
307 PurpleRequestField *field; | |
15818 | 308 |
15823 | 309 purple_request_fields_add_group(fields, group); |
15818 | 310 |
15823 | 311 field = purple_request_field_string_new("screenname", _("Screen Name"), username, FALSE); |
312 purple_request_field_group_add_field(group, field); | |
15818 | 313 |
15823 | 314 field = purple_request_field_string_new("alias", _("Alias"), alias, FALSE); |
315 purple_request_field_group_add_field(group, field); | |
15818 | 316 |
15823 | 317 field = purple_request_field_string_new("group", _("Group"), grp, FALSE); |
318 purple_request_field_group_add_field(group, field); | |
15844
e74c2488448b
Group autocomplete for buddy adding
Richard Nelson <wabz@pidgin.im>
parents:
15823
diff
changeset
|
319 purple_request_field_set_type_hint(field, "group"); |
15818 | 320 |
15823 | 321 field = purple_request_field_account_new("account", _("Account"), NULL); |
322 purple_request_field_account_set_show_all(field, FALSE); | |
15818 | 323 if (account) |
15823 | 324 purple_request_field_account_set_value(field, account); |
325 purple_request_field_group_add_field(group, field); | |
15818 | 326 |
15823 | 327 purple_request_fields(NULL, _("Add Buddy"), NULL, _("Please enter buddy information."), |
16442
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
328 fields, |
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
329 _("Add"), G_CALLBACK(add_buddy_cb), |
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
330 _("Cancel"), NULL, |
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
331 account, NULL, NULL, |
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
332 NULL); |
15818 | 333 } |
334 | |
335 static void | |
15823 | 336 add_chat_cb(void *data, PurpleRequestFields *allfields) |
15818 | 337 { |
15823 | 338 PurpleAccount *account; |
15818 | 339 const char *alias, *name, *group; |
15823 | 340 PurpleChat *chat; |
341 PurpleGroup *grp; | |
15818 | 342 GHashTable *hash = NULL; |
15823 | 343 PurpleConnection *gc; |
15818 | 344 |
15823 | 345 account = purple_request_fields_get_account(allfields, "account"); |
346 name = purple_request_fields_get_string(allfields, "name"); | |
347 alias = purple_request_fields_get_string(allfields, "alias"); | |
348 group = purple_request_fields_get_string(allfields, "group"); | |
15818 | 349 |
15823 | 350 if (!purple_account_is_connected(account) || !name || !*name) |
15818 | 351 return; |
352 | |
353 if (!group || !*group) | |
354 group = _("Chats"); | |
355 | |
15823 | 356 gc = purple_account_get_connection(account); |
15818 | 357 |
15823 | 358 if (PURPLE_PLUGIN_PROTOCOL_INFO(gc->prpl)->chat_info_defaults != NULL) |
359 hash = PURPLE_PLUGIN_PROTOCOL_INFO(gc->prpl)->chat_info_defaults(gc, name); | |
15818 | 360 |
15823 | 361 chat = purple_chat_new(account, name, hash); |
15818 | 362 |
363 if (chat != NULL) { | |
15823 | 364 if ((grp = purple_find_group(group)) == NULL) { |
365 grp = purple_group_new(group); | |
366 purple_blist_add_group(grp, NULL); | |
15818 | 367 } |
15823 | 368 purple_blist_add_chat(chat, grp, NULL); |
369 purple_blist_alias_chat(chat, alias); | |
15818 | 370 } |
371 } | |
372 | |
373 static void | |
15823 | 374 finch_request_add_chat(PurpleAccount *account, PurpleGroup *grp, const char *alias, const char *name) |
15818 | 375 { |
15823 | 376 PurpleRequestFields *fields = purple_request_fields_new(); |
377 PurpleRequestFieldGroup *group = purple_request_field_group_new(NULL); | |
378 PurpleRequestField *field; | |
15818 | 379 |
15823 | 380 purple_request_fields_add_group(fields, group); |
15818 | 381 |
15823 | 382 field = purple_request_field_account_new("account", _("Account"), NULL); |
383 purple_request_field_account_set_show_all(field, FALSE); | |
15818 | 384 if (account) |
15823 | 385 purple_request_field_account_set_value(field, account); |
386 purple_request_field_group_add_field(group, field); | |
15818 | 387 |
15823 | 388 field = purple_request_field_string_new("name", _("Name"), name, FALSE); |
389 purple_request_field_group_add_field(group, field); | |
15818 | 390 |
15823 | 391 field = purple_request_field_string_new("alias", _("Alias"), alias, FALSE); |
392 purple_request_field_group_add_field(group, field); | |
15818 | 393 |
15823 | 394 field = purple_request_field_string_new("group", _("Group"), grp ? grp->name : NULL, FALSE); |
395 purple_request_field_group_add_field(group, field); | |
15818 | 396 |
15823 | 397 purple_request_fields(NULL, _("Add Chat"), NULL, |
15818 | 398 _("You can edit more information from the context menu later."), |
16442
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
399 fields, _("Add"), G_CALLBACK(add_chat_cb), _("Cancel"), NULL, |
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
400 NULL, NULL, NULL, |
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
401 NULL); |
15818 | 402 } |
403 | |
404 static void | |
405 add_group_cb(gpointer null, const char *group) | |
406 { | |
15823 | 407 PurpleGroup *grp; |
15818 | 408 |
409 if (!group || !*group) | |
410 { | |
15823 | 411 purple_notify_error(NULL, _("Error"), _("Error adding group"), |
15818 | 412 _("You must give a name for the group to add.")); |
413 return; | |
414 } | |
415 | |
15823 | 416 grp = purple_find_group(group); |
15818 | 417 if (!grp) |
418 { | |
15823 | 419 grp = purple_group_new(group); |
420 purple_blist_add_group(grp, NULL); | |
15818 | 421 } |
422 else | |
423 { | |
15823 | 424 purple_notify_error(NULL, _("Error"), _("Error adding group"), |
15818 | 425 _("A group with the name already exists.")); |
426 } | |
427 } | |
428 | |
429 static void | |
430 finch_request_add_group() | |
431 { | |
15823 | 432 purple_request_input(NULL, _("Add Group"), NULL, _("Enter the name of the group"), |
15818 | 433 NULL, FALSE, FALSE, NULL, |
16442
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
434 _("Add"), G_CALLBACK(add_group_cb), _("Cancel"), NULL, |
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
435 NULL, NULL, NULL, |
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
436 NULL); |
15818 | 437 } |
438 | |
15823 | 439 static PurpleBlistUiOps blist_ui_ops = |
15818 | 440 { |
441 new_list, | |
442 new_node, | |
443 blist_show, | |
444 node_update, | |
445 node_remove, | |
446 NULL, | |
447 NULL, | |
448 .request_add_buddy = finch_request_add_buddy, | |
449 .request_add_chat = finch_request_add_chat, | |
450 .request_add_group = finch_request_add_group | |
451 }; | |
452 | |
453 static gpointer | |
454 finch_blist_get_handle() | |
455 { | |
456 static int handle; | |
457 | |
458 return &handle; | |
459 } | |
460 | |
461 static void | |
15823 | 462 add_group(PurpleGroup *group, FinchBlist *ggblist) |
15818 | 463 { |
15823 | 464 PurpleBlistNode *node = (PurpleBlistNode *)group; |
15818 | 465 if (node->ui_data) |
466 return; | |
467 node->ui_data = gnt_tree_add_row_after(GNT_TREE(ggblist->tree), group, | |
468 gnt_tree_create_row(GNT_TREE(ggblist->tree), get_display_name(node)), NULL, NULL); | |
16105
1983ecd15174
Remember the collapsed state of groups in the blist
Richard Nelson <wabz@pidgin.im>
parents:
15931
diff
changeset
|
469 gnt_tree_set_expanded(GNT_TREE(ggblist->tree), node, |
1983ecd15174
Remember the collapsed state of groups in the blist
Richard Nelson <wabz@pidgin.im>
parents:
15931
diff
changeset
|
470 !purple_blist_node_get_bool(node, "collapsed")); |
15818 | 471 } |
472 | |
473 static const char * | |
15823 | 474 get_display_name(PurpleBlistNode *node) |
15818 | 475 { |
476 static char text[2096]; | |
477 char status[8] = " "; | |
478 const char *name = NULL; | |
479 | |
15823 | 480 if (PURPLE_BLIST_NODE_IS_CONTACT(node)) |
481 node = (PurpleBlistNode*)purple_contact_get_priority_buddy((PurpleContact*)node); /* XXX: this can return NULL?! */ | |
15818 | 482 |
483 if (node == NULL) | |
484 return NULL; | |
485 | |
15823 | 486 if (PURPLE_BLIST_NODE_IS_BUDDY(node)) |
15818 | 487 { |
15823 | 488 PurpleBuddy *buddy = (PurpleBuddy *)node; |
489 PurpleStatusPrimitive prim; | |
490 PurplePresence *presence; | |
491 PurpleStatus *now; | |
15818 | 492 gboolean ascii = gnt_ascii_only(); |
493 | |
15823 | 494 presence = purple_buddy_get_presence(buddy); |
495 now = purple_presence_get_active_status(presence); | |
15818 | 496 |
15823 | 497 prim = purple_status_type_get_primitive(purple_status_get_type(now)); |
15818 | 498 |
499 switch(prim) | |
500 { | |
15823 | 501 case PURPLE_STATUS_OFFLINE: |
15818 | 502 strncpy(status, ascii ? "x" : "⊗", sizeof(status) - 1); |
503 break; | |
15823 | 504 case PURPLE_STATUS_AVAILABLE: |
15818 | 505 strncpy(status, ascii ? "o" : "â—¯", sizeof(status) - 1); |
506 break; | |
507 default: | |
508 strncpy(status, ascii ? "." : "⊖", sizeof(status) - 1); | |
509 break; | |
510 } | |
15823 | 511 name = purple_buddy_get_alias(buddy); |
15818 | 512 } |
15823 | 513 else if (PURPLE_BLIST_NODE_IS_CHAT(node)) |
15818 | 514 { |
15823 | 515 PurpleChat *chat = (PurpleChat*)node; |
516 name = purple_chat_get_name(chat); | |
15818 | 517 |
518 strncpy(status, "~", sizeof(status) - 1); | |
519 } | |
15823 | 520 else if (PURPLE_BLIST_NODE_IS_GROUP(node)) |
521 return ((PurpleGroup*)node)->name; | |
15818 | 522 |
523 snprintf(text, sizeof(text) - 1, "%s %s", status, name); | |
524 | |
525 return text; | |
526 } | |
527 | |
528 static void | |
15823 | 529 add_chat(PurpleChat *chat, FinchBlist *ggblist) |
15818 | 530 { |
15823 | 531 PurpleGroup *group; |
532 PurpleBlistNode *node = (PurpleBlistNode *)chat; | |
15818 | 533 if (node->ui_data) |
534 return; | |
15823 | 535 if (!purple_account_is_connected(chat->account)) |
15818 | 536 return; |
537 | |
15823 | 538 group = purple_chat_get_group(chat); |
539 add_node((PurpleBlistNode*)group, ggblist); | |
15818 | 540 |
541 node->ui_data = gnt_tree_add_row_after(GNT_TREE(ggblist->tree), chat, | |
542 gnt_tree_create_row(GNT_TREE(ggblist->tree), get_display_name(node)), | |
543 group, NULL); | |
544 } | |
545 | |
546 static void | |
15823 | 547 add_contact(PurpleContact *contact, FinchBlist *ggblist) |
15818 | 548 { |
15823 | 549 PurpleGroup *group; |
550 PurpleBlistNode *node = (PurpleBlistNode*)contact; | |
15818 | 551 const char *name; |
552 | |
553 if (node->ui_data) | |
554 return; | |
555 | |
556 name = get_display_name(node); | |
557 if (name == NULL) | |
558 return; | |
559 | |
15823 | 560 group = (PurpleGroup*)node->parent; |
561 add_node((PurpleBlistNode*)group, ggblist); | |
15818 | 562 |
563 node->ui_data = gnt_tree_add_row_after(GNT_TREE(ggblist->tree), contact, | |
564 gnt_tree_create_row(GNT_TREE(ggblist->tree), name), | |
565 group, NULL); | |
566 | |
567 gnt_tree_set_expanded(GNT_TREE(ggblist->tree), contact, FALSE); | |
568 } | |
569 | |
570 static void | |
15823 | 571 add_buddy(PurpleBuddy *buddy, FinchBlist *ggblist) |
15818 | 572 { |
15823 | 573 PurpleContact *contact; |
574 PurpleBlistNode *node = (PurpleBlistNode *)buddy; | |
15818 | 575 if (node->ui_data) |
576 return; | |
577 | |
15823 | 578 contact = (PurpleContact*)node->parent; |
15818 | 579 if (!contact) /* When a new buddy is added and show-offline is set */ |
580 return; | |
15823 | 581 add_node((PurpleBlistNode*)contact, ggblist); |
15818 | 582 |
583 node->ui_data = gnt_tree_add_row_after(GNT_TREE(ggblist->tree), buddy, | |
584 gnt_tree_create_row(GNT_TREE(ggblist->tree), get_display_name(node)), | |
585 contact, NULL); | |
15823 | 586 if (purple_presence_is_idle(purple_buddy_get_presence(buddy))) { |
15818 | 587 gnt_tree_set_row_flags(GNT_TREE(ggblist->tree), buddy, GNT_TEXT_FLAG_DIM); |
588 gnt_tree_set_row_flags(GNT_TREE(ggblist->tree), contact, GNT_TEXT_FLAG_DIM); | |
589 } else { | |
590 gnt_tree_set_row_flags(GNT_TREE(ggblist->tree), buddy, 0); | |
591 gnt_tree_set_row_flags(GNT_TREE(ggblist->tree), contact, 0); | |
592 } | |
593 } | |
594 | |
595 #if 0 | |
596 static void | |
15823 | 597 buddy_signed_on(PurpleBuddy *buddy, FinchBlist *ggblist) |
15818 | 598 { |
15823 | 599 add_node((PurpleBlistNode*)buddy, ggblist); |
15818 | 600 } |
601 | |
602 static void | |
15823 | 603 buddy_signed_off(PurpleBuddy *buddy, FinchBlist *ggblist) |
15818 | 604 { |
15823 | 605 node_remove(purple_get_blist(), (PurpleBlistNode*)buddy); |
15818 | 606 } |
607 #endif | |
608 | |
15823 | 609 PurpleBlistUiOps *finch_blist_get_ui_ops() |
15818 | 610 { |
611 return &blist_ui_ops; | |
612 } | |
613 | |
614 static void | |
615 selection_activate(GntWidget *widget, FinchBlist *ggblist) | |
616 { | |
617 GntTree *tree = GNT_TREE(ggblist->tree); | |
15823 | 618 PurpleBlistNode *node = gnt_tree_get_selection_data(tree); |
15818 | 619 |
620 if (!node) | |
621 return; | |
622 | |
15823 | 623 if (PURPLE_BLIST_NODE_IS_CONTACT(node)) |
624 node = (PurpleBlistNode*)purple_contact_get_priority_buddy((PurpleContact*)node); | |
15818 | 625 |
15823 | 626 if (PURPLE_BLIST_NODE_IS_BUDDY(node)) |
15818 | 627 { |
15823 | 628 PurpleBuddy *buddy = (PurpleBuddy *)node; |
629 PurpleConversation *conv = purple_conversation_new(PURPLE_CONV_TYPE_IM, | |
630 purple_buddy_get_account(buddy), | |
631 purple_buddy_get_name(buddy)); | |
15818 | 632 finch_conversation_set_active(conv); |
633 } | |
15823 | 634 else if (PURPLE_BLIST_NODE_IS_CHAT(node)) |
15818 | 635 { |
15823 | 636 PurpleChat *chat = (PurpleChat*)node; |
15818 | 637 serv_join_chat(chat->account->gc, chat->components); |
638 } | |
639 } | |
640 | |
641 static void | |
642 context_menu_callback(GntMenuItem *item, gpointer data) | |
643 { | |
15823 | 644 PurpleMenuAction *action = data; |
645 PurpleBlistNode *node = ggblist->cnode; | |
15818 | 646 if (action) { |
15823 | 647 void (*callback)(PurpleBlistNode *, gpointer); |
648 callback = (void (*)(PurpleBlistNode *, gpointer))action->callback; | |
15818 | 649 if (callback) |
650 callback(action->data, node); | |
651 else | |
652 return; | |
653 } | |
654 } | |
655 | |
656 static void | |
15823 | 657 gnt_append_menu_action(GntMenu *menu, PurpleMenuAction *action, gpointer parent) |
15818 | 658 { |
659 GList *list; | |
660 GntMenuItem *item; | |
661 | |
662 if (action == NULL) | |
663 return; | |
664 | |
665 item = gnt_menuitem_new(action->label); | |
666 if (action->callback) | |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15871
diff
changeset
|
667 gnt_menuitem_set_callback(GNT_MENU_ITEM(item), context_menu_callback, action); |
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15871
diff
changeset
|
668 gnt_menu_add_item(menu, GNT_MENU_ITEM(item)); |
15818 | 669 |
670 if (action->children) { | |
671 GntWidget *sub = gnt_menu_new(GNT_MENU_POPUP); | |
672 gnt_menuitem_set_submenu(item, GNT_MENU(sub)); | |
673 for (list = action->children; list; list = list->next) | |
674 gnt_append_menu_action(GNT_MENU(sub), list->data, action); | |
675 } | |
676 } | |
677 | |
678 static void | |
15823 | 679 append_proto_menu(GntMenu *menu, PurpleConnection *gc, PurpleBlistNode *node) |
15818 | 680 { |
681 GList *list; | |
15823 | 682 PurplePluginProtocolInfo *prpl_info = PURPLE_PLUGIN_PROTOCOL_INFO(gc->prpl); |
15818 | 683 |
684 if(!prpl_info || !prpl_info->blist_node_menu) | |
685 return; | |
686 | |
687 for(list = prpl_info->blist_node_menu(node); list; | |
688 list = g_list_delete_link(list, list)) | |
689 { | |
15823 | 690 PurpleMenuAction *act = (PurpleMenuAction *) list->data; |
15818 | 691 act->data = node; |
692 gnt_append_menu_action(menu, act, NULL); | |
693 } | |
694 } | |
695 | |
696 static void | |
15823 | 697 add_custom_action(GntMenu *menu, const char *label, PurpleCallback callback, |
15818 | 698 gpointer data) |
699 { | |
15823 | 700 PurpleMenuAction *action = purple_menu_action_new(label, callback, data, NULL); |
15818 | 701 gnt_append_menu_action(menu, action, NULL); |
702 g_signal_connect_swapped(G_OBJECT(menu), "destroy", | |
15823 | 703 G_CALLBACK(purple_menu_action_free), action); |
15818 | 704 } |
705 | |
706 static void | |
15823 | 707 chat_components_edit_ok(PurpleChat *chat, PurpleRequestFields *allfields) |
15818 | 708 { |
709 GList *groups, *fields; | |
710 | |
15823 | 711 for (groups = purple_request_fields_get_groups(allfields); groups; groups = groups->next) { |
712 fields = purple_request_field_group_get_fields(groups->data); | |
15818 | 713 for (; fields; fields = fields->next) { |
15823 | 714 PurpleRequestField *field = fields->data; |
15818 | 715 const char *id; |
716 char *val; | |
717 | |
15823 | 718 id = purple_request_field_get_id(field); |
719 if (purple_request_field_get_type(field) == PURPLE_REQUEST_FIELD_INTEGER) | |
720 val = g_strdup_printf("%d", purple_request_field_int_get_value(field)); | |
15818 | 721 else |
15823 | 722 val = g_strdup(purple_request_field_string_get_value(field)); |
15818 | 723 |
724 g_hash_table_replace(chat->components, g_strdup(id), val); /* val should not be free'd */ | |
725 } | |
726 } | |
727 } | |
728 | |
729 static void | |
15823 | 730 chat_components_edit(PurpleChat *chat, PurpleBlistNode *selected) |
15818 | 731 { |
15823 | 732 PurpleRequestFields *fields = purple_request_fields_new(); |
733 PurpleRequestFieldGroup *group = purple_request_field_group_new(NULL); | |
734 PurpleRequestField *field; | |
15818 | 735 GList *parts, *iter; |
736 struct proto_chat_entry *pce; | |
737 | |
15823 | 738 purple_request_fields_add_group(fields, group); |
15818 | 739 |
15823 | 740 parts = PURPLE_PLUGIN_PROTOCOL_INFO(chat->account->gc->prpl)->chat_info(chat->account->gc); |
15818 | 741 |
742 for (iter = parts; iter; iter = iter->next) { | |
743 pce = iter->data; | |
744 if (pce->is_int) { | |
745 int val; | |
746 const char *str = g_hash_table_lookup(chat->components, pce->identifier); | |
747 if (!str || sscanf(str, "%d", &val) != 1) | |
748 val = pce->min; | |
15823 | 749 field = purple_request_field_int_new(pce->identifier, pce->label, val); |
15818 | 750 } else { |
15823 | 751 field = purple_request_field_string_new(pce->identifier, pce->label, |
15818 | 752 g_hash_table_lookup(chat->components, pce->identifier), FALSE); |
753 } | |
754 | |
15823 | 755 purple_request_field_group_add_field(group, field); |
15818 | 756 g_free(pce); |
757 } | |
758 | |
759 g_list_free(parts); | |
760 | |
15823 | 761 purple_request_fields(NULL, _("Edit Chat"), NULL, _("Please Update the necessary fields."), |
16442
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
762 fields, _("Edit"), G_CALLBACK(chat_components_edit_ok), _("Cancel"), NULL, |
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
763 NULL, NULL, NULL, |
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
764 chat); |
15818 | 765 } |
766 | |
767 static void | |
768 autojoin_toggled(GntMenuItem *item, gpointer data) | |
769 { | |
15823 | 770 PurpleMenuAction *action = data; |
771 purple_blist_node_set_bool(action->data, "gnt-autojoin", | |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15871
diff
changeset
|
772 gnt_menuitem_check_get_checked(GNT_MENU_ITEM_CHECK(item))); |
15818 | 773 } |
774 | |
775 static void | |
15823 | 776 create_chat_menu(GntMenu *menu, PurpleChat *chat) |
15818 | 777 { |
15823 | 778 PurpleMenuAction *action = purple_menu_action_new(_("Auto-join"), NULL, chat, NULL); |
15818 | 779 GntMenuItem *check = gnt_menuitem_check_new(action->label); |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15871
diff
changeset
|
780 gnt_menuitem_check_set_checked(GNT_MENU_ITEM_CHECK(check), |
15823 | 781 purple_blist_node_get_bool((PurpleBlistNode*)chat, "gnt-autojoin")); |
15818 | 782 gnt_menu_add_item(menu, check); |
783 gnt_menuitem_set_callback(check, autojoin_toggled, action); | |
784 g_signal_connect_swapped(G_OBJECT(menu), "destroy", | |
15823 | 785 G_CALLBACK(purple_menu_action_free), action); |
15818 | 786 |
15823 | 787 add_custom_action(menu, _("Edit Settings"), (PurpleCallback)chat_components_edit, chat); |
15818 | 788 } |
789 | |
790 static void | |
15823 | 791 finch_add_buddy(PurpleGroup *grp, PurpleBlistNode *selected) |
15818 | 792 { |
15823 | 793 purple_blist_request_add_buddy(NULL, NULL, grp ? grp->name : NULL, NULL); |
15818 | 794 } |
795 | |
796 static void | |
15823 | 797 finch_add_group(PurpleGroup *grp, PurpleBlistNode *selected) |
15818 | 798 { |
15823 | 799 purple_blist_request_add_group(); |
15818 | 800 } |
801 | |
802 static void | |
15823 | 803 finch_add_chat(PurpleGroup *grp, PurpleBlistNode *selected) |
15818 | 804 { |
15823 | 805 purple_blist_request_add_chat(NULL, grp, NULL, NULL); |
15818 | 806 } |
807 | |
808 static void | |
15823 | 809 create_group_menu(GntMenu *menu, PurpleGroup *group) |
15818 | 810 { |
811 add_custom_action(menu, _("Add Buddy"), | |
15823 | 812 PURPLE_CALLBACK(finch_add_buddy), group); |
15818 | 813 add_custom_action(menu, _("Add Chat"), |
15823 | 814 PURPLE_CALLBACK(finch_add_chat), group); |
15818 | 815 add_custom_action(menu, _("Add Group"), |
15823 | 816 PURPLE_CALLBACK(finch_add_group), group); |
15818 | 817 } |
818 | |
819 static void | |
15823 | 820 finch_blist_get_buddy_info_cb(PurpleBuddy *buddy, PurpleBlistNode *selected) |
15818 | 821 { |
15823 | 822 serv_get_info(buddy->account->gc, purple_buddy_get_name(buddy)); |
15818 | 823 } |
824 | |
825 static void | |
15823 | 826 finch_blist_menu_send_file_cb(PurpleBuddy *buddy, PurpleBlistNode *selected) |
15818 | 827 { |
828 serv_send_file(buddy->account->gc, buddy->name, NULL); | |
829 } | |
830 | |
831 static void | |
15823 | 832 finch_blist_pounce_node_cb(PurpleBlistNode *node, PurpleBlistNode *selected) |
15818 | 833 { |
15823 | 834 PurpleBuddy *b; |
835 if (PURPLE_BLIST_NODE_IS_CONTACT(node)) | |
836 b = purple_contact_get_priority_buddy((PurpleContact *)node); | |
15818 | 837 else |
15823 | 838 b = (PurpleBuddy *)node; |
15818 | 839 finch_pounce_editor_show(b->account, b->name, NULL); |
840 } | |
841 | |
842 | |
843 static void | |
15823 | 844 create_buddy_menu(GntMenu *menu, PurpleBuddy *buddy) |
15818 | 845 { |
15823 | 846 PurplePluginProtocolInfo *prpl_info; |
15818 | 847 |
15823 | 848 prpl_info = PURPLE_PLUGIN_PROTOCOL_INFO(buddy->account->gc->prpl); |
15818 | 849 if (prpl_info && prpl_info->get_info) |
850 { | |
851 add_custom_action(menu, _("Get Info"), | |
15823 | 852 PURPLE_CALLBACK(finch_blist_get_buddy_info_cb), buddy); |
15818 | 853 } |
854 | |
855 add_custom_action(menu, _("Add Buddy Pounce"), | |
15823 | 856 PURPLE_CALLBACK(finch_blist_pounce_node_cb), buddy); |
15818 | 857 |
858 if (prpl_info && prpl_info->send_file) | |
859 { | |
860 if (!prpl_info->can_receive_file || | |
861 prpl_info->can_receive_file(buddy->account->gc, buddy->name)) | |
862 add_custom_action(menu, _("Send File"), | |
15823 | 863 PURPLE_CALLBACK(finch_blist_menu_send_file_cb), buddy); |
15818 | 864 } |
865 #if 0 | |
866 add_custom_action(tree, _("View Log"), | |
15823 | 867 PURPLE_CALLBACK(finch_blist_view_log_cb)), buddy); |
15818 | 868 #endif |
869 | |
870 /* Protocol actions */ | |
871 append_proto_menu(menu, | |
15823 | 872 purple_account_get_connection(purple_buddy_get_account(buddy)), |
873 (PurpleBlistNode*)buddy); | |
15818 | 874 } |
875 | |
876 static void | |
15823 | 877 append_extended_menu(GntMenu *menu, PurpleBlistNode *node) |
15818 | 878 { |
879 GList *iter; | |
880 | |
15823 | 881 for (iter = purple_blist_node_get_extended_menu(node); |
15818 | 882 iter; iter = g_list_delete_link(iter, iter)) |
883 { | |
884 gnt_append_menu_action(menu, iter->data, NULL); | |
885 } | |
886 } | |
887 | |
15823 | 888 /* Xerox'd from gtkdialogs.c:purple_gtkdialogs_remove_contact_cb */ |
15818 | 889 static void |
15823 | 890 remove_contact(PurpleContact *contact) |
15818 | 891 { |
15823 | 892 PurpleBlistNode *bnode, *cnode; |
893 PurpleGroup *group; | |
15818 | 894 |
15823 | 895 cnode = (PurpleBlistNode *)contact; |
896 group = (PurpleGroup*)cnode->parent; | |
15818 | 897 for (bnode = cnode->child; bnode; bnode = bnode->next) { |
15823 | 898 PurpleBuddy *buddy = (PurpleBuddy*)bnode; |
899 if (purple_account_is_connected(buddy->account)) | |
900 purple_account_remove_buddy(buddy->account, buddy, group); | |
15818 | 901 } |
15823 | 902 purple_blist_remove_contact(contact); |
15818 | 903 } |
904 | |
905 static void | |
15823 | 906 rename_blist_node(PurpleBlistNode *node, const char *newname) |
15818 | 907 { |
908 const char *name = newname; | |
909 if (name && !*name) | |
910 name = NULL; | |
911 | |
15823 | 912 if (PURPLE_BLIST_NODE_IS_CONTACT(node)) { |
913 PurpleContact *contact = (PurpleContact*)node; | |
914 PurpleBuddy *buddy = purple_contact_get_priority_buddy(contact); | |
915 purple_blist_alias_contact(contact, name); | |
916 purple_blist_alias_buddy(buddy, name); | |
15818 | 917 serv_alias_buddy(buddy); |
15823 | 918 } else if (PURPLE_BLIST_NODE_IS_BUDDY(node)) { |
919 purple_blist_alias_buddy((PurpleBuddy*)node, name); | |
920 serv_alias_buddy((PurpleBuddy*)node); | |
921 } else if (PURPLE_BLIST_NODE_IS_CHAT(node)) | |
922 purple_blist_alias_chat((PurpleChat*)node, name); | |
923 else if (PURPLE_BLIST_NODE_IS_GROUP(node) && (name != NULL)) | |
924 purple_blist_rename_group((PurpleGroup*)node, name); | |
15818 | 925 else |
926 g_return_if_reached(); | |
927 } | |
928 | |
929 static void | |
15823 | 930 finch_blist_rename_node_cb(PurpleBlistNode *node, PurpleBlistNode *selected) |
15818 | 931 { |
932 const char *name = NULL; | |
933 char *prompt; | |
16276
31dad9806e9d
Use 'alias' instead of 'rename' for non-group nodes. Thankfully, this does not introduce new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
934 const char *text; |
15818 | 935 |
15823 | 936 if (PURPLE_BLIST_NODE_IS_CONTACT(node)) |
937 name = purple_contact_get_alias((PurpleContact*)node); | |
938 else if (PURPLE_BLIST_NODE_IS_BUDDY(node)) | |
939 name = purple_buddy_get_contact_alias((PurpleBuddy*)node); | |
940 else if (PURPLE_BLIST_NODE_IS_CHAT(node)) | |
941 name = purple_chat_get_name((PurpleChat*)node); | |
942 else if (PURPLE_BLIST_NODE_IS_GROUP(node)) | |
943 name = ((PurpleGroup*)node)->name; | |
15818 | 944 else |
945 g_return_if_reached(); | |
946 | |
947 prompt = g_strdup_printf(_("Please enter the new name for %s"), name); | |
948 | |
16276
31dad9806e9d
Use 'alias' instead of 'rename' for non-group nodes. Thankfully, this does not introduce new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
949 text = PURPLE_BLIST_NODE_IS_GROUP(node) ? _("Rename") : _("Alias"); |
31dad9806e9d
Use 'alias' instead of 'rename' for non-group nodes. Thankfully, this does not introduce new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
950 purple_request_input(node, text, prompt, _("Enter empty string to reset the name."), |
31dad9806e9d
Use 'alias' instead of 'rename' for non-group nodes. Thankfully, this does not introduce new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
951 name, FALSE, FALSE, NULL, text, G_CALLBACK(rename_blist_node), |
16442
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
952 _("Cancel"), NULL, |
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
953 NULL, NULL, NULL, |
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
954 node); |
15818 | 955 |
956 g_free(prompt); | |
957 } | |
958 | |
15823 | 959 /* Xeroxed from gtkdialogs.c:purple_gtkdialogs_remove_group_cb*/ |
15818 | 960 static void |
15823 | 961 remove_group(PurpleGroup *group) |
15818 | 962 { |
15823 | 963 PurpleBlistNode *cnode, *bnode; |
15818 | 964 |
15823 | 965 cnode = ((PurpleBlistNode*)group)->child; |
15818 | 966 |
967 while (cnode) { | |
15823 | 968 if (PURPLE_BLIST_NODE_IS_CONTACT(cnode)) { |
15818 | 969 bnode = cnode->child; |
970 cnode = cnode->next; | |
971 while (bnode) { | |
15823 | 972 PurpleBuddy *buddy; |
973 if (PURPLE_BLIST_NODE_IS_BUDDY(bnode)) { | |
974 buddy = (PurpleBuddy*)bnode; | |
15818 | 975 bnode = bnode->next; |
15823 | 976 if (purple_account_is_connected(buddy->account)) { |
977 purple_account_remove_buddy(buddy->account, buddy, group); | |
978 purple_blist_remove_buddy(buddy); | |
15818 | 979 } |
980 } else { | |
981 bnode = bnode->next; | |
982 } | |
983 } | |
15823 | 984 } else if (PURPLE_BLIST_NODE_IS_CHAT(cnode)) { |
985 PurpleChat *chat = (PurpleChat *)cnode; | |
15818 | 986 cnode = cnode->next; |
15823 | 987 if (purple_account_is_connected(chat->account)) |
988 purple_blist_remove_chat(chat); | |
15818 | 989 } else { |
990 cnode = cnode->next; | |
991 } | |
992 } | |
993 | |
15823 | 994 purple_blist_remove_group(group); |
15818 | 995 } |
996 | |
997 static void | |
15823 | 998 finch_blist_remove_node(PurpleBlistNode *node) |
15818 | 999 { |
15823 | 1000 if (PURPLE_BLIST_NODE_IS_CONTACT(node)) { |
1001 remove_contact((PurpleContact*)node); | |
1002 } else if (PURPLE_BLIST_NODE_IS_BUDDY(node)) { | |
1003 PurpleBuddy *buddy = (PurpleBuddy*)node; | |
1004 PurpleGroup *group = purple_buddy_get_group(buddy); | |
1005 purple_account_remove_buddy(purple_buddy_get_account(buddy), buddy, group); | |
1006 purple_blist_remove_buddy(buddy); | |
1007 } else if (PURPLE_BLIST_NODE_IS_CHAT(node)) { | |
1008 purple_blist_remove_chat((PurpleChat*)node); | |
1009 } else if (PURPLE_BLIST_NODE_IS_GROUP(node)) { | |
1010 remove_group((PurpleGroup*)node); | |
15818 | 1011 } |
1012 } | |
1013 | |
1014 static void | |
15823 | 1015 finch_blist_remove_node_cb(PurpleBlistNode *node, PurpleBlistNode *selected) |
15818 | 1016 { |
16442
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
1017 PurpleAccount *account = NULL; |
15818 | 1018 char *primary; |
1019 const char *name, *sec = NULL; | |
1020 | |
1021 /* XXX: could be a contact */ | |
15823 | 1022 if (PURPLE_BLIST_NODE_IS_CONTACT(node)) { |
1023 PurpleContact *c = (PurpleContact*)node; | |
1024 name = purple_contact_get_alias(c); | |
15818 | 1025 if (c->totalsize > 1) |
1026 sec = _("Removing this contact will also remove all the buddies in the contact"); | |
16442
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
1027 } else if (PURPLE_BLIST_NODE_IS_BUDDY(node)) { |
15823 | 1028 name = purple_buddy_get_name((PurpleBuddy*)node); |
16442
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
1029 account = purple_buddy_get_account((PurpleBuddy*)node); |
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
1030 } else if (PURPLE_BLIST_NODE_IS_CHAT(node)) { |
15823 | 1031 name = purple_chat_get_name((PurpleChat*)node); |
16442
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
1032 } else if (PURPLE_BLIST_NODE_IS_GROUP(node)) { |
15823 | 1033 name = ((PurpleGroup*)node)->name; |
15818 | 1034 sec = _("Removing this group will also remove all the buddies in the group"); |
1035 } | |
1036 else | |
1037 return; | |
1038 | |
1039 primary = g_strdup_printf(_("Are you sure you want to remove %s?"), name); | |
1040 | |
1041 /* XXX: anything to do with the returned ui-handle? */ | |
15823 | 1042 purple_request_action(node, _("Confirm Remove"), |
15818 | 1043 primary, sec, |
16442
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
1044 1, |
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
1045 account, name, NULL, |
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
1046 node, 2, |
15818 | 1047 _("Remove"), finch_blist_remove_node, |
1048 _("Cancel"), NULL); | |
1049 g_free(primary); | |
1050 } | |
1051 | |
1052 static void | |
15823 | 1053 finch_blist_toggle_tag_buddy(PurpleBlistNode *node) |
15818 | 1054 { |
1055 GList *iter; | |
1056 if (node == NULL) | |
1057 return; | |
1058 if (ggblist->tagged && (iter = g_list_find(ggblist->tagged, node)) != NULL) { | |
1059 ggblist->tagged = g_list_delete_link(ggblist->tagged, iter); | |
1060 } else { | |
1061 ggblist->tagged = g_list_prepend(ggblist->tagged, node); | |
1062 } | |
15823 | 1063 if (PURPLE_BLIST_NODE_IS_CONTACT(node)) |
1064 node = (PurpleBlistNode*)purple_contact_get_priority_buddy((PurpleContact*)node); | |
16575
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1065 if (PURPLE_BLIST_NODE_IS_BUDDY(node)) |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1066 update_buddy_display((PurpleBuddy*)node, ggblist); |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1067 else |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1068 update_node_display(node, ggblist); |
15818 | 1069 } |
1070 | |
1071 static void | |
15823 | 1072 finch_blist_place_tagged(PurpleBlistNode *target) |
15818 | 1073 { |
15823 | 1074 PurpleGroup *tg = NULL; |
1075 PurpleContact *tc = NULL; | |
15818 | 1076 |
1077 if (target == NULL) | |
1078 return; | |
1079 | |
15823 | 1080 if (PURPLE_BLIST_NODE_IS_GROUP(target)) |
1081 tg = (PurpleGroup*)target; | |
16575
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1082 else if (PURPLE_BLIST_NODE_IS_BUDDY(target)) { |
15823 | 1083 tc = (PurpleContact*)target->parent; |
16575
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1084 tg = (PurpleGroup*)target->parent->parent; |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1085 } else { |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1086 if (PURPLE_BLIST_NODE_IS_CONTACT(target)) |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1087 tc = (PurpleContact*)target; |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1088 tg = (PurpleGroup*)target->parent; |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1089 } |
15818 | 1090 |
1091 if (ggblist->tagged) { | |
1092 GList *list = ggblist->tagged; | |
1093 ggblist->tagged = NULL; | |
1094 while (list) { | |
15823 | 1095 PurpleBlistNode *node = list->data; |
15818 | 1096 list = g_list_delete_link(list, list); |
16575
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1097 |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1098 if (PURPLE_BLIST_NODE_IS_GROUP(node)) { |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1099 update_node_display(node, ggblist); |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1100 /* Add the group after the current group */ |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1101 purple_blist_add_group((PurpleGroup*)node, (PurpleBlistNode*)tg); |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1102 } else if (PURPLE_BLIST_NODE_IS_CONTACT(node)) { |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1103 update_buddy_display(purple_contact_get_priority_buddy((PurpleContact*)node), ggblist); |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1104 if ((PurpleBlistNode*)tg == target) { |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1105 /* The target is a group, just add the contact to the group. */ |
15823 | 1106 purple_blist_add_contact((PurpleContact*)node, tg, NULL); |
16575
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1107 } else if (tc) { |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1108 /* The target is either a buddy, or a contact. Merge with that contact. */ |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1109 purple_blist_merge_contact((PurpleContact*)node, (PurpleBlistNode*)tc); |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1110 } else { |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1111 /* The target is a chat. Add the contact to the group after this chat. */ |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1112 purple_blist_add_contact((PurpleContact*)node, NULL, target); |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1113 } |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1114 } else if (PURPLE_BLIST_NODE_IS_BUDDY(node)) { |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1115 update_buddy_display((PurpleBuddy*)node, ggblist); |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1116 if ((PurpleBlistNode*)tg == target) { |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1117 /* The target is a group. Add this buddy in a new contact under this group. */ |
15823 | 1118 purple_blist_add_buddy((PurpleBuddy*)node, NULL, tg, NULL); |
16575
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1119 } else if (PURPLE_BLIST_NODE_IS_CONTACT(target)) { |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1120 /* Add to the contact. */ |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1121 purple_blist_add_buddy((PurpleBuddy*)node, tc, NULL, NULL); |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1122 } else if (PURPLE_BLIST_NODE_IS_BUDDY(target)) { |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1123 /* Add to the contact after the selected buddy. */ |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1124 purple_blist_add_buddy((PurpleBuddy*)node, NULL, NULL, target); |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1125 } else if (PURPLE_BLIST_NODE_IS_CHAT(target)) { |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1126 /* Add to the selected chat's group. */ |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1127 purple_blist_add_buddy((PurpleBuddy*)node, NULL, tg, NULL); |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1128 } |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1129 } else if (PURPLE_BLIST_NODE_IS_CHAT(node)) { |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1130 update_node_display(node, ggblist); |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1131 if ((PurpleBlistNode*)tg == target) |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1132 purple_blist_add_chat((PurpleChat*)node, tg, NULL); |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1133 else |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1134 purple_blist_add_chat((PurpleChat*)node, NULL, target); |
15818 | 1135 } |
1136 } | |
1137 } | |
1138 } | |
1139 | |
1140 static void | |
1141 context_menu_destroyed(GntWidget *widget, FinchBlist *ggblist) | |
1142 { | |
1143 ggblist->context = NULL; | |
1144 } | |
1145 | |
1146 static void | |
1147 draw_context_menu(FinchBlist *ggblist) | |
1148 { | |
15823 | 1149 PurpleBlistNode *node = NULL; |
15818 | 1150 GntWidget *context = NULL; |
1151 GntTree *tree = NULL; | |
1152 int x, y, top, width; | |
1153 char *title = NULL; | |
1154 | |
16824
e79555933fc6
Do not build the context menu if one is already being shown.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
1155 if (ggblist->context) |
e79555933fc6
Do not build the context menu if one is already being shown.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
1156 return; |
e79555933fc6
Do not build the context menu if one is already being shown.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16792
diff
changeset
|
1157 |
15818 | 1158 tree = GNT_TREE(ggblist->tree); |
1159 | |
1160 node = gnt_tree_get_selection_data(tree); | |
1161 | |
1162 if (ggblist->tooltip) | |
1163 remove_tooltip(ggblist); | |
1164 | |
1165 ggblist->cnode = node; | |
1166 | |
1167 ggblist->context = context = gnt_menu_new(GNT_MENU_POPUP); | |
1168 g_signal_connect(G_OBJECT(context), "destroy", G_CALLBACK(context_menu_destroyed), ggblist); | |
1169 | |
1170 if (!node) { | |
1171 create_group_menu(GNT_MENU(context), NULL); | |
1172 title = g_strdup(_("Buddy List")); | |
15823 | 1173 } else if (PURPLE_BLIST_NODE_IS_CONTACT(node)) { |
15818 | 1174 create_buddy_menu(GNT_MENU(context), |
15823 | 1175 purple_contact_get_priority_buddy((PurpleContact*)node)); |
1176 title = g_strdup(purple_contact_get_alias((PurpleContact*)node)); | |
1177 } else if (PURPLE_BLIST_NODE_IS_BUDDY(node)) { | |
1178 PurpleBuddy *buddy = (PurpleBuddy *)node; | |
15818 | 1179 create_buddy_menu(GNT_MENU(context), buddy); |
15823 | 1180 title = g_strdup(purple_buddy_get_name(buddy)); |
1181 } else if (PURPLE_BLIST_NODE_IS_CHAT(node)) { | |
1182 PurpleChat *chat = (PurpleChat*)node; | |
15818 | 1183 create_chat_menu(GNT_MENU(context), chat); |
15823 | 1184 title = g_strdup(purple_chat_get_name(chat)); |
1185 } else if (PURPLE_BLIST_NODE_IS_GROUP(node)) { | |
1186 PurpleGroup *group = (PurpleGroup *)node; | |
15818 | 1187 create_group_menu(GNT_MENU(context), group); |
1188 title = g_strdup(group->name); | |
1189 } | |
1190 | |
1191 append_extended_menu(GNT_MENU(context), node); | |
1192 | |
1193 /* These are common for everything */ | |
1194 if (node) { | |
16276
31dad9806e9d
Use 'alias' instead of 'rename' for non-group nodes. Thankfully, this does not introduce new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
1195 add_custom_action(GNT_MENU(context), |
31dad9806e9d
Use 'alias' instead of 'rename' for non-group nodes. Thankfully, this does not introduce new strings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
1196 PURPLE_BLIST_NODE_IS_GROUP(node) ? _("Rename") : _("Alias"), |
15823 | 1197 PURPLE_CALLBACK(finch_blist_rename_node_cb), node); |
15818 | 1198 add_custom_action(GNT_MENU(context), _("Remove"), |
15823 | 1199 PURPLE_CALLBACK(finch_blist_remove_node_cb), node); |
15818 | 1200 |
15823 | 1201 if (ggblist->tagged && (PURPLE_BLIST_NODE_IS_CONTACT(node) |
1202 || PURPLE_BLIST_NODE_IS_GROUP(node))) { | |
15818 | 1203 add_custom_action(GNT_MENU(context), _("Place tagged"), |
15823 | 1204 PURPLE_CALLBACK(finch_blist_place_tagged), node); |
15818 | 1205 } |
1206 | |
15823 | 1207 if (PURPLE_BLIST_NODE_IS_BUDDY(node) || PURPLE_BLIST_NODE_IS_CONTACT(node)) { |
15818 | 1208 add_custom_action(GNT_MENU(context), _("Toggle Tag"), |
15823 | 1209 PURPLE_CALLBACK(finch_blist_toggle_tag_buddy), node); |
15818 | 1210 } |
1211 } | |
1212 | |
1213 /* Set the position for the popup */ | |
1214 gnt_widget_get_position(GNT_WIDGET(tree), &x, &y); | |
1215 gnt_widget_get_size(GNT_WIDGET(tree), &width, NULL); | |
1216 top = gnt_tree_get_selection_visible_line(tree); | |
1217 | |
1218 x += width; | |
1219 y += top - 1; | |
1220 | |
1221 gnt_widget_set_position(context, x, y); | |
1222 gnt_screen_menu_show(GNT_MENU(context)); | |
1223 g_free(title); | |
1224 } | |
1225 | |
1226 static void | |
15823 | 1227 tooltip_for_buddy(PurpleBuddy *buddy, GString *str) |
15818 | 1228 { |
15823 | 1229 PurplePlugin *prpl; |
1230 PurplePluginProtocolInfo *prpl_info; | |
1231 PurpleAccount *account; | |
1232 PurpleNotifyUserInfo *user_info; | |
1233 const char *alias = purple_buddy_get_alias(buddy); | |
15818 | 1234 char *tmp, *strip; |
1235 | |
15823 | 1236 user_info = purple_notify_user_info_new(); |
15818 | 1237 |
15823 | 1238 account = purple_buddy_get_account(buddy); |
15818 | 1239 |
15823 | 1240 if (g_utf8_collate(purple_buddy_get_name(buddy), alias)) |
1241 purple_notify_user_info_add_pair(user_info, _("Nickname"), alias); | |
15818 | 1242 |
1243 tmp = g_strdup_printf("%s (%s)", | |
15823 | 1244 purple_account_get_username(account), |
1245 purple_account_get_protocol_name(account)); | |
1246 purple_notify_user_info_add_pair(user_info, _("Account"), tmp); | |
15818 | 1247 g_free(tmp); |
1248 | |
15823 | 1249 prpl = purple_find_prpl(purple_account_get_protocol_id(account)); |
1250 prpl_info = PURPLE_PLUGIN_PROTOCOL_INFO(prpl); | |
15818 | 1251 if (prpl_info && prpl_info->tooltip_text) { |
1252 prpl_info->tooltip_text(buddy, user_info, TRUE); | |
1253 } | |
1254 | |
16427
4999bbc52881
Works for me! Renames prefs: /core to /purple, /gaim/gtk to /pidgin, /gaim/gnt to /finch
Sean Egan <seanegan@gmail.com>
parents:
16276
diff
changeset
|
1255 if (purple_prefs_get_bool("/finch/blist/idletime")) { |
15823 | 1256 PurplePresence *pre = purple_buddy_get_presence(buddy); |
1257 if (purple_presence_is_idle(pre)) { | |
1258 time_t idle = purple_presence_get_idle_time(pre); | |
15818 | 1259 if (idle > 0) { |
15823 | 1260 char *st = purple_str_seconds_to_string(time(NULL) - idle); |
1261 purple_notify_user_info_add_pair(user_info, _("Idle"), st); | |
15818 | 1262 g_free(st); |
1263 } | |
1264 } | |
1265 } | |
1266 | |
15823 | 1267 tmp = purple_notify_user_info_get_text_with_newline(user_info, "<BR>"); |
1268 purple_notify_user_info_destroy(user_info); | |
15818 | 1269 |
15823 | 1270 strip = purple_markup_strip_html(tmp); |
15818 | 1271 g_string_append(str, strip); |
1272 g_free(strip); | |
1273 g_free(tmp); | |
1274 } | |
1275 | |
1276 static GString* | |
1277 make_sure_text_fits(GString *string) | |
1278 { | |
1279 int maxw = getmaxx(stdscr) - 3; | |
1280 char *str = gnt_util_onscreen_fit_string(string->str, maxw); | |
1281 string = g_string_assign(string, str); | |
1282 g_free(str); | |
1283 return string; | |
1284 } | |
1285 | |
1286 static gboolean | |
1287 draw_tooltip_real(FinchBlist *ggblist) | |
1288 { | |
15823 | 1289 PurpleBlistNode *node; |
15818 | 1290 int x, y, top, width, w, h; |
1291 GString *str; | |
1292 GntTree *tree; | |
1293 GntWidget *widget, *box, *tv; | |
1294 char *title = NULL; | |
1295 int lastseen = 0; | |
1296 | |
1297 widget = ggblist->tree; | |
1298 tree = GNT_TREE(widget); | |
1299 | |
1300 if (!gnt_widget_has_focus(ggblist->tree) || | |
1301 (ggblist->context && !GNT_WIDGET_IS_FLAG_SET(ggblist->context, GNT_WIDGET_INVISIBLE))) | |
1302 return FALSE; | |
1303 | |
1304 if (ggblist->tooltip) | |
1305 { | |
1306 /* XXX: Once we can properly redraw on expose events, this can be removed at the end | |
1307 * to avoid the blinking*/ | |
1308 remove_tooltip(ggblist); | |
1309 } | |
1310 | |
1311 node = gnt_tree_get_selection_data(tree); | |
1312 if (!node) | |
1313 return FALSE; | |
1314 | |
1315 str = g_string_new(""); | |
1316 | |
15823 | 1317 if (PURPLE_BLIST_NODE_IS_CONTACT(node)) { |
1318 PurpleBuddy *pr = purple_contact_get_priority_buddy((PurpleContact*)node); | |
1319 gboolean offline = !PURPLE_BUDDY_IS_ONLINE(pr); | |
1320 gboolean showoffline = purple_prefs_get_bool(PREF_ROOT "/showoffline"); | |
1321 const char *name = purple_buddy_get_name(pr); | |
15818 | 1322 |
1323 title = g_strdup(name); | |
1324 tooltip_for_buddy(pr, str); | |
1325 for (node = node->child; node; node = node->next) { | |
15823 | 1326 PurpleBuddy *buddy = (PurpleBuddy*)node; |
15818 | 1327 if (offline) { |
15823 | 1328 int value = purple_blist_node_get_int(node, "last_seen"); |
15818 | 1329 if (value > lastseen) |
1330 lastseen = value; | |
1331 } | |
15823 | 1332 if (node == (PurpleBlistNode*)pr) |
15818 | 1333 continue; |
15823 | 1334 if (!purple_account_is_connected(buddy->account)) |
15818 | 1335 continue; |
15823 | 1336 if (!showoffline && !PURPLE_BUDDY_IS_ONLINE(buddy)) |
15818 | 1337 continue; |
1338 str = g_string_append(str, "\n----------\n"); | |
1339 tooltip_for_buddy(buddy, str); | |
1340 } | |
15823 | 1341 } else if (PURPLE_BLIST_NODE_IS_BUDDY(node)) { |
1342 PurpleBuddy *buddy = (PurpleBuddy *)node; | |
15818 | 1343 tooltip_for_buddy(buddy, str); |
15823 | 1344 title = g_strdup(purple_buddy_get_name(buddy)); |
1345 if (!PURPLE_BUDDY_IS_ONLINE((PurpleBuddy*)node)) | |
1346 lastseen = purple_blist_node_get_int(node, "last_seen"); | |
1347 } else if (PURPLE_BLIST_NODE_IS_GROUP(node)) { | |
1348 PurpleGroup *group = (PurpleGroup *)node; | |
15818 | 1349 |
1350 g_string_append_printf(str, _("Online: %d\nTotal: %d"), | |
15823 | 1351 purple_blist_get_group_online_count(group), |
1352 purple_blist_get_group_size(group, FALSE)); | |
15818 | 1353 |
1354 title = g_strdup(group->name); | |
15823 | 1355 } else if (PURPLE_BLIST_NODE_IS_CHAT(node)) { |
1356 PurpleChat *chat = (PurpleChat *)node; | |
1357 PurpleAccount *account = chat->account; | |
15818 | 1358 |
1359 g_string_append_printf(str, _("Account: %s (%s)"), | |
15823 | 1360 purple_account_get_username(account), |
1361 purple_account_get_protocol_name(account)); | |
15818 | 1362 |
15823 | 1363 title = g_strdup(purple_chat_get_name(chat)); |
15818 | 1364 } else { |
1365 g_string_free(str, TRUE); | |
1366 return FALSE; | |
1367 } | |
1368 | |
1369 if (lastseen > 0) { | |
15823 | 1370 char *tmp = purple_str_seconds_to_string(time(NULL) - lastseen); |
15818 | 1371 g_string_append_printf(str, _("\nLast Seen: %s ago"), tmp); |
1372 g_free(tmp); | |
1373 } | |
1374 | |
1375 gnt_widget_get_position(widget, &x, &y); | |
1376 gnt_widget_get_size(widget, &width, NULL); | |
1377 top = gnt_tree_get_selection_visible_line(tree); | |
1378 | |
1379 x += width; | |
1380 y += top - 1; | |
1381 | |
1382 box = gnt_box_new(FALSE, FALSE); | |
1383 gnt_box_set_toplevel(GNT_BOX(box), TRUE); | |
1384 GNT_WIDGET_SET_FLAGS(box, GNT_WIDGET_NO_SHADOW); | |
1385 gnt_box_set_title(GNT_BOX(box), title); | |
1386 | |
1387 str = make_sure_text_fits(str); | |
1388 gnt_util_get_text_bound(str->str, &w, &h); | |
1389 h = MAX(2, h); | |
1390 tv = gnt_text_view_new(); | |
1391 gnt_widget_set_size(tv, w + 1, h); | |
1392 gnt_box_add_widget(GNT_BOX(box), tv); | |
1393 | |
1394 gnt_widget_set_position(box, x, y); | |
1395 GNT_WIDGET_UNSET_FLAGS(box, GNT_WIDGET_CAN_TAKE_FOCUS); | |
1396 GNT_WIDGET_SET_FLAGS(box, GNT_WIDGET_TRANSIENT); | |
1397 gnt_widget_draw(box); | |
1398 | |
1399 gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(tv), str->str, GNT_TEXT_FLAG_NORMAL); | |
1400 gnt_text_view_scroll(GNT_TEXT_VIEW(tv), 0); | |
1401 | |
1402 g_free(title); | |
1403 g_string_free(str, TRUE); | |
1404 ggblist->tooltip = box; | |
1405 ggblist->tnode = node; | |
1406 | |
1407 gnt_widget_set_name(ggblist->tooltip, "tooltip"); | |
1408 return FALSE; | |
1409 } | |
1410 | |
1411 static void | |
1412 draw_tooltip(FinchBlist *ggblist) | |
1413 { | |
1414 /* When an account has signed off, it removes one buddy at a time. | |
1415 * Drawing the tooltip after removing each buddy is expensive. On | |
1416 * top of that, if the selected buddy belongs to the disconnected | |
1417 * account, then retreiving the tooltip for that causes crash. So | |
1418 * let's make sure we wait for all the buddies to be removed first.*/ | |
1419 int id = g_timeout_add(0, (GSourceFunc)draw_tooltip_real, ggblist); | |
1420 g_object_set_data_full(G_OBJECT(ggblist->window), "draw_tooltip_calback", | |
1421 GINT_TO_POINTER(id), (GDestroyNotify)g_source_remove); | |
1422 } | |
1423 | |
1424 static void | |
1425 selection_changed(GntWidget *widget, gpointer old, gpointer current, FinchBlist *ggblist) | |
1426 { | |
16792
d0f9b2b217cf
Fix context menu unusualness in the buddylist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16782
diff
changeset
|
1427 remove_peripherals(ggblist); |
15818 | 1428 draw_tooltip(ggblist); |
1429 } | |
1430 | |
1431 static gboolean | |
1432 context_menu(GntWidget *widget, FinchBlist *ggblist) | |
1433 { | |
1434 draw_context_menu(ggblist); | |
1435 return TRUE; | |
1436 } | |
1437 | |
1438 static gboolean | |
1439 key_pressed(GntWidget *widget, const char *text, FinchBlist *ggblist) | |
1440 { | |
1441 if (text[0] == 27 && text[1] == 0) { | |
1442 /* Escape was pressed */ | |
1443 remove_peripherals(ggblist); | |
1444 } else if (strcmp(text, GNT_KEY_CTRL_O) == 0) { | |
15823 | 1445 purple_prefs_set_bool(PREF_ROOT "/showoffline", |
1446 !purple_prefs_get_bool(PREF_ROOT "/showoffline")); | |
15818 | 1447 } else if (GNT_TREE(ggblist->tree)->search == NULL) { |
1448 if (strcmp(text, "t") == 0) { | |
1449 finch_blist_toggle_tag_buddy(gnt_tree_get_selection_data(GNT_TREE(ggblist->tree))); | |
1450 gnt_bindable_perform_action_named(GNT_BINDABLE(ggblist->tree), "move-down"); | |
1451 } else if (strcmp(text, "a") == 0) { | |
1452 finch_blist_place_tagged(gnt_tree_get_selection_data(GNT_TREE(ggblist->tree))); | |
1453 } else | |
1454 return FALSE; | |
1455 } else | |
1456 return FALSE; | |
1457 | |
1458 return TRUE; | |
1459 } | |
1460 | |
1461 static void | |
16575
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1462 update_node_display(PurpleBlistNode *node, FinchBlist *ggblist) |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1463 { |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1464 GntTextFormatFlags flag = 0; |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1465 if (ggblist->tagged && g_list_find(ggblist->tagged, node)) |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1466 flag |= GNT_TEXT_FLAG_BOLD; |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1467 gnt_tree_set_row_flags(GNT_TREE(ggblist->tree), node, flag); |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1468 } |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1469 |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1470 static void |
15823 | 1471 update_buddy_display(PurpleBuddy *buddy, FinchBlist *ggblist) |
15818 | 1472 { |
15823 | 1473 PurpleContact *contact; |
15818 | 1474 GntTextFormatFlags bflag = 0, cflag = 0; |
1475 | |
15823 | 1476 contact = purple_buddy_get_contact(buddy); |
15818 | 1477 |
15823 | 1478 gnt_tree_change_text(GNT_TREE(ggblist->tree), buddy, 0, get_display_name((PurpleBlistNode*)buddy)); |
1479 gnt_tree_change_text(GNT_TREE(ggblist->tree), contact, 0, get_display_name((PurpleBlistNode*)contact)); | |
15818 | 1480 |
1481 if (ggblist->tagged && g_list_find(ggblist->tagged, buddy)) | |
1482 bflag |= GNT_TEXT_FLAG_BOLD; | |
1483 if (ggblist->tagged && g_list_find(ggblist->tagged, contact)) | |
1484 cflag |= GNT_TEXT_FLAG_BOLD; | |
1485 | |
15823 | 1486 if (ggblist->tnode == (PurpleBlistNode*)buddy) |
15818 | 1487 draw_tooltip(ggblist); |
1488 | |
15823 | 1489 if (purple_presence_is_idle(purple_buddy_get_presence(buddy))) { |
15818 | 1490 gnt_tree_set_row_flags(GNT_TREE(ggblist->tree), buddy, bflag | GNT_TEXT_FLAG_DIM); |
16575
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1491 if (buddy == purple_contact_get_priority_buddy(contact)) |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1492 gnt_tree_set_row_flags(GNT_TREE(ggblist->tree), contact, cflag | GNT_TEXT_FLAG_DIM); |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1493 else |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1494 update_buddy_display(purple_contact_get_priority_buddy(contact), ggblist); |
15818 | 1495 } else { |
1496 gnt_tree_set_row_flags(GNT_TREE(ggblist->tree), buddy, bflag); | |
16575
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1497 if (buddy == purple_contact_get_priority_buddy(contact)) |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1498 gnt_tree_set_row_flags(GNT_TREE(ggblist->tree), contact, cflag); |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1499 else |
7b692d5dd704
This makes it possible to rearrange chats and groups using the tag+attach system. Thanks a bunch to wabz for testing this. Fixes #379.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16491
diff
changeset
|
1500 update_buddy_display(purple_contact_get_priority_buddy(contact), ggblist); |
15818 | 1501 } |
1502 } | |
1503 | |
1504 static void | |
15823 | 1505 buddy_status_changed(PurpleBuddy *buddy, PurpleStatus *old, PurpleStatus *now, FinchBlist *ggblist) |
15818 | 1506 { |
1507 update_buddy_display(buddy, ggblist); | |
1508 } | |
1509 | |
1510 static void | |
15823 | 1511 buddy_idle_changed(PurpleBuddy *buddy, int old, int new, FinchBlist *ggblist) |
15818 | 1512 { |
1513 update_buddy_display(buddy, ggblist); | |
1514 } | |
1515 | |
1516 static void | |
1517 remove_peripherals(FinchBlist *ggblist) | |
1518 { | |
1519 if (ggblist->tooltip) | |
1520 remove_tooltip(ggblist); | |
1521 else if (ggblist->context) | |
1522 gnt_widget_destroy(ggblist->context); | |
1523 } | |
1524 | |
1525 static void | |
1526 size_changed_cb(GntWidget *w, int wi, int h) | |
1527 { | |
1528 int width, height; | |
1529 gnt_widget_get_size(w, &width, &height); | |
15823 | 1530 purple_prefs_set_int(PREF_ROOT "/size/width", width); |
1531 purple_prefs_set_int(PREF_ROOT "/size/height", height); | |
15818 | 1532 } |
1533 | |
1534 static void | |
1535 save_position_cb(GntWidget *w, int x, int y) | |
1536 { | |
15823 | 1537 purple_prefs_set_int(PREF_ROOT "/position/x", x); |
1538 purple_prefs_set_int(PREF_ROOT "/position/y", y); | |
15818 | 1539 } |
1540 | |
1541 static void | |
1542 reset_blist_window(GntWidget *window, gpointer null) | |
1543 { | |
15823 | 1544 PurpleBlistNode *node; |
1545 purple_signals_disconnect_by_handle(finch_blist_get_handle()); | |
1546 purple_get_blist()->ui_data = NULL; | |
15818 | 1547 |
15823 | 1548 node = purple_blist_get_root(); |
15818 | 1549 while (node) { |
1550 node->ui_data = NULL; | |
15823 | 1551 node = purple_blist_node_next(node, TRUE); |
15818 | 1552 } |
1553 | |
1554 if (ggblist->typing) | |
1555 g_source_remove(ggblist->typing); | |
1556 remove_peripherals(ggblist); | |
1557 if (ggblist->tagged) | |
1558 g_list_free(ggblist->tagged); | |
1559 g_free(ggblist); | |
1560 ggblist = NULL; | |
1561 } | |
1562 | |
1563 static void | |
1564 populate_buddylist() | |
1565 { | |
15823 | 1566 PurpleBlistNode *node; |
1567 PurpleBuddyList *list; | |
15818 | 1568 |
15823 | 1569 if (strcmp(purple_prefs_get_string(PREF_ROOT "/sort_type"), "text") == 0) { |
15818 | 1570 gnt_tree_set_compare_func(GNT_TREE(ggblist->tree), |
1571 (GCompareFunc)blist_node_compare_text); | |
15823 | 1572 } else if (strcmp(purple_prefs_get_string(PREF_ROOT "/sort_type"), "status") == 0) { |
15818 | 1573 gnt_tree_set_compare_func(GNT_TREE(ggblist->tree), |
1574 (GCompareFunc)blist_node_compare_status); | |
15823 | 1575 } else if (strcmp(purple_prefs_get_string(PREF_ROOT "/sort_type"), "log") == 0) { |
15818 | 1576 gnt_tree_set_compare_func(GNT_TREE(ggblist->tree), |
1577 (GCompareFunc)blist_node_compare_log); | |
1578 } | |
1579 | |
15823 | 1580 list = purple_get_blist(); |
1581 node = purple_blist_get_root(); | |
15818 | 1582 while (node) |
1583 { | |
1584 node_update(list, node); | |
15823 | 1585 node = purple_blist_node_next(node, FALSE); |
15818 | 1586 } |
1587 } | |
1588 | |
1589 static void | |
1590 destroy_status_list(GList *list) | |
1591 { | |
1592 g_list_foreach(list, (GFunc)g_free, NULL); | |
1593 g_list_free(list); | |
1594 } | |
1595 | |
1596 static void | |
1597 populate_status_dropdown() | |
1598 { | |
1599 int i; | |
1600 GList *iter; | |
1601 GList *items = NULL; | |
1602 StatusBoxItem *item = NULL; | |
1603 | |
1604 /* First the primitives */ | |
15823 | 1605 PurpleStatusPrimitive prims[] = {PURPLE_STATUS_AVAILABLE, PURPLE_STATUS_AWAY, |
1606 PURPLE_STATUS_INVISIBLE, PURPLE_STATUS_OFFLINE, PURPLE_STATUS_UNSET}; | |
15818 | 1607 |
1608 gnt_combo_box_remove_all(GNT_COMBO_BOX(ggblist->status)); | |
1609 | |
15823 | 1610 for (i = 0; prims[i] != PURPLE_STATUS_UNSET; i++) |
15818 | 1611 { |
1612 item = g_new0(StatusBoxItem, 1); | |
1613 item->type = STATUS_PRIMITIVE; | |
1614 item->u.prim = prims[i]; | |
1615 items = g_list_prepend(items, item); | |
1616 gnt_combo_box_add_data(GNT_COMBO_BOX(ggblist->status), item, | |
15823 | 1617 purple_primitive_get_name_from_type(prims[i])); |
15818 | 1618 } |
1619 | |
1620 /* Now the popular statuses */ | |
15823 | 1621 for (iter = purple_savedstatuses_get_popular(6); iter; iter = iter->next) |
15818 | 1622 { |
1623 item = g_new0(StatusBoxItem, 1); | |
1624 item->type = STATUS_SAVED_POPULAR; | |
1625 item->u.saved = iter->data; | |
1626 items = g_list_prepend(items, item); | |
1627 gnt_combo_box_add_data(GNT_COMBO_BOX(ggblist->status), item, | |
15823 | 1628 purple_savedstatus_get_title(iter->data)); |
15818 | 1629 } |
1630 | |
1631 /* New savedstatus */ | |
1632 item = g_new0(StatusBoxItem, 1); | |
1633 item->type = STATUS_SAVED_NEW; | |
1634 items = g_list_prepend(items, item); | |
1635 gnt_combo_box_add_data(GNT_COMBO_BOX(ggblist->status), item, | |
1636 _("New...")); | |
1637 | |
1638 /* More savedstatuses */ | |
1639 item = g_new0(StatusBoxItem, 1); | |
1640 item->type = STATUS_SAVED_ALL; | |
1641 items = g_list_prepend(items, item); | |
1642 gnt_combo_box_add_data(GNT_COMBO_BOX(ggblist->status), item, | |
1643 _("Saved...")); | |
1644 | |
1645 /* The keys for the combobox are created here, and never used | |
1646 * anywhere else. So make sure the keys are freed when the widget | |
1647 * is destroyed. */ | |
1648 g_object_set_data_full(G_OBJECT(ggblist->status), "list of statuses", | |
1649 items, (GDestroyNotify)destroy_status_list); | |
1650 } | |
1651 | |
1652 static void | |
15823 | 1653 redraw_blist(const char *name, PurplePrefType type, gconstpointer val, gpointer data) |
15818 | 1654 { |
15823 | 1655 PurpleBlistNode *node, *sel; |
15818 | 1656 if (ggblist == NULL || ggblist->window == NULL) |
1657 return; | |
1658 | |
1659 sel = gnt_tree_get_selection_data(GNT_TREE(ggblist->tree)); | |
1660 gnt_tree_remove_all(GNT_TREE(ggblist->tree)); | |
15823 | 1661 node = purple_blist_get_root(); |
1662 for (; node; node = purple_blist_node_next(node, TRUE)) | |
15818 | 1663 node->ui_data = NULL; |
1664 populate_buddylist(); | |
1665 gnt_tree_set_selected(GNT_TREE(ggblist->tree), sel); | |
1666 draw_tooltip(ggblist); | |
1667 } | |
1668 | |
1669 void finch_blist_init() | |
1670 { | |
15823 | 1671 purple_prefs_add_none(PREF_ROOT); |
1672 purple_prefs_add_none(PREF_ROOT "/size"); | |
1673 purple_prefs_add_int(PREF_ROOT "/size/width", 20); | |
1674 purple_prefs_add_int(PREF_ROOT "/size/height", 17); | |
1675 purple_prefs_add_none(PREF_ROOT "/position"); | |
1676 purple_prefs_add_int(PREF_ROOT "/position/x", 0); | |
1677 purple_prefs_add_int(PREF_ROOT "/position/y", 0); | |
1678 purple_prefs_add_bool(PREF_ROOT "/idletime", TRUE); | |
1679 purple_prefs_add_bool(PREF_ROOT "/showoffline", FALSE); | |
1680 purple_prefs_add_string(PREF_ROOT "/sort_type", "text"); | |
15818 | 1681 |
15823 | 1682 purple_prefs_connect_callback(finch_blist_get_handle(), |
15818 | 1683 PREF_ROOT "/showoffline", redraw_blist, NULL); |
15823 | 1684 purple_prefs_connect_callback(finch_blist_get_handle(), |
15818 | 1685 PREF_ROOT "/sort_type", redraw_blist, NULL); |
1686 | |
15823 | 1687 purple_signal_connect(purple_connections_get_handle(), "signed-on", purple_blist_get_handle(), |
15818 | 1688 G_CALLBACK(account_signed_on_cb), NULL); |
1689 return; | |
1690 } | |
1691 | |
1692 static gboolean | |
1693 remove_typing_cb(gpointer null) | |
1694 { | |
15823 | 1695 PurpleSavedStatus *current; |
15818 | 1696 const char *message, *newmessage; |
15823 | 1697 PurpleStatusPrimitive prim, newprim; |
15818 | 1698 StatusBoxItem *item; |
1699 | |
15823 | 1700 current = purple_savedstatus_get_current(); |
1701 message = purple_savedstatus_get_message(current); | |
1702 prim = purple_savedstatus_get_type(current); | |
15818 | 1703 |
1704 newmessage = gnt_entry_get_text(GNT_ENTRY(ggblist->statustext)); | |
1705 item = gnt_combo_box_get_selected_data(GNT_COMBO_BOX(ggblist->status)); | |
16663
1c9835f8b29c
A rare crash fix for finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16575
diff
changeset
|
1706 |
1c9835f8b29c
A rare crash fix for finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16575
diff
changeset
|
1707 switch (item->type) { |
1c9835f8b29c
A rare crash fix for finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16575
diff
changeset
|
1708 case STATUS_PRIMITIVE: |
1c9835f8b29c
A rare crash fix for finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16575
diff
changeset
|
1709 newprim = item->u.prim; |
1c9835f8b29c
A rare crash fix for finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16575
diff
changeset
|
1710 break; |
1c9835f8b29c
A rare crash fix for finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16575
diff
changeset
|
1711 case STATUS_SAVED_POPULAR: |
1c9835f8b29c
A rare crash fix for finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16575
diff
changeset
|
1712 newprim = purple_savedstatus_get_type(item->u.saved); |
1c9835f8b29c
A rare crash fix for finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16575
diff
changeset
|
1713 break; |
1c9835f8b29c
A rare crash fix for finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16575
diff
changeset
|
1714 default: |
1c9835f8b29c
A rare crash fix for finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16575
diff
changeset
|
1715 goto end; /* 'New' or 'Saved' is selected, but this should never happen. */ |
1c9835f8b29c
A rare crash fix for finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16575
diff
changeset
|
1716 } |
15818 | 1717 |
1718 if (newprim != prim || ((message && !newmessage) || | |
1719 (!message && newmessage) || | |
1720 (message && newmessage && g_utf8_collate(message, newmessage) != 0))) | |
1721 { | |
15823 | 1722 PurpleSavedStatus *status = purple_savedstatus_find_transient_by_type_and_message(newprim, newmessage); |
15818 | 1723 /* Holy Crap! That's a LAWNG function name */ |
1724 if (status == NULL) | |
1725 { | |
15823 | 1726 status = purple_savedstatus_new(NULL, newprim); |
1727 purple_savedstatus_set_message(status, newmessage); | |
15818 | 1728 } |
1729 | |
15823 | 1730 purple_savedstatus_activate(status); |
15818 | 1731 } |
1732 | |
1733 gnt_box_give_focus_to_child(GNT_BOX(ggblist->window), ggblist->tree); | |
16663
1c9835f8b29c
A rare crash fix for finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16575
diff
changeset
|
1734 end: |
15818 | 1735 if (ggblist->typing) |
1736 g_source_remove(ggblist->typing); | |
1737 ggblist->typing = 0; | |
1738 return FALSE; | |
1739 } | |
1740 | |
1741 static void | |
1742 status_selection_changed(GntComboBox *box, StatusBoxItem *old, StatusBoxItem *now, gpointer null) | |
1743 { | |
1744 gnt_entry_set_text(GNT_ENTRY(ggblist->statustext), NULL); | |
1745 if (now->type == STATUS_SAVED_POPULAR) | |
1746 { | |
1747 /* Set the status immediately */ | |
15823 | 1748 purple_savedstatus_activate(now->u.saved); |
15818 | 1749 } |
1750 else if (now->type == STATUS_PRIMITIVE) | |
1751 { | |
1752 /* Move the focus to the entry box */ | |
1753 /* XXX: Make sure the selected status can have a message */ | |
1754 gnt_box_move_focus(GNT_BOX(ggblist->window), 1); | |
1755 ggblist->typing = g_timeout_add(TYPING_TIMEOUT, (GSourceFunc)remove_typing_cb, NULL); | |
1756 } | |
1757 else if (now->type == STATUS_SAVED_ALL) | |
1758 { | |
1759 /* Restore the selection to reflect current status. */ | |
15823 | 1760 savedstatus_changed(purple_savedstatus_get_current(), NULL); |
15818 | 1761 gnt_box_give_focus_to_child(GNT_BOX(ggblist->window), ggblist->tree); |
1762 finch_savedstatus_show_all(); | |
1763 } | |
1764 else if (now->type == STATUS_SAVED_NEW) | |
1765 { | |
15823 | 1766 savedstatus_changed(purple_savedstatus_get_current(), NULL); |
15818 | 1767 gnt_box_give_focus_to_child(GNT_BOX(ggblist->window), ggblist->tree); |
1768 finch_savedstatus_edit(NULL); | |
1769 } | |
1770 else | |
1771 g_return_if_reached(); | |
1772 } | |
1773 | |
1774 static gboolean | |
1775 status_text_changed(GntEntry *entry, const char *text, gpointer null) | |
1776 { | |
1777 if ((text[0] == 27 || (text[0] == '\t' && text[1] == '\0')) && ggblist->typing == 0) | |
1778 return FALSE; | |
1779 | |
1780 if (ggblist->typing) | |
1781 g_source_remove(ggblist->typing); | |
1782 ggblist->typing = 0; | |
1783 | |
1784 if (text[0] == '\r' && text[1] == 0) | |
1785 { | |
1786 /* Set the status only after you press 'Enter' */ | |
1787 remove_typing_cb(NULL); | |
1788 return TRUE; | |
1789 } | |
1790 | |
1791 ggblist->typing = g_timeout_add(TYPING_TIMEOUT, (GSourceFunc)remove_typing_cb, NULL); | |
1792 return FALSE; | |
1793 } | |
1794 | |
1795 static void | |
15823 | 1796 savedstatus_changed(PurpleSavedStatus *now, PurpleSavedStatus *old) |
15818 | 1797 { |
1798 GList *list; | |
15823 | 1799 PurpleStatusPrimitive prim; |
15818 | 1800 const char *message; |
1801 gboolean found = FALSE, saved = TRUE; | |
1802 | |
1803 if (!ggblist) | |
1804 return; | |
1805 | |
1806 /* Block the signals we don't want to emit */ | |
1807 g_signal_handlers_block_matched(ggblist->status, G_SIGNAL_MATCH_FUNC, | |
1808 0, 0, NULL, status_selection_changed, NULL); | |
1809 g_signal_handlers_block_matched(ggblist->statustext, G_SIGNAL_MATCH_FUNC, | |
1810 0, 0, NULL, status_text_changed, NULL); | |
1811 | |
15823 | 1812 prim = purple_savedstatus_get_type(now); |
1813 message = purple_savedstatus_get_message(now); | |
15818 | 1814 |
1815 /* Rebuild the status dropdown */ | |
1816 populate_status_dropdown(); | |
1817 | |
1818 while (!found) { | |
1819 list = g_object_get_data(G_OBJECT(ggblist->status), "list of statuses"); | |
1820 for (; list; list = list->next) | |
1821 { | |
1822 StatusBoxItem *item = list->data; | |
1823 if ((saved && item->type != STATUS_PRIMITIVE && item->u.saved == now) || | |
1824 (!saved && item->type == STATUS_PRIMITIVE && item->u.prim == prim)) | |
1825 { | |
15823 | 1826 char *mess = purple_unescape_html(message); |
15818 | 1827 gnt_combo_box_set_selected(GNT_COMBO_BOX(ggblist->status), item); |
1828 gnt_entry_set_text(GNT_ENTRY(ggblist->statustext), mess); | |
1829 gnt_widget_draw(ggblist->status); | |
1830 g_free(mess); | |
1831 found = TRUE; | |
1832 break; | |
1833 } | |
1834 } | |
1835 if (!saved) | |
1836 break; | |
1837 saved = FALSE; | |
1838 } | |
1839 | |
1840 g_signal_handlers_unblock_matched(ggblist->status, G_SIGNAL_MATCH_FUNC, | |
1841 0, 0, NULL, status_selection_changed, NULL); | |
1842 g_signal_handlers_unblock_matched(ggblist->statustext, G_SIGNAL_MATCH_FUNC, | |
1843 0, 0, NULL, status_text_changed, NULL); | |
1844 } | |
1845 | |
1846 static int | |
16491
0b97b224a829
Never change the orders of chats or the groups.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16442
diff
changeset
|
1847 blist_node_compare_position(PurpleBlistNode *n1, PurpleBlistNode *n2) |
0b97b224a829
Never change the orders of chats or the groups.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16442
diff
changeset
|
1848 { |
0b97b224a829
Never change the orders of chats or the groups.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16442
diff
changeset
|
1849 while ((n1 = n1->prev) != NULL) |
0b97b224a829
Never change the orders of chats or the groups.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16442
diff
changeset
|
1850 if (n1 == n2) |
0b97b224a829
Never change the orders of chats or the groups.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16442
diff
changeset
|
1851 return 1; |
0b97b224a829
Never change the orders of chats or the groups.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16442
diff
changeset
|
1852 return -1; |
0b97b224a829
Never change the orders of chats or the groups.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16442
diff
changeset
|
1853 } |
0b97b224a829
Never change the orders of chats or the groups.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16442
diff
changeset
|
1854 |
0b97b224a829
Never change the orders of chats or the groups.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16442
diff
changeset
|
1855 static int |
15823 | 1856 blist_node_compare_text(PurpleBlistNode *n1, PurpleBlistNode *n2) |
15818 | 1857 { |
1858 const char *s1, *s2; | |
1859 char *us1, *us2; | |
1860 int ret; | |
1861 | |
1862 g_return_val_if_fail(n1->type == n2->type, -1); | |
1863 | |
1864 switch (n1->type) | |
1865 { | |
15823 | 1866 case PURPLE_BLIST_CHAT_NODE: |
1867 s1 = purple_chat_get_name((PurpleChat*)n1); | |
1868 s2 = purple_chat_get_name((PurpleChat*)n2); | |
15818 | 1869 break; |
15823 | 1870 case PURPLE_BLIST_BUDDY_NODE: |
1871 return purple_presence_compare(purple_buddy_get_presence((PurpleBuddy*)n1), | |
1872 purple_buddy_get_presence((PurpleBuddy*)n2)); | |
15818 | 1873 break; |
15823 | 1874 case PURPLE_BLIST_CONTACT_NODE: |
1875 s1 = purple_contact_get_alias((PurpleContact*)n1); | |
1876 s2 = purple_contact_get_alias((PurpleContact*)n2); | |
15818 | 1877 break; |
1878 default: | |
16491
0b97b224a829
Never change the orders of chats or the groups.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16442
diff
changeset
|
1879 return blist_node_compare_position(n1, n2); |
15818 | 1880 } |
1881 | |
1882 us1 = g_utf8_strup(s1, -1); | |
1883 us2 = g_utf8_strup(s2, -1); | |
1884 ret = g_utf8_collate(us1, us2); | |
1885 g_free(us1); | |
1886 g_free(us2); | |
1887 | |
1888 return ret; | |
1889 } | |
1890 | |
1891 static int | |
15823 | 1892 blist_node_compare_status(PurpleBlistNode *n1, PurpleBlistNode *n2) |
15818 | 1893 { |
1894 int ret; | |
1895 | |
1896 g_return_val_if_fail(n1->type == n2->type, -1); | |
1897 | |
1898 switch (n1->type) { | |
15823 | 1899 case PURPLE_BLIST_CONTACT_NODE: |
1900 n1 = (PurpleBlistNode*)purple_contact_get_priority_buddy((PurpleContact*)n1); | |
1901 n2 = (PurpleBlistNode*)purple_contact_get_priority_buddy((PurpleContact*)n2); | |
15818 | 1902 /* now compare the presence of the priority buddies */ |
15823 | 1903 case PURPLE_BLIST_BUDDY_NODE: |
1904 ret = purple_presence_compare(purple_buddy_get_presence((PurpleBuddy*)n1), | |
1905 purple_buddy_get_presence((PurpleBuddy*)n2)); | |
15818 | 1906 if (ret != 0) |
1907 return ret; | |
1908 break; | |
1909 default: | |
16491
0b97b224a829
Never change the orders of chats or the groups.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16442
diff
changeset
|
1910 return blist_node_compare_position(n1, n2); |
15818 | 1911 break; |
1912 } | |
1913 | |
1914 /* Sort alphabetically if presence is not comparable */ | |
1915 ret = blist_node_compare_text(n1, n2); | |
1916 | |
1917 return ret; | |
1918 } | |
1919 | |
1920 static int | |
15823 | 1921 get_contact_log_size(PurpleBlistNode *c) |
15818 | 1922 { |
1923 int log = 0; | |
15823 | 1924 PurpleBlistNode *node; |
15818 | 1925 |
1926 for (node = c->child; node; node = node->next) { | |
15823 | 1927 PurpleBuddy *b = (PurpleBuddy*)node; |
1928 log += purple_log_get_total_size(PURPLE_LOG_IM, b->name, b->account); | |
15818 | 1929 } |
1930 | |
1931 return log; | |
1932 } | |
1933 | |
1934 static int | |
15823 | 1935 blist_node_compare_log(PurpleBlistNode *n1, PurpleBlistNode *n2) |
15818 | 1936 { |
1937 int ret; | |
15823 | 1938 PurpleBuddy *b1, *b2; |
15818 | 1939 |
1940 g_return_val_if_fail(n1->type == n2->type, -1); | |
1941 | |
1942 switch (n1->type) { | |
15823 | 1943 case PURPLE_BLIST_BUDDY_NODE: |
1944 b1 = (PurpleBuddy*)n1; | |
1945 b2 = (PurpleBuddy*)n2; | |
1946 ret = purple_log_get_total_size(PURPLE_LOG_IM, b2->name, b2->account) - | |
1947 purple_log_get_total_size(PURPLE_LOG_IM, b1->name, b1->account); | |
15818 | 1948 if (ret != 0) |
1949 return ret; | |
1950 break; | |
15823 | 1951 case PURPLE_BLIST_CONTACT_NODE: |
15818 | 1952 ret = get_contact_log_size(n2) - get_contact_log_size(n1); |
1953 if (ret != 0) | |
1954 return ret; | |
1955 break; | |
1956 default: | |
16491
0b97b224a829
Never change the orders of chats or the groups.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16442
diff
changeset
|
1957 return blist_node_compare_position(n1, n2); |
15818 | 1958 } |
1959 ret = blist_node_compare_text(n1, n2); | |
1960 return ret; | |
1961 } | |
1962 | |
1963 static gboolean | |
1964 blist_clicked(GntTree *tree, GntMouseEvent event, int x, int y, gpointer ggblist) | |
1965 { | |
1966 if (event == GNT_RIGHT_MOUSE_DOWN) { | |
1967 draw_context_menu(ggblist); | |
1968 } | |
1969 return FALSE; | |
1970 } | |
1971 | |
1972 static void | |
1973 plugin_action(GntMenuItem *item, gpointer data) | |
1974 { | |
15823 | 1975 PurplePluginAction *action = data; |
15818 | 1976 if (action && action->callback) |
1977 action->callback(action); | |
1978 } | |
1979 | |
1980 static void | |
15823 | 1981 build_plugin_actions(GntMenuItem *item, PurplePlugin *plugin, gpointer context) |
15818 | 1982 { |
1983 GntWidget *sub = gnt_menu_new(GNT_MENU_POPUP); | |
1984 GList *actions; | |
1985 GntMenuItem *menuitem; | |
1986 | |
1987 gnt_menuitem_set_submenu(item, GNT_MENU(sub)); | |
15823 | 1988 for (actions = PURPLE_PLUGIN_ACTIONS(plugin, context); actions; |
15818 | 1989 actions = g_list_delete_link(actions, actions)) { |
1990 if (actions->data) { | |
15823 | 1991 PurplePluginAction *action = actions->data; |
15818 | 1992 action->plugin = plugin; |
1993 action->context = context; | |
1994 menuitem = gnt_menuitem_new(action->label); | |
1995 gnt_menu_add_item(GNT_MENU(sub), menuitem); | |
1996 | |
1997 gnt_menuitem_set_callback(menuitem, plugin_action, action); | |
1998 g_object_set_data_full(G_OBJECT(menuitem), "plugin_action", | |
15823 | 1999 action, (GDestroyNotify)purple_plugin_action_free); |
15818 | 2000 } |
2001 } | |
2002 } | |
2003 | |
2004 static void | |
2005 reconstruct_plugins_menu() | |
2006 { | |
2007 GntWidget *sub; | |
2008 GntMenuItem *plg; | |
2009 GList *iter; | |
2010 | |
2011 if (!ggblist) | |
2012 return; | |
2013 | |
2014 if (ggblist->plugins == NULL) | |
2015 ggblist->plugins = gnt_menuitem_new(_("Plugins")); | |
2016 | |
2017 plg = ggblist->plugins; | |
2018 sub = gnt_menu_new(GNT_MENU_POPUP); | |
2019 gnt_menuitem_set_submenu(plg, GNT_MENU(sub)); | |
2020 | |
15823 | 2021 for (iter = purple_plugins_get_loaded(); iter; iter = iter->next) { |
2022 PurplePlugin *plugin = iter->data; | |
15818 | 2023 GntMenuItem *item; |
15823 | 2024 if (PURPLE_IS_PROTOCOL_PLUGIN(plugin)) |
15818 | 2025 continue; |
2026 | |
15823 | 2027 if (!PURPLE_PLUGIN_HAS_ACTIONS(plugin)) |
15818 | 2028 continue; |
2029 | |
2030 item = gnt_menuitem_new(_(plugin->info->name)); | |
2031 gnt_menu_add_item(GNT_MENU(sub), item); | |
2032 build_plugin_actions(item, plugin, NULL); | |
2033 } | |
2034 } | |
2035 | |
2036 static void | |
2037 reconstruct_accounts_menu() | |
2038 { | |
2039 GntWidget *sub; | |
2040 GntMenuItem *acc, *item; | |
2041 GList *iter; | |
2042 | |
2043 if (!ggblist) | |
2044 return; | |
2045 | |
2046 if (ggblist->accounts == NULL) | |
2047 ggblist->accounts = gnt_menuitem_new(_("Accounts")); | |
2048 | |
2049 acc = ggblist->accounts; | |
2050 sub = gnt_menu_new(GNT_MENU_POPUP); | |
2051 gnt_menuitem_set_submenu(acc, GNT_MENU(sub)); | |
2052 | |
15823 | 2053 for (iter = purple_accounts_get_all_active(); iter; |
15818 | 2054 iter = g_list_delete_link(iter, iter)) { |
15823 | 2055 PurpleAccount *account = iter->data; |
2056 PurpleConnection *gc = purple_account_get_connection(account); | |
2057 PurplePlugin *prpl; | |
15818 | 2058 |
15823 | 2059 if (!gc || !PURPLE_CONNECTION_IS_CONNECTED(gc)) |
15818 | 2060 continue; |
2061 prpl = gc->prpl; | |
2062 | |
15823 | 2063 if (PURPLE_PLUGIN_HAS_ACTIONS(prpl)) { |
2064 item = gnt_menuitem_new(purple_account_get_username(account)); | |
15818 | 2065 gnt_menu_add_item(GNT_MENU(sub), item); |
2066 build_plugin_actions(item, prpl, gc); | |
2067 } | |
2068 } | |
2069 } | |
2070 | |
2071 static void | |
16782
d7ad8013b914
Fix this spectacularly braindead code. I must've been on the good stuff when I wrote this. Fixes #364.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16663
diff
changeset
|
2072 account_signed_on_cb(PurpleConnection *pc, gpointer null) |
15818 | 2073 { |
15823 | 2074 PurpleBlistNode *node; |
15818 | 2075 |
15823 | 2076 for (node = purple_blist_get_root(); node; |
2077 node = purple_blist_node_next(node, FALSE)) { | |
2078 if (PURPLE_BLIST_NODE_IS_CHAT(node)) { | |
2079 PurpleChat *chat = (PurpleChat*)node; | |
16782
d7ad8013b914
Fix this spectacularly braindead code. I must've been on the good stuff when I wrote this. Fixes #364.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16663
diff
changeset
|
2080 if (chat->account == purple_connection_get_account(pc) && |
d7ad8013b914
Fix this spectacularly braindead code. I must've been on the good stuff when I wrote this. Fixes #364.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16663
diff
changeset
|
2081 purple_blist_node_get_bool(node, "gnt-autojoin")) |
15823 | 2082 serv_join_chat(purple_account_get_connection(chat->account), chat->components); |
15818 | 2083 } |
2084 } | |
2085 } | |
2086 | |
2087 static void show_offline_cb(GntMenuItem *item, gpointer n) | |
2088 { | |
15823 | 2089 purple_prefs_set_bool(PREF_ROOT "/showoffline", |
2090 !purple_prefs_get_bool(PREF_ROOT "/showoffline")); | |
15818 | 2091 } |
2092 | |
2093 static void sort_blist_change_cb(GntMenuItem *item, gpointer n) | |
2094 { | |
15823 | 2095 purple_prefs_set_string(PREF_ROOT "/sort_type", n); |
15818 | 2096 } |
2097 | |
2098 /* XXX: send_im_select* -- Xerox */ | |
2099 static void | |
15823 | 2100 send_im_select_cb(gpointer data, PurpleRequestFields *fields) |
15818 | 2101 { |
15823 | 2102 PurpleAccount *account; |
15818 | 2103 const char *username; |
2104 | |
15823 | 2105 account = purple_request_fields_get_account(fields, "account"); |
2106 username = purple_request_fields_get_string(fields, "screenname"); | |
15818 | 2107 |
15823 | 2108 purple_conversation_new(PURPLE_CONV_TYPE_IM, account, username); |
15818 | 2109 } |
2110 | |
2111 static void | |
2112 send_im_select(GntMenuItem *item, gpointer n) | |
2113 { | |
15823 | 2114 PurpleRequestFields *fields; |
2115 PurpleRequestFieldGroup *group; | |
2116 PurpleRequestField *field; | |
15818 | 2117 |
15823 | 2118 fields = purple_request_fields_new(); |
15818 | 2119 |
15823 | 2120 group = purple_request_field_group_new(NULL); |
2121 purple_request_fields_add_group(fields, group); | |
15818 | 2122 |
15823 | 2123 field = purple_request_field_string_new("screenname", _("_Name"), NULL, FALSE); |
2124 purple_request_field_set_type_hint(field, "screenname"); | |
2125 purple_request_field_set_required(field, TRUE); | |
2126 purple_request_field_group_add_field(group, field); | |
15818 | 2127 |
15823 | 2128 field = purple_request_field_account_new("account", _("_Account"), NULL); |
2129 purple_request_field_set_type_hint(field, "account"); | |
2130 purple_request_field_set_visible(field, | |
2131 (purple_connections_get_all() != NULL && | |
2132 purple_connections_get_all()->next != NULL)); | |
2133 purple_request_field_set_required(field, TRUE); | |
2134 purple_request_field_group_add_field(group, field); | |
15818 | 2135 |
15823 | 2136 purple_request_fields(purple_get_blist(), _("New Instant Message"), |
15818 | 2137 NULL, |
2138 _("Please enter the screen name or alias of the person " | |
2139 "you would like to IM."), | |
2140 fields, | |
2141 _("OK"), G_CALLBACK(send_im_select_cb), | |
2142 _("Cancel"), NULL, | |
16442
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16427
diff
changeset
|
2143 NULL, NULL, NULL, |
15818 | 2144 NULL); |
2145 } | |
2146 | |
2147 static void | |
2148 create_menu() | |
2149 { | |
2150 GntWidget *menu, *sub; | |
2151 GntMenuItem *item; | |
2152 GntWindow *window; | |
2153 | |
2154 if (!ggblist) | |
2155 return; | |
2156 | |
2157 window = GNT_WINDOW(ggblist->window); | |
2158 ggblist->menu = menu = gnt_menu_new(GNT_MENU_TOPLEVEL); | |
2159 gnt_window_set_menu(window, GNT_MENU(menu)); | |
2160 | |
2161 item = gnt_menuitem_new(_("Options")); | |
2162 gnt_menu_add_item(GNT_MENU(menu), item); | |
2163 | |
2164 sub = gnt_menu_new(GNT_MENU_POPUP); | |
2165 gnt_menuitem_set_submenu(item, GNT_MENU(sub)); | |
2166 | |
2167 item = gnt_menuitem_new(_("Send IM...")); | |
2168 gnt_menu_add_item(GNT_MENU(sub), item); | |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15871
diff
changeset
|
2169 gnt_menuitem_set_callback(GNT_MENU_ITEM(item), send_im_select, NULL); |
15818 | 2170 |
16935
49f66fab6b31
Change a string.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16824
diff
changeset
|
2171 item = gnt_menuitem_check_new(_("Show offline buddies")); |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15871
diff
changeset
|
2172 gnt_menuitem_check_set_checked(GNT_MENU_ITEM_CHECK(item), |
15823 | 2173 purple_prefs_get_bool(PREF_ROOT "/showoffline")); |
15818 | 2174 gnt_menu_add_item(GNT_MENU(sub), item); |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15871
diff
changeset
|
2175 gnt_menuitem_set_callback(GNT_MENU_ITEM(item), show_offline_cb, NULL); |
15818 | 2176 |
2177 item = gnt_menuitem_new(_("Sort by status")); | |
2178 gnt_menu_add_item(GNT_MENU(sub), item); | |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15871
diff
changeset
|
2179 gnt_menuitem_set_callback(GNT_MENU_ITEM(item), sort_blist_change_cb, "status"); |
15818 | 2180 |
2181 item = gnt_menuitem_new(_("Sort alphabetically")); | |
2182 gnt_menu_add_item(GNT_MENU(sub), item); | |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15871
diff
changeset
|
2183 gnt_menuitem_set_callback(GNT_MENU_ITEM(item), sort_blist_change_cb, "text"); |
15818 | 2184 |
2185 item = gnt_menuitem_new(_("Sort by log size")); | |
2186 gnt_menu_add_item(GNT_MENU(sub), item); | |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15871
diff
changeset
|
2187 gnt_menuitem_set_callback(GNT_MENU_ITEM(item), sort_blist_change_cb, "log"); |
15818 | 2188 |
2189 reconstruct_accounts_menu(); | |
2190 gnt_menu_add_item(GNT_MENU(menu), ggblist->accounts); | |
2191 | |
2192 reconstruct_plugins_menu(); | |
2193 gnt_menu_add_item(GNT_MENU(menu), ggblist->plugins); | |
2194 } | |
2195 | |
2196 void finch_blist_show() | |
2197 { | |
15823 | 2198 blist_show(purple_get_blist()); |
15818 | 2199 } |
2200 | |
2201 static void | |
16105
1983ecd15174
Remember the collapsed state of groups in the blist
Richard Nelson <wabz@pidgin.im>
parents:
15931
diff
changeset
|
2202 group_collapsed(GntWidget *widget, PurpleBlistNode *node, gboolean collapsed, gpointer null) |
1983ecd15174
Remember the collapsed state of groups in the blist
Richard Nelson <wabz@pidgin.im>
parents:
15931
diff
changeset
|
2203 { |
16106 | 2204 if (PURPLE_BLIST_NODE_IS_GROUP(node)) |
2205 purple_blist_node_set_bool(node, "collapsed", collapsed); | |
16105
1983ecd15174
Remember the collapsed state of groups in the blist
Richard Nelson <wabz@pidgin.im>
parents:
15931
diff
changeset
|
2206 } |
1983ecd15174
Remember the collapsed state of groups in the blist
Richard Nelson <wabz@pidgin.im>
parents:
15931
diff
changeset
|
2207 |
1983ecd15174
Remember the collapsed state of groups in the blist
Richard Nelson <wabz@pidgin.im>
parents:
15931
diff
changeset
|
2208 static void |
15823 | 2209 blist_show(PurpleBuddyList *list) |
15818 | 2210 { |
2211 if (ggblist == NULL) | |
2212 new_list(list); | |
2213 else if (ggblist->window) | |
2214 return; | |
2215 | |
2216 ggblist->window = gnt_vwindow_new(FALSE); | |
2217 gnt_widget_set_name(ggblist->window, "buddylist"); | |
2218 gnt_box_set_toplevel(GNT_BOX(ggblist->window), TRUE); | |
2219 gnt_box_set_title(GNT_BOX(ggblist->window), _("Buddy List")); | |
2220 gnt_box_set_pad(GNT_BOX(ggblist->window), 0); | |
2221 | |
2222 ggblist->tree = gnt_tree_new(); | |
2223 | |
2224 GNT_WIDGET_SET_FLAGS(ggblist->tree, GNT_WIDGET_NO_BORDER); | |
15823 | 2225 gnt_widget_set_size(ggblist->tree, purple_prefs_get_int(PREF_ROOT "/size/width"), |
2226 purple_prefs_get_int(PREF_ROOT "/size/height")); | |
2227 gnt_widget_set_position(ggblist->window, purple_prefs_get_int(PREF_ROOT "/position/x"), | |
2228 purple_prefs_get_int(PREF_ROOT "/position/y")); | |
15818 | 2229 |
2230 gnt_tree_set_col_width(GNT_TREE(ggblist->tree), 0, | |
15823 | 2231 purple_prefs_get_int(PREF_ROOT "/size/width") - 1); |
15818 | 2232 |
2233 gnt_box_add_widget(GNT_BOX(ggblist->window), ggblist->tree); | |
2234 | |
2235 ggblist->status = gnt_combo_box_new(); | |
2236 gnt_box_add_widget(GNT_BOX(ggblist->window), ggblist->status); | |
2237 ggblist->statustext = gnt_entry_new(NULL); | |
2238 gnt_box_add_widget(GNT_BOX(ggblist->window), ggblist->statustext); | |
2239 | |
2240 gnt_widget_show(ggblist->window); | |
2241 | |
15823 | 2242 purple_signal_connect(purple_connections_get_handle(), "signed-on", finch_blist_get_handle(), |
2243 PURPLE_CALLBACK(reconstruct_accounts_menu), NULL); | |
2244 purple_signal_connect(purple_connections_get_handle(), "signed-off", finch_blist_get_handle(), | |
2245 PURPLE_CALLBACK(reconstruct_accounts_menu), NULL); | |
2246 purple_signal_connect(purple_blist_get_handle(), "buddy-status-changed", finch_blist_get_handle(), | |
2247 PURPLE_CALLBACK(buddy_status_changed), ggblist); | |
2248 purple_signal_connect(purple_blist_get_handle(), "buddy-idle-changed", finch_blist_get_handle(), | |
2249 PURPLE_CALLBACK(buddy_idle_changed), ggblist); | |
15818 | 2250 |
15823 | 2251 purple_signal_connect(purple_plugins_get_handle(), "plugin-load", finch_blist_get_handle(), |
2252 PURPLE_CALLBACK(reconstruct_plugins_menu), NULL); | |
2253 purple_signal_connect(purple_plugins_get_handle(), "plugin-unload", finch_blist_get_handle(), | |
2254 PURPLE_CALLBACK(reconstruct_plugins_menu), NULL); | |
15818 | 2255 |
2256 #if 0 | |
15823 | 2257 purple_signal_connect(purple_blist_get_handle(), "buddy-signed-on", finch_blist_get_handle(), |
2258 PURPLE_CALLBACK(buddy_signed_on), ggblist); | |
2259 purple_signal_connect(purple_blist_get_handle(), "buddy-signed-off", finch_blist_get_handle(), | |
2260 PURPLE_CALLBACK(buddy_signed_off), ggblist); | |
15818 | 2261 |
2262 /* These I plan to use to indicate unread-messages etc. */ | |
15823 | 2263 purple_signal_connect(purple_conversations_get_handle(), "received-im-msg", finch_blist_get_handle(), |
2264 PURPLE_CALLBACK(received_im_msg), list); | |
2265 purple_signal_connect(purple_conversations_get_handle(), "sent-im-msg", finch_blist_get_handle(), | |
2266 PURPLE_CALLBACK(sent_im_msg), NULL); | |
15818 | 2267 |
15823 | 2268 purple_signal_connect(purple_conversations_get_handle(), "received-chat-msg", finch_blist_get_handle(), |
2269 PURPLE_CALLBACK(received_chat_msg), list); | |
15818 | 2270 #endif |
2271 | |
2272 g_signal_connect(G_OBJECT(ggblist->tree), "selection_changed", G_CALLBACK(selection_changed), ggblist); | |
2273 g_signal_connect(G_OBJECT(ggblist->tree), "key_pressed", G_CALLBACK(key_pressed), ggblist); | |
2274 g_signal_connect(G_OBJECT(ggblist->tree), "context-menu", G_CALLBACK(context_menu), ggblist); | |
16105
1983ecd15174
Remember the collapsed state of groups in the blist
Richard Nelson <wabz@pidgin.im>
parents:
15931
diff
changeset
|
2275 g_signal_connect(G_OBJECT(ggblist->tree), "collapse-toggled", G_CALLBACK(group_collapsed), NULL); |
15818 | 2276 g_signal_connect_after(G_OBJECT(ggblist->tree), "clicked", G_CALLBACK(blist_clicked), ggblist); |
2277 g_signal_connect(G_OBJECT(ggblist->tree), "activate", G_CALLBACK(selection_activate), ggblist); | |
2278 g_signal_connect_data(G_OBJECT(ggblist->tree), "gained-focus", G_CALLBACK(draw_tooltip), | |
2279 ggblist, 0, G_CONNECT_AFTER | G_CONNECT_SWAPPED); | |
2280 g_signal_connect_data(G_OBJECT(ggblist->tree), "lost-focus", G_CALLBACK(remove_peripherals), | |
2281 ggblist, 0, G_CONNECT_AFTER | G_CONNECT_SWAPPED); | |
2282 g_signal_connect(G_OBJECT(ggblist->tree), "size_changed", G_CALLBACK(size_changed_cb), NULL); | |
2283 g_signal_connect(G_OBJECT(ggblist->window), "position_set", G_CALLBACK(save_position_cb), NULL); | |
2284 g_signal_connect(G_OBJECT(ggblist->window), "destroy", G_CALLBACK(reset_blist_window), NULL); | |
2285 | |
2286 /* Status signals */ | |
15823 | 2287 purple_signal_connect(purple_savedstatuses_get_handle(), "savedstatus-changed", finch_blist_get_handle(), |
2288 PURPLE_CALLBACK(savedstatus_changed), NULL); | |
15818 | 2289 g_signal_connect(G_OBJECT(ggblist->status), "selection_changed", |
2290 G_CALLBACK(status_selection_changed), NULL); | |
2291 g_signal_connect(G_OBJECT(ggblist->statustext), "key_pressed", | |
2292 G_CALLBACK(status_text_changed), NULL); | |
2293 | |
2294 create_menu(); | |
2295 | |
2296 populate_buddylist(); | |
2297 | |
15823 | 2298 savedstatus_changed(purple_savedstatus_get_current(), NULL); |
15818 | 2299 } |
2300 | |
2301 void finch_blist_uninit() | |
2302 { | |
2303 if (ggblist == NULL) | |
2304 return; | |
2305 | |
2306 gnt_widget_destroy(ggblist->window); | |
2307 g_free(ggblist); | |
2308 ggblist = NULL; | |
2309 } | |
2310 | |
2311 gboolean finch_blist_get_position(int *x, int *y) | |
2312 { | |
2313 if (!ggblist || !ggblist->window) | |
2314 return FALSE; | |
2315 gnt_widget_get_position(ggblist->window, x, y); | |
2316 return TRUE; | |
2317 } | |
2318 | |
2319 void finch_blist_set_position(int x, int y) | |
2320 { | |
2321 gnt_widget_set_position(ggblist->window, x, y); | |
2322 } | |
2323 | |
2324 gboolean finch_blist_get_size(int *width, int *height) | |
2325 { | |
2326 if (!ggblist || !ggblist->window) | |
2327 return FALSE; | |
2328 gnt_widget_get_size(ggblist->window, width, height); | |
2329 return TRUE; | |
2330 } | |
2331 | |
2332 void finch_blist_set_size(int width, int height) | |
2333 { | |
2334 gnt_widget_set_size(ggblist->window, width, height); | |
2335 } | |
2336 |