Mercurial > pidgin.yaz
annotate finch/gntnotify.c @ 20636:4604cad304cb
Forgot to remove a printf
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Tue, 25 Sep 2007 04:54:04 +0000 |
parents | a3f07fa68e90 |
children | e587a7be2916 |
rev | line source |
---|---|
15818 | 1 /** |
2 * @file gntnotify.c GNT Notify API | |
16194
0f0832c13fcb
Rename the Doxygen group from gntui to finch and define the finch group
Richard Laager <rlaager@wiktel.com>
parents:
15871
diff
changeset
|
3 * @ingroup finch |
20074
6bf32c9e15a7
remove gpl boilerplate from doxygen docs
Sean Egan <seanegan@gmail.com>
parents:
19680
diff
changeset
|
4 */ |
6bf32c9e15a7
remove gpl boilerplate from doxygen docs
Sean Egan <seanegan@gmail.com>
parents:
19680
diff
changeset
|
5 |
6bf32c9e15a7
remove gpl boilerplate from doxygen docs
Sean Egan <seanegan@gmail.com>
parents:
19680
diff
changeset
|
6 /* finch |
15818 | 7 * |
15871
66dff3dfdea6
Re-sed the copyright notices so they don't all talk about Purple.
Richard Laager <rlaager@wiktel.com>
parents:
15823
diff
changeset
|
8 * Finch is the legal property of its developers, whose names are too numerous |
15818 | 9 * to list here. Please refer to the COPYRIGHT file distributed with this |
10 * source distribution. | |
11 * | |
12 * This program is free software; you can redistribute it and/or modify | |
13 * it under the terms of the GNU General Public License as published by | |
14 * the Free Software Foundation; either version 2 of the License, or | |
15 * (at your option) any later version. | |
16 * | |
17 * This program is distributed in the hope that it will be useful, | |
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 * GNU General Public License for more details. | |
21 * | |
22 * You should have received a copy of the GNU General Public License | |
23 * along with this program; if not, write to the Free Software | |
19680
44b4e8bd759b
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
18347
diff
changeset
|
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
15818 | 25 */ |
26 #include <gnt.h> | |
27 #include <gntbox.h> | |
28 #include <gntbutton.h> | |
29 #include <gntlabel.h> | |
30 #include <gnttree.h> | |
16936
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
31 #include <gntutils.h> |
15818 | 32 |
18210
b8572b937c09
#include reorganizations to allow compiling with glib < 2.8 using the
Stu Tomlinson <stu@nosnilmot.com>
parents:
17521
diff
changeset
|
33 #include "finch.h" |
b8572b937c09
#include reorganizations to allow compiling with glib < 2.8 using the
Stu Tomlinson <stu@nosnilmot.com>
parents:
17521
diff
changeset
|
34 |
15818 | 35 #include <util.h> |
36 | |
37 #include "gntnotify.h" | |
38 | |
39 static struct | |
40 { | |
41 GntWidget *window; | |
42 GntWidget *tree; | |
43 } emaildialog; | |
44 | |
45 static void | |
15823 | 46 notify_msg_window_destroy_cb(GntWidget *window, PurpleNotifyMsgType type) |
15818 | 47 { |
15823 | 48 purple_notify_close(type, window); |
15818 | 49 } |
50 | |
51 static void * | |
15823 | 52 finch_notify_message(PurpleNotifyMsgType type, const char *title, |
15818 | 53 const char *primary, const char *secondary) |
54 { | |
55 GntWidget *window, *button; | |
56 GntTextFormatFlags pf = 0, sf = 0; | |
57 | |
58 switch (type) | |
59 { | |
15823 | 60 case PURPLE_NOTIFY_MSG_ERROR: |
15818 | 61 sf |= GNT_TEXT_FLAG_BOLD; |
15823 | 62 case PURPLE_NOTIFY_MSG_WARNING: |
15818 | 63 pf |= GNT_TEXT_FLAG_UNDERLINE; |
15823 | 64 case PURPLE_NOTIFY_MSG_INFO: |
15818 | 65 pf |= GNT_TEXT_FLAG_BOLD; |
66 break; | |
67 } | |
68 | |
69 window = gnt_box_new(FALSE, TRUE); | |
70 gnt_box_set_toplevel(GNT_BOX(window), TRUE); | |
71 gnt_box_set_title(GNT_BOX(window), title); | |
72 gnt_box_set_fill(GNT_BOX(window), FALSE); | |
73 gnt_box_set_alignment(GNT_BOX(window), GNT_ALIGN_MID); | |
17521
7f652ef12ed6
Remove the confusing 'OK' button from the auth dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17520
diff
changeset
|
74 gnt_box_set_pad(GNT_BOX(window), 0); |
15818 | 75 |
76 if (primary) | |
77 gnt_box_add_widget(GNT_BOX(window), | |
78 gnt_label_new_with_format(primary, pf)); | |
79 | |
80 button = gnt_button_new(_("OK")); | |
16936
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
81 |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
82 if (secondary) { |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
83 GntWidget *msg; |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
84 if (type == PURPLE_NOTIFY_FORMATTED) { |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
85 int width = -1, height = -1; |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
86 msg = gnt_text_view_new(); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
87 gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(msg), secondary, sf); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
88 gnt_text_view_scroll(GNT_TEXT_VIEW(msg), 0); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
89 gnt_text_view_attach_scroll_widget(GNT_TEXT_VIEW(msg), button); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
90 gnt_util_get_text_bound(secondary, &width, &height); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
91 gnt_widget_set_size(msg, width + 3, height + 1); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
92 } else { |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
93 msg = gnt_label_new_with_format(secondary, sf); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
94 } |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
95 gnt_box_add_widget(GNT_BOX(window), msg); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
96 g_object_set_data(G_OBJECT(window), "info-widget", msg); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
97 } |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
98 |
15818 | 99 gnt_box_add_widget(GNT_BOX(window), button); |
100 g_signal_connect_swapped(G_OBJECT(button), "activate", | |
101 G_CALLBACK(gnt_widget_destroy), window); | |
102 g_signal_connect(G_OBJECT(window), "destroy", | |
103 G_CALLBACK(notify_msg_window_destroy_cb), GINT_TO_POINTER(type)); | |
104 | |
105 gnt_widget_show(window); | |
106 return window; | |
107 } | |
108 | |
109 /* handle is, in all/most occasions, a GntWidget * */ | |
15823 | 110 static void finch_close_notify(PurpleNotifyType type, void *handle) |
15818 | 111 { |
112 GntWidget *widget = handle; | |
113 | |
114 if (!widget) | |
115 return; | |
116 | |
117 while (widget->parent) | |
118 widget = widget->parent; | |
119 | |
15823 | 120 if (type == PURPLE_NOTIFY_SEARCHRESULTS) |
121 purple_notify_searchresults_free(g_object_get_data(handle, "notify-results")); | |
15818 | 122 #if 1 |
123 /* This did not seem to be necessary */ | |
124 g_signal_handlers_disconnect_by_func(G_OBJECT(widget), | |
125 G_CALLBACK(notify_msg_window_destroy_cb), GINT_TO_POINTER(type)); | |
126 #endif | |
127 gnt_widget_destroy(widget); | |
128 } | |
129 | |
130 static void *finch_notify_formatted(const char *title, const char *primary, | |
131 const char *secondary, const char *text) | |
132 { | |
133 /* XXX: For now, simply strip the html and use _notify_message. For future use, | |
134 * there should be some way of parsing the makrups from GntTextView */ | |
15823 | 135 char *unformat = purple_markup_strip_html(text); |
15818 | 136 char *t = g_strdup_printf("%s%s%s", |
137 secondary ? secondary : "", | |
138 secondary ? "\n" : "", | |
139 unformat ? unformat : ""); | |
140 | |
15823 | 141 void *ret = finch_notify_message(PURPLE_NOTIFY_FORMATTED, title, primary, t); |
15818 | 142 |
143 g_free(t); | |
144 g_free(unformat); | |
145 | |
146 return ret; | |
147 } | |
148 | |
149 static void | |
150 reset_email_dialog() | |
151 { | |
152 emaildialog.window = NULL; | |
153 emaildialog.tree = NULL; | |
154 } | |
155 | |
156 static void | |
157 setup_email_dialog() | |
158 { | |
159 GntWidget *box, *tree, *button; | |
160 if (emaildialog.window) | |
161 return; | |
162 | |
163 emaildialog.window = box = gnt_vbox_new(FALSE); | |
164 gnt_box_set_toplevel(GNT_BOX(box), TRUE); | |
165 gnt_box_set_title(GNT_BOX(box), _("Emails")); | |
166 gnt_box_set_fill(GNT_BOX(box), FALSE); | |
167 gnt_box_set_alignment(GNT_BOX(box), GNT_ALIGN_MID); | |
168 gnt_box_set_pad(GNT_BOX(box), 0); | |
169 | |
170 gnt_box_add_widget(GNT_BOX(box), | |
171 gnt_label_new_with_format(_("You have mail!"), GNT_TEXT_FLAG_BOLD)); | |
172 | |
173 emaildialog.tree = tree = gnt_tree_new_with_columns(3); | |
17269 | 174 gnt_tree_set_column_titles(GNT_TREE(tree), _("Account"), _("Sender"), _("Subject")); |
15818 | 175 gnt_tree_set_show_title(GNT_TREE(tree), TRUE); |
176 gnt_tree_set_col_width(GNT_TREE(tree), 0, 15); | |
177 gnt_tree_set_col_width(GNT_TREE(tree), 1, 25); | |
178 gnt_tree_set_col_width(GNT_TREE(tree), 2, 25); | |
179 | |
180 gnt_box_add_widget(GNT_BOX(box), tree); | |
181 | |
182 button = gnt_button_new(_("Close")); | |
183 gnt_box_add_widget(GNT_BOX(box), button); | |
184 | |
185 g_signal_connect_swapped(G_OBJECT(button), "activate", G_CALLBACK(gnt_widget_destroy), box); | |
186 g_signal_connect(G_OBJECT(box), "destroy", G_CALLBACK(reset_email_dialog), NULL); | |
187 } | |
188 | |
189 static void * | |
15823 | 190 finch_notify_emails(PurpleConnection *gc, size_t count, gboolean detailed, |
15818 | 191 const char **subjects, const char **froms, const char **tos, |
192 const char **urls) | |
193 { | |
15823 | 194 PurpleAccount *account = purple_connection_get_account(gc); |
15818 | 195 GString *message = g_string_new(NULL); |
196 void *ret; | |
197 | |
198 if (!detailed) | |
199 { | |
200 g_string_append_printf(message, | |
201 ngettext("%s (%s) has %d new message.", | |
202 "%s (%s) has %d new messages.", | |
203 (int)count), | |
15823 | 204 tos ? *tos : purple_account_get_username(account), |
205 purple_account_get_protocol_name(account), (int)count); | |
15818 | 206 } |
207 else | |
208 { | |
209 char *to; | |
210 | |
211 setup_email_dialog(); | |
212 | |
15823 | 213 to = g_strdup_printf("%s (%s)", tos ? *tos : purple_account_get_username(account), |
214 purple_account_get_protocol_name(account)); | |
15818 | 215 gnt_tree_add_row_after(GNT_TREE(emaildialog.tree), GINT_TO_POINTER(time(NULL)), |
216 gnt_tree_create_row(GNT_TREE(emaildialog.tree), to, | |
217 froms ? *froms : "[Unknown sender]", | |
218 *subjects), | |
219 NULL, NULL); | |
220 g_free(to); | |
221 gnt_widget_show(emaildialog.window); | |
222 return NULL; | |
223 } | |
224 | |
15823 | 225 ret = finch_notify_message(PURPLE_NOTIFY_EMAIL, _("New Mail"), _("You have mail!"), message->str); |
15818 | 226 g_string_free(message, TRUE); |
227 return ret; | |
228 } | |
229 | |
230 static void * | |
15823 | 231 finch_notify_email(PurpleConnection *gc, const char *subject, const char *from, |
15818 | 232 const char *to, const char *url) |
233 { | |
234 return finch_notify_emails(gc, 1, subject != NULL, | |
235 subject ? &subject : NULL, | |
236 from ? &from : NULL, | |
237 to ? &to : NULL, | |
238 url ? &url : NULL); | |
239 } | |
240 | |
16936
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
241 /** User information. **/ |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
242 static GHashTable *userinfo; |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
243 |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
244 static char * |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
245 userinfo_hash(PurpleAccount *account, const char *who) |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
246 { |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
247 char key[256]; |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
248 snprintf(key, sizeof(key), "%s - %s", purple_account_get_username(account), purple_normalize(account, who)); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
249 return g_utf8_strup(key, -1); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
250 } |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
251 |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
252 static void |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
253 remove_userinfo(GntWidget *widget, gpointer key) |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
254 { |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
255 g_hash_table_remove(userinfo, key); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
256 } |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
257 |
15818 | 258 static void * |
15823 | 259 finch_notify_userinfo(PurpleConnection *gc, const char *who, PurpleNotifyUserInfo *user_info) |
15818 | 260 { |
261 char *primary; | |
262 char *info; | |
263 void *ui_handle; | |
16936
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
264 char *key = userinfo_hash(purple_connection_get_account(gc), who); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
265 |
15823 | 266 info = purple_notify_user_info_get_text_with_newline(user_info, "<BR>"); |
16936
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
267 |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
268 ui_handle = g_hash_table_lookup(userinfo, key); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
269 if (ui_handle != NULL) { |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
270 GntTextView *msg = GNT_TEXT_VIEW(g_object_get_data(G_OBJECT(ui_handle), "info-widget")); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
271 char *strip = purple_markup_strip_html(info); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
272 int tvw, tvh, width, height, ntvw, ntvh; |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
273 |
17520
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17269
diff
changeset
|
274 while (GNT_WIDGET(ui_handle)->parent) |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17269
diff
changeset
|
275 ui_handle = GNT_WIDGET(ui_handle)->parent; |
16936
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
276 gnt_widget_get_size(GNT_WIDGET(ui_handle), &width, &height); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
277 gnt_widget_get_size(GNT_WIDGET(msg), &tvw, &tvh); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
278 |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
279 gnt_text_view_clear(msg); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
280 gnt_text_view_append_text_with_flags(msg, strip, GNT_TEXT_FLAG_NORMAL); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
281 gnt_text_view_scroll(msg, 0); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
282 gnt_util_get_text_bound(strip, &ntvw, &ntvh); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
283 ntvw += 3; |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
284 ntvh++; |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
285 |
17520
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17269
diff
changeset
|
286 gnt_screen_resize_widget(GNT_WIDGET(ui_handle), width + MAX(0, ntvw - tvw), height + MAX(0, ntvh - tvh)); |
16936
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
287 g_free(strip); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
288 g_free(key); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
289 } else { |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
290 primary = g_strdup_printf(_("Info for %s"), who); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
291 ui_handle = finch_notify_formatted(_("Buddy Information"), primary, NULL, info); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
292 g_hash_table_insert(userinfo, key, ui_handle); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
293 g_free(primary); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
294 g_signal_connect(G_OBJECT(ui_handle), "destroy", G_CALLBACK(remove_userinfo), key); |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
295 } |
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
296 |
15818 | 297 g_free(info); |
298 return ui_handle; | |
299 } | |
300 | |
301 static void | |
15823 | 302 notify_button_activated(GntWidget *widget, PurpleNotifySearchButton *b) |
15818 | 303 { |
304 GList *list = NULL; | |
15823 | 305 PurpleAccount *account = g_object_get_data(G_OBJECT(widget), "notify-account"); |
15818 | 306 gpointer data = g_object_get_data(G_OBJECT(widget), "notify-data"); |
307 | |
18347
a90f9a0b90c8
Update search-api to not crash. Searching for users in xmpp/oscar works now.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18210
diff
changeset
|
308 list = gnt_tree_get_selection_text_list(GNT_TREE(g_object_get_data(G_OBJECT(widget), "notify-tree"))); |
15818 | 309 |
15823 | 310 b->callback(purple_account_get_connection(account), list, data); |
15818 | 311 g_list_foreach(list, (GFunc)g_free, NULL); |
312 g_list_free(list); | |
313 } | |
314 | |
315 static void | |
15823 | 316 finch_notify_sr_new_rows(PurpleConnection *gc, |
317 PurpleNotifySearchResults *results, void *data) | |
15818 | 318 { |
319 GntTree *tree = GNT_TREE(data); | |
320 GList *o; | |
321 | |
322 /* XXX: Do I need to empty the tree here? */ | |
323 | |
324 for (o = results->rows; o; o = o->next) | |
325 { | |
326 gnt_tree_add_row_after(GNT_TREE(tree), o->data, | |
327 gnt_tree_create_row_from_list(GNT_TREE(tree), o->data), | |
328 NULL, NULL); | |
329 } | |
330 } | |
331 | |
332 static void * | |
15823 | 333 finch_notify_searchresults(PurpleConnection *gc, const char *title, |
15818 | 334 const char *primary, const char *secondary, |
15823 | 335 PurpleNotifySearchResults *results, gpointer data) |
15818 | 336 { |
337 GntWidget *window, *tree, *box, *button; | |
338 GList *iter; | |
18347
a90f9a0b90c8
Update search-api to not crash. Searching for users in xmpp/oscar works now.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18210
diff
changeset
|
339 int columns, i; |
15818 | 340 |
341 window = gnt_vbox_new(FALSE); | |
342 gnt_box_set_toplevel(GNT_BOX(window), TRUE); | |
343 gnt_box_set_title(GNT_BOX(window), title); | |
18347
a90f9a0b90c8
Update search-api to not crash. Searching for users in xmpp/oscar works now.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18210
diff
changeset
|
344 gnt_box_set_fill(GNT_BOX(window), TRUE); |
15818 | 345 gnt_box_set_pad(GNT_BOX(window), 0); |
346 gnt_box_set_alignment(GNT_BOX(window), GNT_ALIGN_MID); | |
347 | |
18347
a90f9a0b90c8
Update search-api to not crash. Searching for users in xmpp/oscar works now.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18210
diff
changeset
|
348 if (primary) |
a90f9a0b90c8
Update search-api to not crash. Searching for users in xmpp/oscar works now.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18210
diff
changeset
|
349 gnt_box_add_widget(GNT_BOX(window), |
15818 | 350 gnt_label_new_with_format(primary, GNT_TEXT_FLAG_BOLD)); |
18347
a90f9a0b90c8
Update search-api to not crash. Searching for users in xmpp/oscar works now.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18210
diff
changeset
|
351 if (secondary) |
a90f9a0b90c8
Update search-api to not crash. Searching for users in xmpp/oscar works now.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18210
diff
changeset
|
352 gnt_box_add_widget(GNT_BOX(window), |
15818 | 353 gnt_label_new_with_format(secondary, GNT_TEXT_FLAG_NORMAL)); |
354 | |
20100
a3f07fa68e90
Access search results directly instead of going through the API because
Mark Doliner <mark@kingant.net>
parents:
20074
diff
changeset
|
355 columns = g_list_length(results->columns); |
18347
a90f9a0b90c8
Update search-api to not crash. Searching for users in xmpp/oscar works now.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18210
diff
changeset
|
356 tree = gnt_tree_new_with_columns(columns); |
15818 | 357 gnt_tree_set_show_title(GNT_TREE(tree), TRUE); |
358 gnt_box_add_widget(GNT_BOX(window), tree); | |
359 | |
20100
a3f07fa68e90
Access search results directly instead of going through the API because
Mark Doliner <mark@kingant.net>
parents:
20074
diff
changeset
|
360 i = 0; |
a3f07fa68e90
Access search results directly instead of going through the API because
Mark Doliner <mark@kingant.net>
parents:
20074
diff
changeset
|
361 for (iter = results->columns; iter; iter = iter->next) |
a3f07fa68e90
Access search results directly instead of going through the API because
Mark Doliner <mark@kingant.net>
parents:
20074
diff
changeset
|
362 { |
a3f07fa68e90
Access search results directly instead of going through the API because
Mark Doliner <mark@kingant.net>
parents:
20074
diff
changeset
|
363 gnt_tree_set_column_title(GNT_TREE(tree), i, iter->data); |
a3f07fa68e90
Access search results directly instead of going through the API because
Mark Doliner <mark@kingant.net>
parents:
20074
diff
changeset
|
364 i++; |
a3f07fa68e90
Access search results directly instead of going through the API because
Mark Doliner <mark@kingant.net>
parents:
20074
diff
changeset
|
365 } |
18347
a90f9a0b90c8
Update search-api to not crash. Searching for users in xmpp/oscar works now.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18210
diff
changeset
|
366 |
15818 | 367 box = gnt_hbox_new(TRUE); |
368 | |
369 for (iter = results->buttons; iter; iter = iter->next) | |
370 { | |
15823 | 371 PurpleNotifySearchButton *b = iter->data; |
15818 | 372 const char *text; |
373 | |
374 switch (b->type) | |
375 { | |
15823 | 376 case PURPLE_NOTIFY_BUTTON_LABELED: |
15818 | 377 text = b->label; |
378 break; | |
15823 | 379 case PURPLE_NOTIFY_BUTTON_CONTINUE: |
15818 | 380 text = _("Continue"); |
381 break; | |
15823 | 382 case PURPLE_NOTIFY_BUTTON_ADD: |
15818 | 383 text = _("Add"); |
384 break; | |
15823 | 385 case PURPLE_NOTIFY_BUTTON_INFO: |
15818 | 386 text = _("Info"); |
387 break; | |
15823 | 388 case PURPLE_NOTIFY_BUTTON_IM: |
15818 | 389 text = _("IM"); |
390 break; | |
15823 | 391 case PURPLE_NOTIFY_BUTTON_JOIN: |
15818 | 392 text = _("Join"); |
393 break; | |
15823 | 394 case PURPLE_NOTIFY_BUTTON_INVITE: |
15818 | 395 text = _("Invite"); |
396 break; | |
397 default: | |
398 text = _("(none)"); | |
399 } | |
400 | |
401 button = gnt_button_new(text); | |
15823 | 402 g_object_set_data(G_OBJECT(button), "notify-account", purple_connection_get_account(gc)); |
15818 | 403 g_object_set_data(G_OBJECT(button), "notify-data", data); |
18347
a90f9a0b90c8
Update search-api to not crash. Searching for users in xmpp/oscar works now.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18210
diff
changeset
|
404 g_object_set_data(G_OBJECT(button), "notify-tree", tree); |
a90f9a0b90c8
Update search-api to not crash. Searching for users in xmpp/oscar works now.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18210
diff
changeset
|
405 g_signal_connect(G_OBJECT(button), "activate", |
15818 | 406 G_CALLBACK(notify_button_activated), b); |
407 | |
408 gnt_box_add_widget(GNT_BOX(box), button); | |
409 } | |
410 | |
411 gnt_box_add_widget(GNT_BOX(window), box); | |
412 | |
413 finch_notify_sr_new_rows(gc, results, tree); | |
414 | |
415 gnt_widget_show(window); | |
416 g_object_set_data(G_OBJECT(window), "notify-results", results); | |
417 | |
418 return tree; | |
419 } | |
420 | |
15823 | 421 static PurpleNotifyUiOps ops = |
15818 | 422 { |
17104
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16936
diff
changeset
|
423 finch_notify_message, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16936
diff
changeset
|
424 finch_notify_email, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16936
diff
changeset
|
425 finch_notify_emails, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16936
diff
changeset
|
426 finch_notify_formatted, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16936
diff
changeset
|
427 finch_notify_searchresults, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16936
diff
changeset
|
428 finch_notify_sr_new_rows, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16936
diff
changeset
|
429 finch_notify_userinfo, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16936
diff
changeset
|
430 NULL, /* notify_uri is of low-priority to me. --sadrul */ |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16936
diff
changeset
|
431 finch_close_notify, /* The rest of the notify-uiops return a GntWidget. |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16936
diff
changeset
|
432 These widgets should be destroyed from here. */ |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16936
diff
changeset
|
433 NULL, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16936
diff
changeset
|
434 NULL, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16936
diff
changeset
|
435 NULL, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16936
diff
changeset
|
436 NULL |
15818 | 437 |
438 }; | |
439 | |
15823 | 440 PurpleNotifyUiOps *finch_notify_get_ui_ops() |
15818 | 441 { |
442 return &ops; | |
443 } | |
444 | |
445 void finch_notify_init() | |
446 { | |
16936
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
447 userinfo = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, NULL); |
15818 | 448 } |
449 | |
450 void finch_notify_uninit() | |
451 { | |
16936
9a568611fa4a
When getting information, show "Information: Retrieving..." before the
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16194
diff
changeset
|
452 g_hash_table_destroy(userinfo); |
15818 | 453 } |
454 | |
455 |