Mercurial > pidgin
annotate finch/gntconv.c @ 18929:67cb28c0ec89
applied changes from e52b685d84ca8874da6e3e71199829e513500642
through 504a3dc38ec168dab1f4443c13d14858db47cd70
- Pulling the ssl_connect_with_host_fd change from soc.2007.xmpp
author | William Ehlhardt <williamehlhardt@gmail.com> |
---|---|
date | Thu, 21 Jun 2007 19:21:47 +0000 |
parents | b8572b937c09 |
children | ef65d43190e5 ebc2288d9253 |
rev | line source |
---|---|
15817 | 1 /** |
2 * @file gntconv.c GNT Conversation API | |
16194
0f0832c13fcb
Rename the Doxygen group from gntui to finch and define the finch group
Richard Laager <rlaager@wiktel.com>
parents:
16128
diff
changeset
|
3 * @ingroup finch |
15817 | 4 * |
15870
66dff3dfdea6
Re-sed the copyright notices so they don't all talk about Purple.
Richard Laager <rlaager@wiktel.com>
parents:
15822
diff
changeset
|
5 * finch |
15817 | 6 * |
15870
66dff3dfdea6
Re-sed the copyright notices so they don't all talk about Purple.
Richard Laager <rlaager@wiktel.com>
parents:
15822
diff
changeset
|
7 * Finch is the legal property of its developers, whose names are too numerous |
15817 | 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 <string.h> | |
26 | |
18210
b8572b937c09
#include reorganizations to allow compiling with glib < 2.8 using the
Stu Tomlinson <stu@nosnilmot.com>
parents:
18100
diff
changeset
|
27 #include "finch.h" |
b8572b937c09
#include reorganizations to allow compiling with glib < 2.8 using the
Stu Tomlinson <stu@nosnilmot.com>
parents:
18100
diff
changeset
|
28 |
15817 | 29 #include <cmds.h> |
30 #include <idle.h> | |
31 #include <prefs.h> | |
32 #include <util.h> | |
33 | |
34 #include "gntaccount.h" | |
35 #include "gntblist.h" | |
36 #include "gntconv.h" | |
37 #include "gntdebug.h" | |
38 #include "gntplugin.h" | |
39 #include "gntprefs.h" | |
40 #include "gntstatus.h" | |
16892 | 41 #include "gntpounce.h" |
15817 | 42 |
43 #include "gnt.h" | |
44 #include "gntbox.h" | |
45 #include "gntentry.h" | |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
46 #include "gntlabel.h" |
16892 | 47 #include "gntmenu.h" |
48 #include "gntmenuitem.h" | |
49 #include "gntmenuitemcheck.h" | |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
50 #include "gnttextview.h" |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
51 #include "gnttree.h" |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
52 #include "gntutils.h" |
16892 | 53 #include "gntwindow.h" |
15817 | 54 |
16424
4999bbc52881
Works for me! Renames prefs: /core to /purple, /gaim/gtk to /pidgin, /gaim/gnt to /finch
Sean Egan <seanegan@gmail.com>
parents:
16194
diff
changeset
|
55 #define PREF_ROOT "/finch/conversations" |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
56 #define PREF_CHAT PREF_ROOT "/chats" |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
57 #define PREF_USERLIST PREF_CHAT "/userlist" |
15817 | 58 |
59 #include "config.h" | |
60 | |
17021
d6e855aedc30
Notify when you leave a chat, after /part or /kick.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16978
diff
changeset
|
61 static void finch_write_common(PurpleConversation *conv, const char *who, |
d6e855aedc30
Notify when you leave a chat, after /part or /kick.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16978
diff
changeset
|
62 const char *message, PurpleMessageFlags flags, time_t mtime); |
d6e855aedc30
Notify when you leave a chat, after /part or /kick.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16978
diff
changeset
|
63 |
15817 | 64 static void |
65 send_typing_notification(GntWidget *w, FinchConv *ggconv) | |
66 { | |
67 const char *text = gnt_entry_get_text(GNT_ENTRY(ggconv->entry)); | |
17813
289ac53f753f
Do not send typing notification if you are typing a /-command.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17750
diff
changeset
|
68 gboolean empty = (!text || !*text || (*text == '/')); |
16424
4999bbc52881
Works for me! Renames prefs: /core to /purple, /gaim/gtk to /pidgin, /gaim/gnt to /finch
Sean Egan <seanegan@gmail.com>
parents:
16194
diff
changeset
|
69 if (purple_prefs_get_bool("/finch/conversations/notify_typing")) { |
15822 | 70 PurpleConversation *conv = ggconv->active_conv; |
71 PurpleConvIm *im = PURPLE_CONV_IM(conv); | |
15817 | 72 if (!empty) { |
15822 | 73 gboolean send = (purple_conv_im_get_send_typed_timeout(im) == 0); |
15817 | 74 |
15822 | 75 purple_conv_im_stop_send_typed_timeout(im); |
76 purple_conv_im_start_send_typed_timeout(im); | |
77 if (send || (purple_conv_im_get_type_again(im) != 0 && | |
78 time(NULL) > purple_conv_im_get_type_again(im))) { | |
15817 | 79 unsigned int timeout; |
15822 | 80 timeout = serv_send_typing(purple_conversation_get_gc(conv), |
81 purple_conversation_get_name(conv), | |
82 PURPLE_TYPING); | |
83 purple_conv_im_set_type_again(im, timeout); | |
15817 | 84 } |
85 } else { | |
15822 | 86 purple_conv_im_stop_send_typed_timeout(im); |
15817 | 87 |
15822 | 88 serv_send_typing(purple_conversation_get_gc(conv), |
89 purple_conversation_get_name(conv), | |
90 PURPLE_NOT_TYPING); | |
15817 | 91 } |
92 } | |
93 } | |
94 | |
95 static gboolean | |
96 entry_key_pressed(GntWidget *w, const char *key, FinchConv *ggconv) | |
97 { | |
98 if (key[0] == '\r' && key[1] == 0) | |
99 { | |
100 const char *text = gnt_entry_get_text(GNT_ENTRY(ggconv->entry)); | |
101 if (*text == '/') | |
102 { | |
15822 | 103 PurpleConversation *conv = ggconv->active_conv; |
104 PurpleCmdStatus status; | |
15817 | 105 const char *cmdline = text + 1; |
106 char *error = NULL, *escape; | |
107 | |
108 escape = g_markup_escape_text(cmdline, -1); | |
15822 | 109 status = purple_cmd_do_command(conv, cmdline, escape, &error); |
15817 | 110 g_free(escape); |
111 | |
112 switch (status) | |
113 { | |
15822 | 114 case PURPLE_CMD_STATUS_OK: |
15817 | 115 break; |
15822 | 116 case PURPLE_CMD_STATUS_NOT_FOUND: |
117 purple_conversation_write(conv, "", _("No such command."), | |
118 PURPLE_MESSAGE_NO_LOG, time(NULL)); | |
15817 | 119 break; |
15822 | 120 case PURPLE_CMD_STATUS_WRONG_ARGS: |
121 purple_conversation_write(conv, "", _("Syntax Error: You typed the wrong number of arguments " | |
15817 | 122 "to that command."), |
15822 | 123 PURPLE_MESSAGE_NO_LOG, time(NULL)); |
15817 | 124 break; |
15822 | 125 case PURPLE_CMD_STATUS_FAILED: |
126 purple_conversation_write(conv, "", error ? error : _("Your command failed for an unknown reason."), | |
127 PURPLE_MESSAGE_NO_LOG, time(NULL)); | |
15817 | 128 break; |
15822 | 129 case PURPLE_CMD_STATUS_WRONG_TYPE: |
130 if(purple_conversation_get_type(conv) == PURPLE_CONV_TYPE_IM) | |
131 purple_conversation_write(conv, "", _("That command only works in chats, not IMs."), | |
132 PURPLE_MESSAGE_NO_LOG, time(NULL)); | |
15817 | 133 else |
15822 | 134 purple_conversation_write(conv, "", _("That command only works in IMs, not chats."), |
135 PURPLE_MESSAGE_NO_LOG, time(NULL)); | |
15817 | 136 break; |
15822 | 137 case PURPLE_CMD_STATUS_WRONG_PRPL: |
138 purple_conversation_write(conv, "", _("That command doesn't work on this protocol."), | |
139 PURPLE_MESSAGE_NO_LOG, time(NULL)); | |
15817 | 140 break; |
141 } | |
142 g_free(error); | |
143 #if 0 | |
144 gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(ggconv->tv), | |
145 _("Commands are not supported yet. Message was NOT sent."), | |
146 GNT_TEXT_FLAG_DIM | GNT_TEXT_FLAG_UNDERLINE); | |
147 gnt_text_view_next_line(GNT_TEXT_VIEW(ggconv->tv)); | |
148 gnt_text_view_scroll(GNT_TEXT_VIEW(ggconv->tv), 0); | |
149 #endif | |
150 } | |
151 else | |
152 { | |
153 char *escape = g_markup_escape_text(text, -1); | |
15822 | 154 char *apos = purple_strreplace(escape, "'", "'"); |
15817 | 155 g_free(escape); |
156 escape = apos; | |
15822 | 157 switch (purple_conversation_get_type(ggconv->active_conv)) |
15817 | 158 { |
15822 | 159 case PURPLE_CONV_TYPE_IM: |
160 purple_conv_im_send_with_flags(PURPLE_CONV_IM(ggconv->active_conv), escape, PURPLE_MESSAGE_SEND); | |
15817 | 161 break; |
15822 | 162 case PURPLE_CONV_TYPE_CHAT: |
163 purple_conv_chat_send(PURPLE_CONV_CHAT(ggconv->active_conv), escape); | |
15817 | 164 break; |
165 default: | |
166 g_free(escape); | |
167 g_return_val_if_reached(FALSE); | |
168 } | |
169 g_free(escape); | |
15822 | 170 purple_idle_touch(); |
15817 | 171 } |
172 gnt_entry_add_to_history(GNT_ENTRY(ggconv->entry), text); | |
173 gnt_entry_clear(GNT_ENTRY(ggconv->entry)); | |
174 return TRUE; | |
175 } | |
176 | |
177 return FALSE; | |
178 } | |
179 | |
180 static void | |
181 closing_window(GntWidget *window, FinchConv *ggconv) | |
182 { | |
183 GList *list = ggconv->list; | |
184 ggconv->window = NULL; | |
185 while (list) { | |
15822 | 186 PurpleConversation *conv = list->data; |
15817 | 187 list = list->next; |
15822 | 188 purple_conversation_destroy(conv); |
15817 | 189 } |
190 } | |
191 | |
192 static void | |
193 size_changed_cb(GntWidget *widget, int width, int height) | |
194 { | |
195 int w, h; | |
196 gnt_widget_get_size(widget, &w, &h); | |
15822 | 197 purple_prefs_set_int(PREF_ROOT "/size/width", w); |
198 purple_prefs_set_int(PREF_ROOT "/size/height", h); | |
15817 | 199 } |
200 | |
201 static void | |
202 save_position_cb(GntWidget *w, int x, int y) | |
203 { | |
15822 | 204 purple_prefs_set_int(PREF_ROOT "/position/x", x); |
205 purple_prefs_set_int(PREF_ROOT "/position/y", y); | |
15817 | 206 } |
207 | |
15822 | 208 static PurpleConversation * |
209 find_conv_with_contact(PurpleConversation *conv) | |
15817 | 210 { |
15822 | 211 PurpleBlistNode *node; |
212 PurpleBuddy *buddy = purple_find_buddy(conv->account, conv->name); | |
213 PurpleConversation *ret = NULL; | |
15817 | 214 |
215 if (!buddy) | |
216 return NULL; | |
217 | |
15822 | 218 for (node = ((PurpleBlistNode*)buddy)->parent->child; node; node = node->next) { |
219 if (node == (PurpleBlistNode*)buddy) | |
15817 | 220 continue; |
15822 | 221 if ((ret = purple_find_conversation_with_account(PURPLE_CONV_TYPE_IM, |
222 ((PurpleBuddy*)node)->name, ((PurpleBuddy*)node)->account)) != NULL) | |
15817 | 223 break; |
224 } | |
225 return ret; | |
226 } | |
227 | |
228 static char * | |
15822 | 229 get_conversation_title(PurpleConversation *conv, PurpleAccount *account) |
15817 | 230 { |
15822 | 231 return g_strdup_printf(_("%s (%s -- %s)"), purple_conversation_get_title(conv), |
232 purple_account_get_username(account), purple_account_get_protocol_name(account)); | |
15817 | 233 } |
234 | |
235 static void | |
15822 | 236 update_buddy_typing(PurpleAccount *account, const char *who, gpointer null) |
15817 | 237 { |
15822 | 238 PurpleConversation *conv; |
15817 | 239 FinchConv *ggc; |
15822 | 240 PurpleConvIm *im = NULL; |
15817 | 241 char *title, *str; |
242 | |
15822 | 243 conv = purple_find_conversation_with_account(PURPLE_CONV_TYPE_IM, who, account); |
15817 | 244 |
245 if (!conv) | |
246 return; | |
247 | |
15822 | 248 im = PURPLE_CONV_IM(conv); |
15817 | 249 ggc = conv->ui_data; |
250 | |
15822 | 251 if (purple_conv_im_get_typing_state(im) == PURPLE_TYPING) { |
15817 | 252 int scroll; |
253 str = get_conversation_title(conv, account); | |
254 title = g_strdup_printf(_("%s [%s]"), str, | |
255 gnt_ascii_only() ? "T" : "\342\243\277"); | |
256 g_free(str); | |
257 | |
258 scroll = gnt_text_view_get_lines_below(GNT_TEXT_VIEW(ggc->tv)); | |
15822 | 259 str = g_strdup_printf(_("\n%s is typing..."), purple_conversation_get_name(conv)); |
15817 | 260 /* Updating is a little buggy. So just remove and add a new one */ |
261 gnt_text_view_tag_change(GNT_TEXT_VIEW(ggc->tv), "typing", NULL, TRUE); | |
262 gnt_text_view_append_text_with_tag(GNT_TEXT_VIEW(ggc->tv), | |
263 str, GNT_TEXT_FLAG_DIM, "typing"); | |
264 g_free(str); | |
265 if (scroll <= 1) | |
266 gnt_text_view_scroll(GNT_TEXT_VIEW(ggc->tv), 0); | |
267 } else { | |
268 title = get_conversation_title(conv, account); | |
269 gnt_text_view_tag_change(GNT_TEXT_VIEW(ggc->tv), "typing", NULL, TRUE); | |
270 } | |
271 gnt_screen_rename_widget(ggc->window, title); | |
272 g_free(title); | |
273 } | |
274 | |
17021
d6e855aedc30
Notify when you leave a chat, after /part or /kick.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16978
diff
changeset
|
275 static void |
d6e855aedc30
Notify when you leave a chat, after /part or /kick.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16978
diff
changeset
|
276 chat_left_cb(PurpleConversation *conv, gpointer null) |
d6e855aedc30
Notify when you leave a chat, after /part or /kick.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16978
diff
changeset
|
277 { |
d6e855aedc30
Notify when you leave a chat, after /part or /kick.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16978
diff
changeset
|
278 finch_write_common(conv, NULL, _("You have left this chat."), |
d6e855aedc30
Notify when you leave a chat, after /part or /kick.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16978
diff
changeset
|
279 PURPLE_MESSAGE_SYSTEM, time(NULL)); |
d6e855aedc30
Notify when you leave a chat, after /part or /kick.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16978
diff
changeset
|
280 } |
d6e855aedc30
Notify when you leave a chat, after /part or /kick.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16978
diff
changeset
|
281 |
15817 | 282 static gpointer |
283 finch_conv_get_handle() | |
284 { | |
285 static int handle; | |
286 return &handle; | |
287 } | |
288 | |
289 static void | |
16892 | 290 clear_scrollback_cb(GntMenuItem *item, gpointer ggconv) |
291 { | |
292 FinchConv *ggc = ggconv; | |
293 gnt_text_view_clear(GNT_TEXT_VIEW(ggc->tv)); | |
294 } | |
295 | |
296 static void | |
297 send_file_cb(GntMenuItem *item, gpointer ggconv) | |
298 { | |
299 FinchConv *ggc = ggconv; | |
300 serv_send_file(purple_conversation_get_gc(ggc->active_conv), | |
301 purple_conversation_get_name(ggc->active_conv), NULL); | |
302 } | |
303 | |
304 static void | |
305 add_pounce_cb(GntMenuItem *item, gpointer ggconv) | |
306 { | |
307 FinchConv *ggc = ggconv; | |
308 finch_pounce_editor_show( | |
309 purple_conversation_get_account(ggc->active_conv), | |
310 purple_conversation_get_name(ggc->active_conv), NULL); | |
311 } | |
312 | |
313 static void | |
314 get_info_cb(GntMenuItem *item, gpointer ggconv) | |
315 { | |
316 FinchConv *ggc = ggconv; | |
17750
319bcb73eb4e
Use utility functions to get user info. Closes #964.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17091
diff
changeset
|
317 finch_retrieve_user_info(purple_conversation_get_gc(ggc->active_conv), |
16892 | 318 purple_conversation_get_name(ggc->active_conv)); |
319 } | |
320 | |
321 static void | |
322 toggle_timestamps_cb(GntMenuItem *item, gpointer ggconv) | |
323 { | |
324 purple_prefs_set_bool(PREF_ROOT "/timestamps", | |
325 !purple_prefs_get_bool(PREF_ROOT "/timestamps")); | |
326 } | |
327 | |
328 static void | |
329 send_to_cb(GntMenuItem *m, gpointer n) | |
330 { | |
331 PurpleAccount *account = g_object_get_data(G_OBJECT(m), "purple_account"); | |
332 gchar *buddy = g_object_get_data(G_OBJECT(m), "purple_buddy_name"); | |
333 PurpleConversation *conv = purple_conversation_new(PURPLE_CONV_TYPE_IM, account, buddy); | |
334 finch_conversation_set_active(conv); | |
335 } | |
336 | |
337 static void | |
338 generate_send_to_menu(FinchConv *ggc) | |
339 { | |
340 GntWidget *sub, *menu = ggc->menu; | |
341 GntMenuItem *item; | |
342 GSList *buds; | |
343 GList *list = NULL; | |
344 | |
345 buds = purple_find_buddies(ggc->active_conv->account, ggc->active_conv->name); | |
346 if (!buds) | |
347 return; | |
348 | |
349 item = gnt_menuitem_new(_("Send To")); | |
350 gnt_menu_add_item(GNT_MENU(menu), item); | |
351 sub = gnt_menu_new(GNT_MENU_POPUP); | |
352 gnt_menuitem_set_submenu(item, GNT_MENU(sub)); | |
353 | |
354 for (; buds; buds = buds->next) { | |
355 PurpleBlistNode *node = (PurpleBlistNode *)purple_buddy_get_contact((PurpleBuddy *)buds->data); | |
356 for (node = node->child; node != NULL; node = node->next) { | |
357 PurpleBuddy *buddy = (PurpleBuddy *)node; | |
358 PurpleAccount *account = purple_buddy_get_account(buddy); | |
359 if (purple_account_is_connected(account)) { | |
360 /* Use the PurplePresence to get unique buddies. */ | |
361 PurplePresence *presence = purple_buddy_get_presence(buddy); | |
362 if (!g_list_find(list, presence)) | |
363 list = g_list_prepend(list, presence); | |
364 } | |
365 } | |
366 } | |
367 for (list = g_list_last(list); list != NULL; list = list->prev) { | |
368 PurplePresence *pre = list->data; | |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
369 PurpleBuddy *buddy = purple_presence_get_buddy(pre); |
16892 | 370 PurpleAccount *account = purple_buddy_get_account(buddy); |
371 gchar *name = g_strdup(purple_buddy_get_name(buddy)); | |
372 gchar *text = g_strdup_printf("%s (%s)", purple_buddy_get_name(buddy), purple_account_get_username(account)); | |
373 item = gnt_menuitem_new(text); | |
374 g_free(text); | |
375 gnt_menu_add_item(GNT_MENU(sub), item); | |
376 gnt_menuitem_set_callback(item, send_to_cb, NULL); | |
377 g_object_set_data(G_OBJECT(item), "purple_account", account); | |
378 g_object_set_data_full(G_OBJECT(item), "purple_buddy_name", name, g_free); | |
379 } | |
380 g_list_free(list); | |
381 g_slist_free(buds); | |
382 } | |
383 | |
384 static void | |
385 gg_create_menu(FinchConv *ggc) | |
386 { | |
387 GntWidget *menu, *sub; | |
388 GntMenuItem *item; | |
389 | |
390 ggc->menu = menu = gnt_menu_new(GNT_MENU_TOPLEVEL); | |
391 gnt_window_set_menu(GNT_WINDOW(ggc->window), GNT_MENU(menu)); | |
392 | |
393 item = gnt_menuitem_new(_("Conversation")); | |
394 gnt_menu_add_item(GNT_MENU(menu), item); | |
395 | |
396 sub = gnt_menu_new(GNT_MENU_POPUP); | |
397 gnt_menuitem_set_submenu(item, GNT_MENU(sub)); | |
398 | |
399 item = gnt_menuitem_new(_("Clear Scrollback")); | |
400 gnt_menu_add_item(GNT_MENU(sub), item); | |
401 gnt_menuitem_set_callback(item, clear_scrollback_cb, ggc); | |
402 | |
403 item = gnt_menuitem_check_new(_("Show Timestamps")); | |
404 gnt_menuitem_check_set_checked(GNT_MENU_ITEM_CHECK(item), | |
405 purple_prefs_get_bool(PREF_ROOT "/timestamps")); | |
406 gnt_menu_add_item(GNT_MENU(sub), item); | |
407 gnt_menuitem_set_callback(item, toggle_timestamps_cb, ggc); | |
408 | |
409 if (purple_conversation_get_type(ggc->active_conv) == PURPLE_CONV_TYPE_IM) { | |
16958
1a336cfc410e
Change a string, and make sure non-functional items are not added in the conversation window menu.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16930
diff
changeset
|
410 PurpleAccount *account = purple_conversation_get_account(ggc->active_conv); |
1a336cfc410e
Change a string, and make sure non-functional items are not added in the conversation window menu.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16930
diff
changeset
|
411 PurplePluginProtocolInfo *pinfo = account->gc ? PURPLE_PLUGIN_PROTOCOL_INFO(account->gc->prpl) : NULL; |
1a336cfc410e
Change a string, and make sure non-functional items are not added in the conversation window menu.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16930
diff
changeset
|
412 |
1a336cfc410e
Change a string, and make sure non-functional items are not added in the conversation window menu.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16930
diff
changeset
|
413 if (pinfo && pinfo->get_info) { |
1a336cfc410e
Change a string, and make sure non-functional items are not added in the conversation window menu.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16930
diff
changeset
|
414 item = gnt_menuitem_new(_("Get Info")); |
1a336cfc410e
Change a string, and make sure non-functional items are not added in the conversation window menu.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16930
diff
changeset
|
415 gnt_menu_add_item(GNT_MENU(sub), item); |
1a336cfc410e
Change a string, and make sure non-functional items are not added in the conversation window menu.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16930
diff
changeset
|
416 gnt_menuitem_set_callback(item, get_info_cb, ggc); |
1a336cfc410e
Change a string, and make sure non-functional items are not added in the conversation window menu.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16930
diff
changeset
|
417 } |
16892 | 418 |
419 item = gnt_menuitem_new(_("Add Buddy Pounce...")); | |
420 gnt_menu_add_item(GNT_MENU(sub), item); | |
421 gnt_menuitem_set_callback(item, add_pounce_cb, ggc); | |
422 | |
16958
1a336cfc410e
Change a string, and make sure non-functional items are not added in the conversation window menu.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16930
diff
changeset
|
423 if (pinfo && pinfo->send_file && |
1a336cfc410e
Change a string, and make sure non-functional items are not added in the conversation window menu.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16930
diff
changeset
|
424 (!pinfo->can_receive_file || |
1a336cfc410e
Change a string, and make sure non-functional items are not added in the conversation window menu.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16930
diff
changeset
|
425 pinfo->can_receive_file(account->gc, purple_conversation_get_name(ggc->active_conv)))) { |
1a336cfc410e
Change a string, and make sure non-functional items are not added in the conversation window menu.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16930
diff
changeset
|
426 item = gnt_menuitem_new(_("Send File")); |
1a336cfc410e
Change a string, and make sure non-functional items are not added in the conversation window menu.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16930
diff
changeset
|
427 gnt_menu_add_item(GNT_MENU(sub), item); |
1a336cfc410e
Change a string, and make sure non-functional items are not added in the conversation window menu.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16930
diff
changeset
|
428 gnt_menuitem_set_callback(item, send_file_cb, ggc); |
1a336cfc410e
Change a string, and make sure non-functional items are not added in the conversation window menu.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16930
diff
changeset
|
429 } |
16892 | 430 |
431 generate_send_to_menu(ggc); | |
432 } | |
433 } | |
434 | |
435 static void | |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
436 create_conv_from_userlist(GntWidget *widget, FinchConv *fc) |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
437 { |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
438 PurpleAccount *account = purple_conversation_get_account(fc->active_conv); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
439 char *name = gnt_tree_get_selection_data(GNT_TREE(widget)); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
440 purple_conversation_new(PURPLE_CONV_TYPE_IM, account, name); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
441 } |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
442 |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
443 static void |
18100
f63b3a23280d
Provide a 'unseen-count' data for the conversations so the dbus-docklet can use that information.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17813
diff
changeset
|
444 gained_focus_cb(GntWindow *window, FinchConv *fc) |
f63b3a23280d
Provide a 'unseen-count' data for the conversations so the dbus-docklet can use that information.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17813
diff
changeset
|
445 { |
f63b3a23280d
Provide a 'unseen-count' data for the conversations so the dbus-docklet can use that information.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17813
diff
changeset
|
446 GList *iter; |
f63b3a23280d
Provide a 'unseen-count' data for the conversations so the dbus-docklet can use that information.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17813
diff
changeset
|
447 for (iter = fc->list; iter; iter = iter->next) { |
f63b3a23280d
Provide a 'unseen-count' data for the conversations so the dbus-docklet can use that information.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17813
diff
changeset
|
448 purple_conversation_set_data(iter->data, "unseen-count", 0); |
f63b3a23280d
Provide a 'unseen-count' data for the conversations so the dbus-docklet can use that information.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17813
diff
changeset
|
449 purple_conversation_update(iter->data, PURPLE_CONV_UPDATE_UNSEEN); |
f63b3a23280d
Provide a 'unseen-count' data for the conversations so the dbus-docklet can use that information.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17813
diff
changeset
|
450 } |
f63b3a23280d
Provide a 'unseen-count' data for the conversations so the dbus-docklet can use that information.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17813
diff
changeset
|
451 } |
f63b3a23280d
Provide a 'unseen-count' data for the conversations so the dbus-docklet can use that information.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17813
diff
changeset
|
452 |
f63b3a23280d
Provide a 'unseen-count' data for the conversations so the dbus-docklet can use that information.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17813
diff
changeset
|
453 static void |
15822 | 454 finch_create_conversation(PurpleConversation *conv) |
15817 | 455 { |
456 FinchConv *ggc = conv->ui_data; | |
457 char *title; | |
15822 | 458 PurpleConversationType type; |
459 PurpleConversation *cc; | |
460 PurpleAccount *account; | |
15817 | 461 |
462 if (ggc) | |
463 return; | |
464 | |
465 cc = find_conv_with_contact(conv); | |
466 if (cc && cc->ui_data) | |
467 ggc = cc->ui_data; | |
468 else | |
469 ggc = g_new0(FinchConv, 1); | |
470 | |
471 ggc->list = g_list_prepend(ggc->list, conv); | |
472 ggc->active_conv = conv; | |
473 conv->ui_data = ggc; | |
474 | |
475 if (cc && cc->ui_data) { | |
476 finch_conversation_set_active(conv); | |
477 return; | |
478 } | |
479 | |
15822 | 480 account = purple_conversation_get_account(conv); |
481 type = purple_conversation_get_type(conv); | |
15817 | 482 title = get_conversation_title(conv, account); |
483 | |
16892 | 484 ggc->window = gnt_vwindow_new(FALSE); |
15817 | 485 gnt_box_set_title(GNT_BOX(ggc->window), title); |
486 gnt_box_set_toplevel(GNT_BOX(ggc->window), TRUE); | |
487 gnt_box_set_pad(GNT_BOX(ggc->window), 0); | |
488 gnt_widget_set_name(ggc->window, "conversation-window"); | |
489 | |
16892 | 490 gg_create_menu(ggc); |
491 | |
15817 | 492 ggc->tv = gnt_text_view_new(); |
493 gnt_widget_set_name(ggc->tv, "conversation-window-textview"); | |
15822 | 494 gnt_widget_set_size(ggc->tv, purple_prefs_get_int(PREF_ROOT "/size/width"), |
495 purple_prefs_get_int(PREF_ROOT "/size/height")); | |
15817 | 496 |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
497 if (type == PURPLE_CONV_TYPE_CHAT) { |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
498 GntWidget *hbox, *tree; |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
499 FinchConvChat *fc = ggc->u.chat = g_new0(FinchConvChat, 1); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
500 hbox = gnt_hbox_new(FALSE); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
501 gnt_box_set_pad(GNT_BOX(hbox), 0); |
17070
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
502 tree = fc->userlist = gnt_tree_new_with_columns(2); |
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
503 gnt_tree_set_col_width(GNT_TREE(tree), 0, 1); /* The flag column */ |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
504 gnt_tree_set_compare_func(GNT_TREE(tree), (GCompareFunc)g_utf8_collate); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
505 gnt_tree_set_hash_fns(GNT_TREE(tree), g_str_hash, g_str_equal, g_free); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
506 GNT_WIDGET_SET_FLAGS(tree, GNT_WIDGET_NO_BORDER); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
507 gnt_box_add_widget(GNT_BOX(hbox), ggc->tv); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
508 gnt_box_add_widget(GNT_BOX(hbox), tree); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
509 gnt_box_add_widget(GNT_BOX(ggc->window), hbox); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
510 g_signal_connect(G_OBJECT(tree), "activate", G_CALLBACK(create_conv_from_userlist), ggc); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
511 gnt_widget_set_visible(tree, purple_prefs_get_bool(PREF_USERLIST)); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
512 } else { |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
513 gnt_box_add_widget(GNT_BOX(ggc->window), ggc->tv); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
514 } |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
515 |
16128
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
516 ggc->info = gnt_vbox_new(FALSE); |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
517 gnt_box_add_widget(GNT_BOX(ggc->window), ggc->info); |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
518 |
15817 | 519 ggc->entry = gnt_entry_new(NULL); |
520 gnt_box_add_widget(GNT_BOX(ggc->window), ggc->entry); | |
521 gnt_widget_set_name(ggc->entry, "conversation-window-entry"); | |
522 gnt_entry_set_history_length(GNT_ENTRY(ggc->entry), -1); | |
523 gnt_entry_set_word_suggest(GNT_ENTRY(ggc->entry), TRUE); | |
524 gnt_entry_set_always_suggest(GNT_ENTRY(ggc->entry), FALSE); | |
525 | |
16124
ab3f93232a2d
Add a utility function to assist scrolling in a textview.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15870
diff
changeset
|
526 gnt_text_view_attach_scroll_widget(GNT_TEXT_VIEW(ggc->tv), ggc->entry); |
15817 | 527 g_signal_connect_after(G_OBJECT(ggc->entry), "key_pressed", G_CALLBACK(entry_key_pressed), ggc); |
528 g_signal_connect(G_OBJECT(ggc->window), "destroy", G_CALLBACK(closing_window), ggc); | |
529 | |
15822 | 530 gnt_widget_set_position(ggc->window, purple_prefs_get_int(PREF_ROOT "/position/x"), |
531 purple_prefs_get_int(PREF_ROOT "/position/y")); | |
15817 | 532 gnt_widget_show(ggc->window); |
533 | |
534 g_signal_connect(G_OBJECT(ggc->tv), "size_changed", G_CALLBACK(size_changed_cb), NULL); | |
535 g_signal_connect(G_OBJECT(ggc->window), "position_set", G_CALLBACK(save_position_cb), NULL); | |
536 | |
15822 | 537 if (type == PURPLE_CONV_TYPE_IM) { |
15817 | 538 g_signal_connect(G_OBJECT(ggc->entry), "text_changed", G_CALLBACK(send_typing_notification), ggc); |
539 } | |
540 | |
541 g_free(title); | |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
542 gnt_box_give_focus_to_child(GNT_BOX(ggc->window), ggc->entry); |
18100
f63b3a23280d
Provide a 'unseen-count' data for the conversations so the dbus-docklet can use that information.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17813
diff
changeset
|
543 g_signal_connect(G_OBJECT(ggc->window), "gained-focus", G_CALLBACK(gained_focus_cb), ggc); |
15817 | 544 } |
545 | |
546 static void | |
15822 | 547 finch_destroy_conversation(PurpleConversation *conv) |
15817 | 548 { |
549 /* do stuff here */ | |
550 FinchConv *ggc = conv->ui_data; | |
551 ggc->list = g_list_remove(ggc->list, conv); | |
552 if (ggc->list && conv == ggc->active_conv) | |
553 ggc->active_conv = ggc->list->data; | |
554 | |
555 if (ggc->list == NULL) { | |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
556 g_free(ggc->u.chat); |
15817 | 557 gnt_widget_destroy(ggc->window); |
558 g_free(ggc); | |
559 } | |
560 } | |
561 | |
562 static void | |
15822 | 563 finch_write_common(PurpleConversation *conv, const char *who, const char *message, |
564 PurpleMessageFlags flags, time_t mtime) | |
15817 | 565 { |
566 FinchConv *ggconv = conv->ui_data; | |
567 char *strip, *newline; | |
568 GntTextFormatFlags fl = 0; | |
569 int pos; | |
570 gboolean notify; | |
571 | |
572 g_return_if_fail(ggconv != NULL); | |
573 | |
574 if (ggconv->active_conv != conv) { | |
15822 | 575 if (flags & (PURPLE_MESSAGE_SEND | PURPLE_MESSAGE_RECV)) |
15817 | 576 finch_conversation_set_active(conv); |
577 else | |
578 return; | |
579 } | |
580 | |
581 pos = gnt_text_view_get_lines_below(GNT_TEXT_VIEW(ggconv->tv)); | |
582 | |
583 notify = !!gnt_text_view_tag_change(GNT_TEXT_VIEW(ggconv->tv), "typing", NULL, TRUE); | |
584 gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(ggconv->tv), "\n", GNT_TEXT_FLAG_NORMAL); | |
585 | |
586 /* Unnecessary to print the timestamp for delayed message */ | |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
587 if (purple_prefs_get_bool("/finch/conversations/timestamps")) |
15817 | 588 gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(ggconv->tv), |
15822 | 589 purple_utf8_strftime("(%H:%M:%S) ", localtime(&mtime)), GNT_TEXT_FLAG_DIM); |
15817 | 590 |
15822 | 591 if (flags & PURPLE_MESSAGE_AUTO_RESP) |
15817 | 592 gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(ggconv->tv), |
593 _("<AUTO-REPLY> "), GNT_TEXT_FLAG_BOLD); | |
594 | |
15822 | 595 if (who && *who && (flags & (PURPLE_MESSAGE_SEND | PURPLE_MESSAGE_RECV))) |
15817 | 596 { |
597 char * name = NULL; | |
598 | |
15822 | 599 if (purple_message_meify((char*)message, -1)) |
15817 | 600 name = g_strdup_printf("*** %s ", who); |
601 else | |
602 name = g_strdup_printf("%s: ", who); | |
603 | |
604 gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(ggconv->tv), | |
605 name, GNT_TEXT_FLAG_BOLD); | |
606 g_free(name); | |
607 } | |
608 else | |
609 fl = GNT_TEXT_FLAG_DIM; | |
610 | |
15822 | 611 if (flags & PURPLE_MESSAGE_ERROR) |
15817 | 612 fl |= GNT_TEXT_FLAG_BOLD; |
15822 | 613 if (flags & PURPLE_MESSAGE_NICK) |
15817 | 614 fl |= GNT_TEXT_FLAG_UNDERLINE; |
615 | |
616 /* XXX: Remove this workaround when textview can parse messages. */ | |
15822 | 617 newline = purple_strdup_withhtml(message); |
618 strip = purple_markup_strip_html(newline); | |
15817 | 619 gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(ggconv->tv), |
620 strip, fl); | |
621 | |
622 g_free(newline); | |
623 g_free(strip); | |
624 | |
625 if (notify) { | |
15822 | 626 strip = g_strdup_printf(_("\n%s is typing..."), purple_conversation_get_name(conv)); |
15817 | 627 gnt_text_view_append_text_with_tag(GNT_TEXT_VIEW(ggconv->tv), |
628 strip, GNT_TEXT_FLAG_DIM, "typing"); | |
629 g_free(strip); | |
630 } | |
631 | |
632 if (pos <= 1) | |
633 gnt_text_view_scroll(GNT_TEXT_VIEW(ggconv->tv), 0); | |
634 | |
15822 | 635 if (flags & (PURPLE_MESSAGE_RECV | PURPLE_MESSAGE_NICK | PURPLE_MESSAGE_ERROR)) |
15817 | 636 gnt_widget_set_urgent(ggconv->tv); |
18100
f63b3a23280d
Provide a 'unseen-count' data for the conversations so the dbus-docklet can use that information.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17813
diff
changeset
|
637 if (flags & PURPLE_MESSAGE_RECV && !gnt_widget_has_focus(ggconv->window)) { |
f63b3a23280d
Provide a 'unseen-count' data for the conversations so the dbus-docklet can use that information.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17813
diff
changeset
|
638 int count = GPOINTER_TO_INT(purple_conversation_get_data(conv, "unseen-count")); |
f63b3a23280d
Provide a 'unseen-count' data for the conversations so the dbus-docklet can use that information.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17813
diff
changeset
|
639 purple_conversation_set_data(conv, "unseen-count", GINT_TO_POINTER(count + 1)); |
f63b3a23280d
Provide a 'unseen-count' data for the conversations so the dbus-docklet can use that information.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17813
diff
changeset
|
640 purple_conversation_update(conv, PURPLE_CONV_UPDATE_UNSEEN); |
f63b3a23280d
Provide a 'unseen-count' data for the conversations so the dbus-docklet can use that information.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17813
diff
changeset
|
641 } |
15817 | 642 } |
643 | |
644 static void | |
15822 | 645 finch_write_chat(PurpleConversation *conv, const char *who, const char *message, |
646 PurpleMessageFlags flags, time_t mtime) | |
15817 | 647 { |
15822 | 648 purple_conversation_write(conv, who, message, flags, mtime); |
15817 | 649 } |
650 | |
651 static void | |
15822 | 652 finch_write_im(PurpleConversation *conv, const char *who, const char *message, |
653 PurpleMessageFlags flags, time_t mtime) | |
15817 | 654 { |
15822 | 655 PurpleAccount *account = purple_conversation_get_account(conv); |
656 if (flags & PURPLE_MESSAGE_SEND) | |
15817 | 657 { |
15822 | 658 who = purple_connection_get_display_name(purple_account_get_connection(account)); |
15817 | 659 if (!who) |
15822 | 660 who = purple_account_get_alias(account); |
15817 | 661 if (!who) |
15822 | 662 who = purple_account_get_username(account); |
15817 | 663 } |
15822 | 664 else if (flags & PURPLE_MESSAGE_RECV) |
15817 | 665 { |
15822 | 666 PurpleBuddy *buddy; |
667 who = purple_conversation_get_name(conv); | |
668 buddy = purple_find_buddy(account, who); | |
15817 | 669 if (buddy) |
15822 | 670 who = purple_buddy_get_contact_alias(buddy); |
15817 | 671 } |
672 | |
15822 | 673 purple_conversation_write(conv, who, message, flags, mtime); |
15817 | 674 } |
675 | |
676 static void | |
15822 | 677 finch_write_conv(PurpleConversation *conv, const char *who, const char *alias, |
678 const char *message, PurpleMessageFlags flags, time_t mtime) | |
15817 | 679 { |
680 const char *name; | |
681 if (alias && *alias) | |
682 name = alias; | |
683 else if (who && *who) | |
684 name = who; | |
685 else | |
686 name = NULL; | |
687 | |
688 finch_write_common(conv, name, message, flags, mtime); | |
689 } | |
690 | |
17070
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
691 static const char * |
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
692 chat_flag_text(PurpleConvChatBuddyFlags flags) |
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
693 { |
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
694 if (flags & PURPLE_CBFLAGS_FOUNDER) |
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
695 return "~"; |
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
696 if (flags & PURPLE_CBFLAGS_OP) |
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
697 return "@"; |
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
698 if (flags & PURPLE_CBFLAGS_HALFOP) |
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
699 return "%"; |
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
700 if (flags & PURPLE_CBFLAGS_VOICE) |
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
701 return "+"; |
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
702 return " "; |
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
703 } |
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
704 |
15817 | 705 static void |
15822 | 706 finch_chat_add_users(PurpleConversation *conv, GList *users, gboolean new_arrivals) |
15817 | 707 { |
708 FinchConv *ggc = conv->ui_data; | |
709 GntEntry *entry = GNT_ENTRY(ggc->entry); | |
710 | |
711 if (!new_arrivals) | |
712 { | |
713 /* Print the list of users in the room */ | |
714 GString *string = g_string_new(_("List of users:\n")); | |
715 GList *iter; | |
716 | |
717 for (iter = users; iter; iter = iter->next) | |
718 { | |
15822 | 719 PurpleConvChatBuddy *cbuddy = iter->data; |
15817 | 720 char *str; |
721 | |
722 if ((str = cbuddy->alias) == NULL) | |
723 str = cbuddy->name; | |
724 g_string_append_printf(string, "[ %s ]", str); | |
725 } | |
726 | |
15822 | 727 purple_conversation_write(conv, NULL, string->str, |
728 PURPLE_MESSAGE_SYSTEM, time(NULL)); | |
15817 | 729 g_string_free(string, TRUE); |
730 } | |
731 | |
732 for (; users; users = users->next) | |
733 { | |
15822 | 734 PurpleConvChatBuddy *cbuddy = users->data; |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
735 GntTree *tree = GNT_TREE(ggc->u.chat->userlist); |
15817 | 736 gnt_entry_add_suggest(entry, cbuddy->name); |
737 gnt_entry_add_suggest(entry, cbuddy->alias); | |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
738 gnt_tree_add_row_after(tree, g_strdup(cbuddy->name), |
17070
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
739 gnt_tree_create_row(tree, chat_flag_text(cbuddy->flags), cbuddy->alias), NULL, NULL); |
15817 | 740 } |
741 } | |
742 | |
743 static void | |
15822 | 744 finch_chat_rename_user(PurpleConversation *conv, const char *old, const char *new_n, const char *new_a) |
15817 | 745 { |
746 /* Update the name for string completion */ | |
747 FinchConv *ggc = conv->ui_data; | |
748 GntEntry *entry = GNT_ENTRY(ggc->entry); | |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
749 GntTree *tree = GNT_TREE(ggc->u.chat->userlist); |
17070
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
750 PurpleConvChatBuddy *cb = purple_conv_chat_cb_find(PURPLE_CONV_CHAT(conv), new_n); |
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
751 |
15817 | 752 gnt_entry_remove_suggest(entry, old); |
17070
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
753 gnt_tree_remove(tree, (gpointer)old); |
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
754 |
15817 | 755 gnt_entry_add_suggest(entry, new_n); |
756 gnt_entry_add_suggest(entry, new_a); | |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
757 gnt_tree_add_row_after(tree, g_strdup(new_n), |
17070
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
758 gnt_tree_create_row(tree, chat_flag_text(cb->flags), new_a), NULL, NULL); |
15817 | 759 } |
760 | |
761 static void | |
17091
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
762 finch_chat_remove_users(PurpleConversation *conv, GList *list) |
15817 | 763 { |
764 /* Remove the name from string completion */ | |
765 FinchConv *ggc = conv->ui_data; | |
766 GntEntry *entry = GNT_ENTRY(ggc->entry); | |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
767 for (; list; list = list->next) { |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
768 GntTree *tree = GNT_TREE(ggc->u.chat->userlist); |
15817 | 769 gnt_entry_remove_suggest(entry, list->data); |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
770 gnt_tree_remove(tree, list->data); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
771 } |
15817 | 772 } |
773 | |
774 static void | |
15822 | 775 finch_chat_update_user(PurpleConversation *conv, const char *user) |
15817 | 776 { |
17070
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
777 PurpleConvChatBuddy *cb = purple_conv_chat_cb_find(PURPLE_CONV_CHAT(conv), user); |
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
778 FinchConv *ggc = conv->ui_data; |
f2137f75fd10
Show user flags in chat userlist.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17021
diff
changeset
|
779 gnt_tree_change_text(GNT_TREE(ggc->u.chat->userlist), (gpointer)user, 0, chat_flag_text(cb->flags)); |
15817 | 780 } |
781 | |
15822 | 782 static PurpleConversationUiOps conv_ui_ops = |
15817 | 783 { |
17091
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
784 finch_create_conversation, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
785 finch_destroy_conversation, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
786 finch_write_chat, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
787 finch_write_im, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
788 finch_write_conv, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
789 finch_chat_add_users, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
790 finch_chat_rename_user, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
791 finch_chat_remove_users, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
792 finch_chat_update_user, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
793 NULL, /* present */ |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
794 NULL, /* has_focus */ |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
795 NULL, /* custom_smiley_add */ |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
796 NULL, /* custom_smiley_write */ |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
797 NULL, /* custom_smiley_close */ |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
798 NULL, /* send_confirm */ |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
799 NULL, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
800 NULL, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
801 NULL, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
17070
diff
changeset
|
802 NULL |
15817 | 803 }; |
804 | |
15822 | 805 PurpleConversationUiOps *finch_conv_get_ui_ops() |
15817 | 806 { |
807 return &conv_ui_ops; | |
808 } | |
809 | |
810 /* Xerox */ | |
15822 | 811 static PurpleCmdRet |
812 say_command_cb(PurpleConversation *conv, | |
15817 | 813 const char *cmd, char **args, char **error, void *data) |
814 { | |
15822 | 815 if (purple_conversation_get_type(conv) == PURPLE_CONV_TYPE_IM) |
816 purple_conv_im_send(PURPLE_CONV_IM(conv), args[0]); | |
817 else if (purple_conversation_get_type(conv) == PURPLE_CONV_TYPE_CHAT) | |
818 purple_conv_chat_send(PURPLE_CONV_CHAT(conv), args[0]); | |
15817 | 819 |
15822 | 820 return PURPLE_CMD_RET_OK; |
15817 | 821 } |
822 | |
823 /* Xerox */ | |
15822 | 824 static PurpleCmdRet |
825 me_command_cb(PurpleConversation *conv, | |
15817 | 826 const char *cmd, char **args, char **error, void *data) |
827 { | |
828 char *tmp; | |
829 | |
830 tmp = g_strdup_printf("/me %s", args[0]); | |
831 | |
15822 | 832 if (purple_conversation_get_type(conv) == PURPLE_CONV_TYPE_IM) |
833 purple_conv_im_send(PURPLE_CONV_IM(conv), tmp); | |
834 else if (purple_conversation_get_type(conv) == PURPLE_CONV_TYPE_CHAT) | |
835 purple_conv_chat_send(PURPLE_CONV_CHAT(conv), tmp); | |
15817 | 836 |
837 g_free(tmp); | |
15822 | 838 return PURPLE_CMD_RET_OK; |
15817 | 839 } |
840 | |
841 /* Xerox */ | |
15822 | 842 static PurpleCmdRet |
843 debug_command_cb(PurpleConversation *conv, | |
15817 | 844 const char *cmd, char **args, char **error, void *data) |
845 { | |
846 char *tmp, *markup; | |
15822 | 847 PurpleCmdStatus status; |
15817 | 848 |
849 if (!g_ascii_strcasecmp(args[0], "version")) { | |
16930
00c24829e243
Patch #751 from 'Dustin Howett' to change the output string from /debug version.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16893
diff
changeset
|
850 tmp = g_strdup_printf("me is using Finch v%s.", VERSION); |
15817 | 851 markup = g_markup_escape_text(tmp, -1); |
852 | |
15822 | 853 status = purple_cmd_do_command(conv, tmp, markup, error); |
15817 | 854 |
855 g_free(tmp); | |
856 g_free(markup); | |
857 return status; | |
858 } else { | |
15822 | 859 purple_conversation_write(conv, NULL, _("Supported debug options are: version"), |
860 PURPLE_MESSAGE_NO_LOG|PURPLE_MESSAGE_ERROR, time(NULL)); | |
861 return PURPLE_CMD_STATUS_OK; | |
15817 | 862 } |
863 } | |
864 | |
865 /* Xerox */ | |
15822 | 866 static PurpleCmdRet |
867 clear_command_cb(PurpleConversation *conv, | |
15817 | 868 const char *cmd, char **args, char **error, void *data) |
869 { | |
870 FinchConv *ggconv = conv->ui_data; | |
871 gnt_text_view_clear(GNT_TEXT_VIEW(ggconv->tv)); | |
15822 | 872 return PURPLE_CMD_STATUS_OK; |
15817 | 873 } |
874 | |
875 /* Xerox */ | |
15822 | 876 static PurpleCmdRet |
877 help_command_cb(PurpleConversation *conv, | |
15817 | 878 const char *cmd, char **args, char **error, void *data) |
879 { | |
880 GList *l, *text; | |
881 GString *s; | |
882 | |
883 if (args[0] != NULL) { | |
884 s = g_string_new(""); | |
15822 | 885 text = purple_cmd_help(conv, args[0]); |
15817 | 886 |
887 if (text) { | |
888 for (l = text; l; l = l->next) | |
889 if (l->next) | |
890 g_string_append_printf(s, "%s\n", (char *)l->data); | |
891 else | |
892 g_string_append_printf(s, "%s", (char *)l->data); | |
893 } else { | |
894 g_string_append(s, _("No such command (in this context).")); | |
895 } | |
896 } else { | |
897 s = g_string_new(_("Use \"/help <command>\" for help on a specific command.\n" | |
898 "The following commands are available in this context:\n")); | |
899 | |
15822 | 900 text = purple_cmd_list(conv); |
15817 | 901 for (l = text; l; l = l->next) |
902 if (l->next) | |
903 g_string_append_printf(s, "%s, ", (char *)l->data); | |
904 else | |
905 g_string_append_printf(s, "%s.", (char *)l->data); | |
906 g_list_free(text); | |
907 } | |
908 | |
15822 | 909 purple_conversation_write(conv, NULL, s->str, PURPLE_MESSAGE_NO_LOG, time(NULL)); |
15817 | 910 g_string_free(s, TRUE); |
911 | |
15822 | 912 return PURPLE_CMD_STATUS_OK; |
15817 | 913 } |
914 | |
15822 | 915 static PurpleCmdRet |
916 cmd_show_window(PurpleConversation *conv, const char *cmd, char **args, char **error, gpointer data) | |
15817 | 917 { |
918 void (*callback)() = data; | |
919 callback(); | |
15822 | 920 return PURPLE_CMD_STATUS_OK; |
15817 | 921 } |
922 | |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
923 static PurpleCmdRet |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
924 users_command_cb(PurpleConversation *conv, const char *cmd, char **args, char **error, gpointer data) |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
925 { |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
926 FinchConv *fc = conv->ui_data; |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
927 FinchConvChat *ch; |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
928 if (!fc) |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
929 return PURPLE_CMD_STATUS_FAILED; |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
930 |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
931 ch = fc->u.chat; |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
932 gnt_widget_set_visible(ch->userlist, |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
933 (GNT_WIDGET_IS_FLAG_SET(ch->userlist, GNT_WIDGET_INVISIBLE))); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
934 gnt_box_readjust(GNT_BOX(fc->window)); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
935 gnt_box_give_focus_to_child(GNT_BOX(fc->window), fc->entry); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
936 purple_prefs_set_bool(PREF_USERLIST, !(GNT_WIDGET_IS_FLAG_SET(ch->userlist, GNT_WIDGET_INVISIBLE))); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
937 return PURPLE_CMD_STATUS_OK; |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
938 } |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
939 |
15817 | 940 void finch_conversation_init() |
941 { | |
15822 | 942 purple_prefs_add_none(PREF_ROOT); |
943 purple_prefs_add_none(PREF_ROOT "/size"); | |
944 purple_prefs_add_int(PREF_ROOT "/size/width", 70); | |
945 purple_prefs_add_int(PREF_ROOT "/size/height", 20); | |
946 purple_prefs_add_none(PREF_ROOT "/position"); | |
947 purple_prefs_add_int(PREF_ROOT "/position/x", 0); | |
948 purple_prefs_add_int(PREF_ROOT "/position/y", 0); | |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
949 purple_prefs_add_none(PREF_CHAT); |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
950 purple_prefs_add_bool(PREF_USERLIST, FALSE); |
15817 | 951 |
952 /* Xerox the commands */ | |
15822 | 953 purple_cmd_register("say", "S", PURPLE_CMD_P_DEFAULT, |
954 PURPLE_CMD_FLAG_CHAT | PURPLE_CMD_FLAG_IM, NULL, | |
15817 | 955 say_command_cb, _("say <message>: Send a message normally as if you weren't using a command."), NULL); |
15822 | 956 purple_cmd_register("me", "S", PURPLE_CMD_P_DEFAULT, |
957 PURPLE_CMD_FLAG_CHAT | PURPLE_CMD_FLAG_IM, NULL, | |
15817 | 958 me_command_cb, _("me <action>: Send an IRC style action to a buddy or chat."), NULL); |
15822 | 959 purple_cmd_register("debug", "w", PURPLE_CMD_P_DEFAULT, |
960 PURPLE_CMD_FLAG_CHAT | PURPLE_CMD_FLAG_IM, NULL, | |
15817 | 961 debug_command_cb, _("debug <option>: Send various debug information to the current conversation."), NULL); |
15822 | 962 purple_cmd_register("clear", "", PURPLE_CMD_P_DEFAULT, |
963 PURPLE_CMD_FLAG_CHAT | PURPLE_CMD_FLAG_IM, NULL, | |
15817 | 964 clear_command_cb, _("clear: Clears the conversation scrollback."), NULL); |
15822 | 965 purple_cmd_register("help", "w", PURPLE_CMD_P_DEFAULT, |
966 PURPLE_CMD_FLAG_CHAT | PURPLE_CMD_FLAG_IM | PURPLE_CMD_FLAG_ALLOW_WRONG_ARGS, NULL, | |
15817 | 967 help_command_cb, _("help <command>: Help on a specific command."), NULL); |
16893
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
968 purple_cmd_register("users", "", PURPLE_CMD_P_DEFAULT, |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
969 PURPLE_CMD_FLAG_CHAT | PURPLE_CMD_FLAG_ALLOW_WRONG_ARGS, NULL, |
b799918b6cdc
Add a /users command to toggle the userlist in chat windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16892
diff
changeset
|
970 users_command_cb, _("users: Show the list of users in the chat."), NULL); |
15817 | 971 |
972 /* Now some commands to bring up some other windows */ | |
15822 | 973 purple_cmd_register("plugins", "", PURPLE_CMD_P_DEFAULT, |
974 PURPLE_CMD_FLAG_CHAT | PURPLE_CMD_FLAG_IM, NULL, | |
15817 | 975 cmd_show_window, _("plugins: Show the plugins window."), finch_plugins_show_all); |
15822 | 976 purple_cmd_register("buddylist", "", PURPLE_CMD_P_DEFAULT, |
977 PURPLE_CMD_FLAG_CHAT | PURPLE_CMD_FLAG_IM, NULL, | |
15817 | 978 cmd_show_window, _("buddylist: Show the buddylist."), finch_blist_show); |
15822 | 979 purple_cmd_register("accounts", "", PURPLE_CMD_P_DEFAULT, |
980 PURPLE_CMD_FLAG_CHAT | PURPLE_CMD_FLAG_IM, NULL, | |
15817 | 981 cmd_show_window, _("accounts: Show the accounts window."), finch_accounts_show_all); |
15822 | 982 purple_cmd_register("debugwin", "", PURPLE_CMD_P_DEFAULT, |
983 PURPLE_CMD_FLAG_CHAT | PURPLE_CMD_FLAG_IM, NULL, | |
15817 | 984 cmd_show_window, _("debugwin: Show the debug window."), finch_debug_window_show); |
15822 | 985 purple_cmd_register("prefs", "", PURPLE_CMD_P_DEFAULT, |
986 PURPLE_CMD_FLAG_CHAT | PURPLE_CMD_FLAG_IM, NULL, | |
15817 | 987 cmd_show_window, _("prefs: Show the preference window."), finch_prefs_show_all); |
15822 | 988 purple_cmd_register("status", "", PURPLE_CMD_P_DEFAULT, |
989 PURPLE_CMD_FLAG_CHAT | PURPLE_CMD_FLAG_IM, NULL, | |
15817 | 990 cmd_show_window, _("statuses: Show the savedstatuses window."), finch_savedstatus_show_all); |
17021
d6e855aedc30
Notify when you leave a chat, after /part or /kick.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16978
diff
changeset
|
991 |
d6e855aedc30
Notify when you leave a chat, after /part or /kick.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16978
diff
changeset
|
992 purple_signal_connect(purple_conversations_get_handle(), "buddy-typing", finch_conv_get_handle(), |
d6e855aedc30
Notify when you leave a chat, after /part or /kick.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16978
diff
changeset
|
993 PURPLE_CALLBACK(update_buddy_typing), NULL); |
d6e855aedc30
Notify when you leave a chat, after /part or /kick.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16978
diff
changeset
|
994 purple_signal_connect(purple_conversations_get_handle(), "buddy-typing-stopped", finch_conv_get_handle(), |
d6e855aedc30
Notify when you leave a chat, after /part or /kick.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16978
diff
changeset
|
995 PURPLE_CALLBACK(update_buddy_typing), NULL); |
d6e855aedc30
Notify when you leave a chat, after /part or /kick.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16978
diff
changeset
|
996 purple_signal_connect(purple_conversations_get_handle(), "chat-left", finch_conv_get_handle(), |
d6e855aedc30
Notify when you leave a chat, after /part or /kick.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16978
diff
changeset
|
997 PURPLE_CALLBACK(chat_left_cb), NULL); |
15817 | 998 } |
999 | |
1000 void finch_conversation_uninit() | |
1001 { | |
17021
d6e855aedc30
Notify when you leave a chat, after /part or /kick.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16978
diff
changeset
|
1002 purple_signals_disconnect_by_handle(finch_conv_get_handle()); |
15817 | 1003 } |
1004 | |
15822 | 1005 void finch_conversation_set_active(PurpleConversation *conv) |
15817 | 1006 { |
1007 FinchConv *ggconv = conv->ui_data; | |
15822 | 1008 PurpleAccount *account; |
15817 | 1009 char *title; |
1010 | |
1011 g_return_if_fail(ggconv); | |
1012 g_return_if_fail(g_list_find(ggconv->list, conv)); | |
1013 | |
1014 ggconv->active_conv = conv; | |
15822 | 1015 account = purple_conversation_get_account(conv); |
15817 | 1016 title = get_conversation_title(conv, account); |
1017 gnt_screen_rename_widget(ggconv->window, title); | |
1018 g_free(title); | |
1019 } | |
1020 | |
16128
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
1021 void finch_conversation_set_info_widget(PurpleConversation *conv, GntWidget *widget) |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
1022 { |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
1023 FinchConv *fc = conv->ui_data; |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
1024 int height, width; |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
1025 |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
1026 gnt_box_remove_all(GNT_BOX(fc->info)); |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
1027 |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
1028 if (widget) { |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
1029 gnt_box_add_widget(GNT_BOX(fc->info), widget); |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
1030 gnt_box_readjust(GNT_BOX(fc->info)); |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
1031 } |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
1032 |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
1033 gnt_widget_get_size(fc->window, &width, &height); |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
1034 gnt_box_readjust(GNT_BOX(fc->window)); |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
1035 gnt_screen_resize_widget(fc->window, width, height); |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
1036 gnt_box_give_focus_to_child(GNT_BOX(fc->window), fc->entry); |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
1037 } |
7a2ffa981c1a
Allow adding information widgets in the conversation window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16124
diff
changeset
|
1038 |