Mercurial > pidgin
annotate src/notify.c @ 12220:64254fbabc7b
[gaim-migrate @ 14522]
SF Patch #1363787 from Bartosz Oler
"This is a fix to the 'Find buddies' command in which,
after the search results window was closed, prpl's
internal state was not cleared. A minor modification in
the notify API was required.
This patch also adds a few more notifications for the
user."
There also appears to be a few unrelated GG prpl updates in here. I noticed that more strings are marked for translation now.
I made several changes to this patch. I also found out that we're not honoring the callbacks passed in to the notify API. That's a bug since we document them. I'm not in the mood to fix it. I changed GCallback to GHookFunc as it has the right type (whereas GCallback did not). The name isn't too bad either. I didn't really want to create a new callback function typedef.
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Fri, 25 Nov 2005 01:33:10 +0000 |
| parents | 216988c717da |
| children | 976677e67239 |
| rev | line source |
|---|---|
| 5437 | 1 /** |
| 2 * @file notify.c Notification API | |
| 3 * @ingroup core | |
| 4 * | |
| 5 * gaim | |
| 6 * | |
| 8046 | 7 * Gaim is the legal property of its developers, whose names are too numerous |
| 8 * to list here. Please refer to the COPYRIGHT file distributed with this | |
| 9 * source distribution. | |
|
6465
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
10 * |
| 5437 | 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 "notify.h" | |
| 26 | |
| 27 static GaimNotifyUiOps *notify_ui_ops = NULL; | |
| 28 static GList *handles = NULL; | |
| 29 | |
| 30 typedef struct | |
| 31 { | |
| 32 GaimNotifyType type; | |
| 33 void *handle; | |
|
5476
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
34 void *ui_handle; |
| 5437 | 35 |
| 36 } GaimNotifyInfo; | |
| 37 | |
| 38 void * | |
|
6356
ee0044f3e377
[gaim-migrate @ 6855]
Christian Hammond <chipx86@chipx86.com>
parents:
6106
diff
changeset
|
39 gaim_notify_message(void *handle, GaimNotifyMsgType type, |
| 5437 | 40 const char *title, const char *primary, |
|
12220
64254fbabc7b
[gaim-migrate @ 14522]
Richard Laager <rlaager@wiktel.com>
parents:
12129
diff
changeset
|
41 const char *secondary, GHookFunc cb, gpointer user_data) |
| 5437 | 42 { |
| 43 GaimNotifyUiOps *ops; | |
| 44 | |
| 45 g_return_val_if_fail(primary != NULL, NULL); | |
| 46 | |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
47 ops = gaim_notify_get_ui_ops(); |
| 5437 | 48 |
| 49 if (ops != NULL && ops->notify_message != NULL) { | |
| 50 GaimNotifyInfo *info; | |
| 51 | |
|
5476
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
52 info = g_new0(GaimNotifyInfo, 1); |
|
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
53 info->type = GAIM_NOTIFY_MESSAGE; |
|
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
54 info->handle = handle; |
|
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
55 info->ui_handle = ops->notify_message(type, title, primary, |
|
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
56 secondary, cb, user_data); |
| 5437 | 57 |
| 58 handles = g_list_append(handles, info); | |
| 59 | |
|
5476
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
60 return info->ui_handle; |
| 5437 | 61 } |
| 62 | |
| 63 return NULL; | |
| 64 } | |
| 65 | |
| 66 void * | |
| 67 gaim_notify_email(void *handle, const char *subject, const char *from, | |
|
12220
64254fbabc7b
[gaim-migrate @ 14522]
Richard Laager <rlaager@wiktel.com>
parents:
12129
diff
changeset
|
68 const char *to, const char *url, GHookFunc cb, |
|
64254fbabc7b
[gaim-migrate @ 14522]
Richard Laager <rlaager@wiktel.com>
parents:
12129
diff
changeset
|
69 gpointer user_data) |
| 5437 | 70 { |
| 71 GaimNotifyUiOps *ops; | |
| 72 | |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
73 ops = gaim_notify_get_ui_ops(); |
| 5437 | 74 |
| 75 if (ops != NULL && ops->notify_email != NULL) { | |
| 76 GaimNotifyInfo *info; | |
| 77 | |
|
5476
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
78 info = g_new0(GaimNotifyInfo, 1); |
|
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
79 info->type = GAIM_NOTIFY_EMAIL; |
|
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
80 info->handle = handle; |
|
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
81 info->ui_handle = ops->notify_email(subject, from, to, url, cb, |
|
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
82 user_data); |
| 5437 | 83 |
| 84 handles = g_list_append(handles, info); | |
| 85 | |
|
5476
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
86 return info->ui_handle; |
| 5437 | 87 } |
| 88 | |
| 89 return NULL; | |
| 90 } | |
| 91 | |
| 92 void * | |
|
5522
a3e6a5ef49b5
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5476
diff
changeset
|
93 gaim_notify_emails(void *handle, size_t count, gboolean detailed, |
|
a3e6a5ef49b5
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5476
diff
changeset
|
94 const char **subjects, const char **froms, |
|
a3e6a5ef49b5
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5476
diff
changeset
|
95 const char **tos, const char **urls, |
|
12220
64254fbabc7b
[gaim-migrate @ 14522]
Richard Laager <rlaager@wiktel.com>
parents:
12129
diff
changeset
|
96 GHookFunc cb, gpointer user_data) |
| 5437 | 97 { |
| 98 GaimNotifyUiOps *ops; | |
| 99 | |
| 100 g_return_val_if_fail(count != 0, NULL); | |
| 101 | |
|
5522
a3e6a5ef49b5
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5476
diff
changeset
|
102 if (count == 1) { |
|
a3e6a5ef49b5
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5476
diff
changeset
|
103 return gaim_notify_email(handle, |
|
a3e6a5ef49b5
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5476
diff
changeset
|
104 (subjects == NULL ? NULL : *subjects), |
|
a3e6a5ef49b5
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5476
diff
changeset
|
105 (froms == NULL ? NULL : *froms), |
|
a3e6a5ef49b5
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5476
diff
changeset
|
106 (tos == NULL ? NULL : *tos), |
|
a3e6a5ef49b5
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5476
diff
changeset
|
107 (urls == NULL ? NULL : *urls), |
|
a3e6a5ef49b5
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5476
diff
changeset
|
108 cb, user_data); |
|
a3e6a5ef49b5
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5476
diff
changeset
|
109 } |
|
a3e6a5ef49b5
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5476
diff
changeset
|
110 |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
111 ops = gaim_notify_get_ui_ops(); |
| 5437 | 112 |
| 113 if (ops != NULL && ops->notify_emails != NULL) { | |
| 114 GaimNotifyInfo *info; | |
| 115 | |
|
5476
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
116 info = g_new0(GaimNotifyInfo, 1); |
|
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
117 info->type = GAIM_NOTIFY_EMAILS; |
|
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
118 info->handle = handle; |
|
5522
a3e6a5ef49b5
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5476
diff
changeset
|
119 info->ui_handle = ops->notify_emails(count, detailed, subjects, |
|
a3e6a5ef49b5
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5476
diff
changeset
|
120 froms, tos, urls, cb, user_data); |
| 5437 | 121 |
| 122 handles = g_list_append(handles, info); | |
| 123 | |
|
5476
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
124 return info->ui_handle; |
| 5437 | 125 } |
| 126 | |
| 127 return NULL; | |
| 128 } | |
| 129 | |
|
6381
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
130 void * |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
131 gaim_notify_formatted(void *handle, const char *title, const char *primary, |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
132 const char *secondary, const char *text, |
|
12220
64254fbabc7b
[gaim-migrate @ 14522]
Richard Laager <rlaager@wiktel.com>
parents:
12129
diff
changeset
|
133 GHookFunc cb, gpointer user_data) |
|
6381
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
134 { |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
135 GaimNotifyUiOps *ops; |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
136 |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
137 g_return_val_if_fail(primary != NULL, NULL); |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
138 |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
139 ops = gaim_notify_get_ui_ops(); |
|
6381
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
140 |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
141 if (ops != NULL && ops->notify_formatted != NULL) { |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
142 GaimNotifyInfo *info; |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
143 |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
144 info = g_new0(GaimNotifyInfo, 1); |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
145 info->type = GAIM_NOTIFY_FORMATTED; |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
146 info->handle = handle; |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
147 info->ui_handle = ops->notify_formatted(title, primary, secondary, |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
148 text, cb, user_data); |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
149 |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
150 handles = g_list_append(handles, info); |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
151 |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
152 return info->ui_handle; |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
153 } |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
154 |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
155 return NULL; |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
156 } |
|
e006685f75aa
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
157 |
| 10439 | 158 void * |
| 159 gaim_notify_searchresults(GaimConnection *gc, const char *title, | |
| 160 const char *primary, const char *secondary, | |
|
12220
64254fbabc7b
[gaim-migrate @ 14522]
Richard Laager <rlaager@wiktel.com>
parents:
12129
diff
changeset
|
161 GaimNotifySearchResults *results, GHookFunc cb, gpointer user_data) |
| 10439 | 162 { |
| 163 GaimNotifyUiOps *ops; | |
| 164 | |
| 165 ops = gaim_notify_get_ui_ops(); | |
| 166 | |
| 167 if (ops != NULL && ops->notify_searchresults != NULL) { | |
| 168 GaimNotifyInfo *info; | |
| 169 | |
| 170 info = g_new0(GaimNotifyInfo, 1); | |
| 171 info->type = GAIM_NOTIFY_SEARCHRESULTS; | |
| 172 info->handle = gc; | |
| 173 info->ui_handle = ops->notify_searchresults(gc, title, primary, | |
| 174 secondary, results, | |
| 175 cb, user_data); | |
| 176 | |
| 177 handles = g_list_append(handles, info); | |
| 178 | |
| 179 return info->ui_handle; | |
| 180 } | |
| 181 | |
| 182 return NULL; | |
| 183 } | |
| 184 | |
| 11359 | 185 void |
| 186 gaim_notify_searchresults_free(GaimNotifySearchResults *results) | |
| 187 { | |
| 188 GList *l, *m; | |
| 189 | |
| 190 g_return_if_fail(results != NULL); | |
| 191 | |
| 192 for (l = results->buttons; l != NULL; l = l->next) { | |
| 193 GaimNotifySearchButton *button = l->data; | |
| 194 | |
| 195 results->buttons = g_list_remove(results->buttons, button); | |
| 196 g_free(button); | |
| 197 } | |
| 198 g_list_free(results->buttons); | |
| 199 | |
| 200 for (l = results->rows; l != NULL; l = l->next) { | |
| 201 GList *row = l->data; | |
| 202 | |
| 203 for (m = row; m != NULL; m = m->next) { | |
| 204 gchar *str = m->data; | |
| 205 | |
| 206 m = g_list_remove(m, str); | |
| 207 g_free(str); | |
| 208 } | |
| 209 | |
| 210 results->rows = g_list_remove(results->rows, row); | |
| 211 g_list_free(row); | |
| 212 } | |
| 213 g_list_free(results->rows); | |
| 214 | |
| 215 for (l = results->columns; l != NULL; l = l->next) { | |
| 216 GaimNotifySearchColumn *column = l->data; | |
| 217 | |
| 218 results->columns = g_list_remove(results->columns, column); | |
| 219 g_free(column->title); | |
| 220 g_free(column); | |
| 221 } | |
| 222 g_list_free(results->columns); | |
| 223 } | |
| 224 | |
| 225 void | |
| 226 gaim_notify_searchresults_new_rows(GaimConnection *gc, | |
| 227 GaimNotifySearchResults *results, | |
|
12220
64254fbabc7b
[gaim-migrate @ 14522]
Richard Laager <rlaager@wiktel.com>
parents:
12129
diff
changeset
|
228 void *data, gpointer user_data) |
| 11359 | 229 { |
| 230 GaimNotifyUiOps *ops; | |
| 231 | |
| 232 ops = gaim_notify_get_ui_ops(); | |
| 233 | |
| 234 if (ops != NULL && ops->notify_searchresults != NULL) { | |
| 235 ops->notify_searchresults_new_rows(gc, results, data, user_data); | |
| 236 } | |
| 237 } | |
| 238 | |
| 239 void | |
| 240 gaim_notify_searchresults_button_add(GaimNotifySearchResults *results, | |
| 241 GaimNotifySearchButtonType type, | |
| 242 GaimNotifySearchResultsCallback cb) | |
| 243 { | |
| 244 GaimNotifySearchButton *button; | |
| 245 | |
| 246 g_return_if_fail(results != NULL); | |
| 247 g_return_if_fail(cb != NULL); | |
| 248 | |
| 249 button = g_new0(GaimNotifySearchButton, 1); | |
| 250 button->callback = cb; | |
| 251 button->type = type; | |
| 252 | |
| 253 results->buttons = g_list_append(results->buttons, button); | |
| 254 } | |
| 255 | |
| 256 GaimNotifySearchResults * | |
| 257 gaim_notify_searchresults_new() | |
| 258 { | |
| 259 GaimNotifySearchResults *rs = g_new0(GaimNotifySearchResults, 1); | |
| 260 | |
| 261 return rs; | |
| 262 } | |
| 263 | |
| 264 void | |
| 265 gaim_notify_searchresults_column_add(GaimNotifySearchResults *results, | |
| 266 GaimNotifySearchColumn *column) | |
| 267 { | |
| 268 g_return_if_fail(results != NULL); | |
| 269 g_return_if_fail(column != NULL); | |
| 270 | |
| 271 results->columns = g_list_append(results->columns, column); | |
| 272 } | |
| 273 | |
| 274 void gaim_notify_searchresults_row_add(GaimNotifySearchResults *results, | |
| 275 GList *row) | |
| 276 { | |
| 277 g_return_if_fail(results != NULL); | |
| 278 g_return_if_fail(row != NULL); | |
| 279 | |
| 280 results->rows = g_list_append(results->rows, row); | |
| 281 } | |
| 282 | |
| 283 GaimNotifySearchColumn * | |
| 284 gaim_notify_searchresults_column_new(const char *title) | |
| 285 { | |
| 286 GaimNotifySearchColumn *sc; | |
| 287 | |
| 288 g_return_val_if_fail(title != NULL, NULL); | |
| 289 | |
| 290 sc = g_new0(GaimNotifySearchColumn, 1); | |
| 291 sc->title = g_strdup(title); | |
| 292 | |
| 293 return sc; | |
| 294 } | |
| 295 | |
| 296 int | |
| 297 gaim_notify_searchresults_get_columns_count(GaimNotifySearchResults *results) | |
| 298 { | |
| 299 g_return_val_if_fail(results != NULL, -1); | |
| 300 | |
| 301 return g_list_length(results->columns); | |
| 302 } | |
| 303 | |
| 304 int | |
| 305 gaim_notify_searchresults_get_rows_count(GaimNotifySearchResults *results) | |
| 306 { | |
| 307 g_return_val_if_fail(results != NULL, -1); | |
| 308 | |
| 309 return g_list_length(results->rows); | |
| 310 } | |
| 311 | |
| 312 char * | |
| 313 gaim_notify_searchresults_column_get_title(GaimNotifySearchResults *results, | |
| 314 unsigned int column_id) | |
| 315 { | |
| 316 g_return_val_if_fail(results != NULL, NULL); | |
| 317 | |
| 318 return ((GaimNotifySearchColumn *)g_list_nth_data(results->columns, column_id))->title; | |
| 319 } | |
| 320 | |
| 321 GList * | |
| 322 gaim_notify_searchresults_row_get(GaimNotifySearchResults *results, | |
| 323 unsigned int row_id) | |
| 324 { | |
| 325 g_return_val_if_fail(results != NULL, NULL); | |
| 326 | |
| 327 return g_list_nth_data(results->rows, row_id); | |
| 328 } | |
| 329 | |
| 10439 | 330 void * |
|
11531
bf763a1b2454
[gaim-migrate @ 13780]
Luke Schierer <lschiere@pidgin.im>
parents:
11359
diff
changeset
|
331 gaim_notify_userinfo(GaimConnection *gc, const char *who, |
|
12220
64254fbabc7b
[gaim-migrate @ 14522]
Richard Laager <rlaager@wiktel.com>
parents:
12129
diff
changeset
|
332 const char *text, GHookFunc cb, gpointer user_data) |
| 9797 | 333 { |
| 334 GaimNotifyUiOps *ops; | |
|
11531
bf763a1b2454
[gaim-migrate @ 13780]
Luke Schierer <lschiere@pidgin.im>
parents:
11359
diff
changeset
|
335 |
|
11533
c9b815aeddc1
[gaim-migrate @ 13782]
Richard Laager <rlaager@wiktel.com>
parents:
11531
diff
changeset
|
336 g_return_val_if_fail(who != NULL, NULL); |
| 9797 | 337 |
| 338 ops = gaim_notify_get_ui_ops(); | |
| 339 | |
| 340 if (ops != NULL && ops->notify_userinfo != NULL) { | |
| 341 GaimNotifyInfo *info; | |
|
12129
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
342 char *infotext = g_strdup(text); |
| 9797 | 343 |
| 344 info = g_new0(GaimNotifyInfo, 1); | |
| 345 info->type = GAIM_NOTIFY_USERINFO; | |
| 346 info->handle = gc; | |
|
12129
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
347 |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
348 gaim_signal_emit(gaim_notify_get_handle(), "displaying-userinfo", |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
349 gaim_connection_get_account(gc), who, &infotext); |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
350 |
|
11533
c9b815aeddc1
[gaim-migrate @ 13782]
Richard Laager <rlaager@wiktel.com>
parents:
11531
diff
changeset
|
351 info->ui_handle = ops->notify_userinfo(gc, who, |
|
12129
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
352 infotext, cb, user_data); |
| 9797 | 353 |
| 354 handles = g_list_append(handles, info); | |
| 355 | |
|
12129
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
356 g_free(infotext); |
| 9797 | 357 return info->ui_handle; |
| 358 } | |
| 359 | |
| 360 return NULL; | |
| 361 } | |
| 362 | |
|
6465
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
363 void * |
|
10240
95ca0db2d01d
[gaim-migrate @ 11377]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
10209
diff
changeset
|
364 gaim_notify_uri(void *handle, const char *uri) |
|
6465
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
365 { |
|
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
366 GaimNotifyUiOps *ops; |
|
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
367 |
|
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
368 g_return_val_if_fail(uri != NULL, NULL); |
|
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
369 |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
370 ops = gaim_notify_get_ui_ops(); |
|
6465
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
371 |
|
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
372 if (ops != NULL && ops->notify_uri != NULL) { |
|
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
373 GaimNotifyInfo *info; |
|
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
374 |
|
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
375 info = g_new0(GaimNotifyInfo, 1); |
|
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
376 info->type = GAIM_NOTIFY_URI; |
|
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
377 info->handle = handle; |
|
10240
95ca0db2d01d
[gaim-migrate @ 11377]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
10209
diff
changeset
|
378 info->ui_handle = ops->notify_uri(uri); |
|
6465
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
379 |
|
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
380 handles = g_list_append(handles, info); |
|
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
381 |
|
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
382 return info->ui_handle; |
|
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
383 } |
|
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
384 |
|
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
385 return NULL; |
|
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
386 } |
|
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
387 |
| 5437 | 388 void |
|
5476
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
389 gaim_notify_close(GaimNotifyType type, void *ui_handle) |
| 5437 | 390 { |
| 391 GList *l; | |
| 392 GaimNotifyUiOps *ops; | |
| 393 | |
|
5476
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
394 g_return_if_fail(ui_handle != NULL); |
| 5437 | 395 |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
396 ops = gaim_notify_get_ui_ops(); |
| 5437 | 397 |
| 398 for (l = handles; l != NULL; l = l->next) { | |
| 399 GaimNotifyInfo *info = l->data; | |
| 400 | |
|
5476
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
401 if (info->ui_handle == ui_handle) { |
| 5437 | 402 handles = g_list_remove(handles, info); |
| 403 | |
| 404 if (ops != NULL && ops->close_notify != NULL) | |
|
5476
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
405 ops->close_notify(info->type, ui_handle); |
| 5437 | 406 |
| 407 g_free(info); | |
| 408 | |
| 409 break; | |
| 410 } | |
| 411 } | |
| 412 } | |
| 413 | |
| 414 void | |
| 415 gaim_notify_close_with_handle(void *handle) | |
| 416 { | |
| 417 GList *l, *l_next; | |
| 418 GaimNotifyUiOps *ops; | |
| 419 | |
| 420 g_return_if_fail(handle != NULL); | |
| 421 | |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
422 ops = gaim_notify_get_ui_ops(); |
| 5437 | 423 |
| 424 for (l = handles; l != NULL; l = l_next) { | |
| 425 GaimNotifyInfo *info = l->data; | |
| 426 | |
| 427 l_next = l->next; | |
| 428 | |
| 429 if (info->handle == handle) { | |
| 430 handles = g_list_remove(handles, info); | |
| 431 | |
| 432 if (ops != NULL && ops->close_notify != NULL) | |
|
5476
9bcd8cd625ae
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
433 ops->close_notify(info->type, info->ui_handle); |
| 5437 | 434 |
| 435 g_free(info); | |
| 436 } | |
| 437 } | |
| 438 } | |
| 439 | |
| 440 void | |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
441 gaim_notify_set_ui_ops(GaimNotifyUiOps *ops) |
| 5437 | 442 { |
| 443 notify_ui_ops = ops; | |
| 444 } | |
| 445 | |
| 446 GaimNotifyUiOps * | |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
447 gaim_notify_get_ui_ops(void) |
| 5437 | 448 { |
| 449 return notify_ui_ops; | |
| 450 } | |
|
12129
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
451 |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
452 void * |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
453 gaim_notify_get_handle(void) |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
454 { |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
455 static int handle; |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
456 |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
457 return &handle; |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
458 } |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
459 |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
460 void |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
461 gaim_notify_init(void) |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
462 { |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
463 gpointer handle = gaim_notify_get_handle(); |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
464 |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
465 gaim_signal_register(handle, "displaying-userinfo", |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
466 gaim_marshal_VOID__POINTER_POINTER_POINTER, NULL, 3, |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
467 gaim_value_new(GAIM_TYPE_SUBTYPE, |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
468 GAIM_SUBTYPE_ACCOUNT), |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
469 gaim_value_new(GAIM_TYPE_STRING), |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
470 gaim_value_new_outgoing(GAIM_TYPE_STRING)); |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
471 } |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
472 |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
473 void |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
474 gaim_notify_uninit(void) |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
475 { |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
476 gaim_signals_unregister_by_instance(gaim_notify_get_handle()); |
|
216988c717da
[gaim-migrate @ 14429]
Richard Laager <rlaager@wiktel.com>
parents:
11533
diff
changeset
|
477 } |
