Thu, 14 Aug 2003 04:52:49 +0000
[gaim-migrate @ 6976]
Doc fix.
| 5437 | 1 | /** |
| 2 | * @file notify.h Notification API | |
| 3 | * @ingroup core | |
| 4 | * | |
| 5 | * gaim | |
| 6 | * | |
| 7 | * Copyright (C) 2003 Christian Hammond <chipx86@gnupdate.org> | |
|
6465
bd201d637ff4
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
8 | * |
| 5437 | 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by | |
| 11 | * the Free Software Foundation; either version 2 of the License, or | |
| 12 | * (at your option) any later version. | |
| 13 | * | |
| 14 | * This program is distributed in the hope that it will be useful, | |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 17 | * GNU General Public License for more details. | |
| 18 | * | |
| 19 | * You should have received a copy of the GNU General Public License | |
| 20 | * along with this program; if not, write to the Free Software | |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 22 | */ | |
| 23 | #ifndef _GAIM_NOTIFY_H_ | |
| 24 | #define _GAIM_NOTIFY_H_ | |
| 25 | ||
| 26 | #include <stdlib.h> | |
| 27 | #include <glib-object.h> | |
| 28 | #include <glib.h> | |
| 29 | ||
| 30 | /** | |
| 31 | * Notification types. | |
| 32 | */ | |
| 33 | typedef enum | |
| 34 | { | |
| 35 | GAIM_NOTIFY_MESSAGE = 0, /**< Message notification. */ | |
| 36 | GAIM_NOTIFY_EMAIL, /**< Single e-mail notification. */ | |
|
6381
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
37 | GAIM_NOTIFY_EMAILS, /**< Multiple e-mail notification. */ |
|
6465
bd201d637ff4
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
38 | GAIM_NOTIFY_FORMATTED, /**< Formatted text. */ |
|
bd201d637ff4
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
39 | GAIM_NOTIFY_URI /**< URI notification or display. */ |
| 5437 | 40 | |
| 41 | } GaimNotifyType; | |
| 42 | ||
| 43 | /** | |
| 44 | * Notification message types. | |
| 45 | */ | |
| 46 | typedef enum | |
| 47 | { | |
| 48 | GAIM_NOTIFY_MSG_ERROR = 0, /**< Error notification. */ | |
| 49 | GAIM_NOTIFY_MSG_WARNING, /**< Warning notification. */ | |
| 50 | GAIM_NOTIFY_MSG_INFO /**< Information notification. */ | |
| 51 | ||
| 52 | } GaimNotifyMsgType; | |
| 53 | ||
| 54 | /** | |
| 55 | * Notification UI operations. | |
| 56 | */ | |
| 57 | typedef struct | |
| 58 | { | |
| 59 | void *(*notify_message)(GaimNotifyMsgType type, const char *title, | |
| 60 | const char *primary, const char *secondary, | |
| 61 | GCallback cb, void *user_data); | |
| 62 | void *(*notify_email)(const char *subject, const char *from, | |
| 63 | const char *to, const char *url, | |
| 64 | GCallback cb, void *user_data); | |
|
5522
faa69c8f503d
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
65 | void *(*notify_emails)(size_t count, gboolean detailed, |
|
faa69c8f503d
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
66 | const char **subjects, const char **froms, |
|
faa69c8f503d
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
67 | const char **tos, const char **urls, |
|
faa69c8f503d
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
68 | GCallback cb, void *user_data); |
|
6381
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
69 | void *(*notify_formatted)(const char *title, const char *primary, |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
70 | const char *secondary, const char *text, |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
71 | GCallback cb, void *user_data); |
|
6465
bd201d637ff4
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
72 | void *(*notify_uri)(const char *uri); |
| 5437 | 73 | |
|
5476
6f863ea68018
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
74 | void (*close_notify)(GaimNotifyType type, void *ui_handle); |
| 5437 | 75 | |
| 76 | } GaimNotifyUiOps; | |
| 77 | ||
|
5944
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5522
diff
changeset
|
78 | |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5522
diff
changeset
|
79 | #ifdef __cplusplus |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5522
diff
changeset
|
80 | extern "C" { |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5522
diff
changeset
|
81 | #endif |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5522
diff
changeset
|
82 | |
| 5437 | 83 | /**************************************************************************/ |
| 84 | /** @name Notification API */ | |
| 85 | /**************************************************************************/ | |
| 86 | /*@{*/ | |
| 87 | ||
| 88 | /** | |
| 89 | * Displays a notification message to the user. | |
| 90 | * | |
| 91 | * @param handle The plugin or connection handle. | |
| 92 | * @param type The notification type. | |
| 93 | * @param title The title of the message. | |
| 94 | * @param primary The main point of the message. | |
| 95 | * @param secondary The secondary information. | |
| 96 | * @param cb The callback to call when the user closes | |
| 97 | * the notification. | |
| 98 | * @param user_data The data to pass to the callback. | |
| 99 | * | |
| 100 | * @return A UI-specific handle. | |
| 101 | */ | |
|
6356
27990c4f9a9f
[gaim-migrate @ 6855]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
102 | void *gaim_notify_message(void *handle, GaimNotifyMsgType type, |
| 5437 | 103 | const char *title, const char *primary, |
| 104 | const char *secondary, GCallback cb, | |
| 105 | void *user_data); | |
| 106 | ||
| 107 | /** | |
| 108 | * Displays a single e-mail notification to the user. | |
| 109 | * | |
| 110 | * @param handle The plugin or connection handle. | |
| 111 | * @param subject The subject of the e-mail. | |
| 112 | * @param from The from address. | |
| 113 | * @param to The destination address. | |
| 114 | * @param url The URL where the message can be read. | |
| 115 | * @param cb The callback to call when the user closes | |
| 116 | * the notification. | |
| 117 | * @param user_data The data to pass to the callback. | |
| 118 | * | |
| 119 | * @return A UI-specific handle. | |
| 120 | */ | |
| 121 | void *gaim_notify_email(void *handle, const char *subject, | |
| 122 | const char *from, const char *to, | |
| 123 | const char *url, GCallback cb, | |
| 124 | void *user_data); | |
| 125 | ||
| 126 | /** | |
| 127 | * Displays a notification for multiple e-mails to the user. | |
| 128 | * | |
| 129 | * @param handle The plugin or connection handle. | |
| 130 | * @param count The number of e-mails. | |
|
5522
faa69c8f503d
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
131 | * @param detailed @c TRUE if there is information for each e-mail in the |
|
faa69c8f503d
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
132 | * arrays. |
| 5437 | 133 | * @param subjects The array of subjects. |
| 134 | * @param froms The array of from addresses. | |
| 135 | * @param tos The array of destination addresses. | |
| 136 | * @param url The URLs where the messages can be read. | |
| 137 | * @param cb The callback to call when the user closes | |
| 138 | * the notification. | |
| 139 | * @param user_data The data to pass to the callback. | |
| 140 | * | |
| 141 | * @return A UI-specific handle. | |
| 142 | */ | |
|
5522
faa69c8f503d
[gaim-migrate @ 5922]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
143 | void *gaim_notify_emails(void *handle, size_t count, gboolean detailed, |
| 5437 | 144 | const char **subjects, const char **froms, |
| 145 | const char **tos, const char **urls, | |
| 146 | GCallback cb, void *user_data); | |
| 147 | ||
| 148 | /** | |
|
6381
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
149 | * Displays a notification with formatted text. |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
150 | * |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
151 | * The text is essentially a stripped-down format of HTML, the same that |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
152 | * IMs may send. |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
153 | * |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
154 | * @param handle The plugin or connection handle. |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
155 | * @param title The title of the message. |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
156 | * @param primary The main point of the message. |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
157 | * @param secondary The secondary information. |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
158 | * @param text The formatted text. |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
159 | * @param cb The callback to call when the user closes |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
160 | * the notification. |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
161 | * |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
162 | * @return A UI-specific handle. |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
163 | */ |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
164 | void *gaim_notify_formatted(void *handle, const char *title, |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
165 | const char *primary, const char *secondary, |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
166 | const char *text, GCallback cb, void *user_data); |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
167 | |
|
53203c44c731
[gaim-migrate @ 6886]
Christian Hammond <chipx86@chipx86.com>
parents:
6356
diff
changeset
|
168 | /** |
|
6465
bd201d637ff4
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
169 | * Opens a URI or somehow presents it to the user. |
|
bd201d637ff4
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
170 | * |
|
bd201d637ff4
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
171 | * @param handle The plugin or connection handle. |
|
bd201d637ff4
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
172 | * @param url The URI to display or go to. |
|
bd201d637ff4
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
173 | * |
|
bd201d637ff4
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
174 | * @return A UI-specific handle, if any. This may only be presented if |
|
bd201d637ff4
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
175 | * the UI code displays a dialog instead of a webpage, or something |
|
bd201d637ff4
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
176 | * similar. |
|
bd201d637ff4
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
177 | */ |
|
bd201d637ff4
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
178 | void *gaim_notify_uri(void *handle, const char *uri); |
|
bd201d637ff4
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
179 | |
|
bd201d637ff4
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6381
diff
changeset
|
180 | /** |
| 5437 | 181 | * Closes a notification. |
| 182 | * | |
| 183 | * This should be used only by the UI operation functions and part of the | |
| 184 | * core. | |
| 185 | * | |
|
5476
6f863ea68018
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
186 | * @param type The notification type. |
|
6f863ea68018
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
187 | * @param ui_handle The notification UI handle. |
| 5437 | 188 | */ |
|
5476
6f863ea68018
[gaim-migrate @ 5872]
Christian Hammond <chipx86@chipx86.com>
parents:
5437
diff
changeset
|
189 | void gaim_notify_close(GaimNotifyType type, void *ui_handle); |
| 5437 | 190 | |
| 191 | /** | |
| 192 | * Closes all notifications registered with the specified handle. | |
| 193 | * | |
| 194 | * @param handle The handle. | |
| 195 | */ | |
| 196 | void gaim_notify_close_with_handle(void *handle); | |
| 197 | ||
| 198 | /** | |
| 199 | * A wrapper for gaim_notify_message that displays an information message. | |
| 200 | */ | |
| 201 | #define gaim_notify_info(handle, title, primary, secondary) \ | |
| 202 | gaim_notify_message((handle), GAIM_NOTIFY_MSG_INFO, (title), \ | |
| 203 | (primary), (secondary), NULL, NULL) | |
| 204 | ||
| 205 | /** | |
| 206 | * A wrapper for gaim_notify_message that displays a warning message. | |
| 207 | */ | |
| 208 | #define gaim_notify_warning(handle, title, primary, secondary) \ | |
| 209 | gaim_notify_message((handle), GAIM_NOTIFY_MSG_WARNING, (title), \ | |
| 210 | (primary), (secondary), NULL, NULL) | |
| 211 | ||
| 212 | /** | |
| 213 | * A wrapper for gaim_notify_message that displays an error message. | |
| 214 | */ | |
| 215 | #define gaim_notify_error(handle, title, primary, secondary) \ | |
| 216 | gaim_notify_message((handle), GAIM_NOTIFY_MSG_ERROR, (title), \ | |
| 217 | (primary), (secondary), NULL, NULL) | |
| 218 | ||
| 219 | /*@}*/ | |
| 220 | ||
| 221 | /**************************************************************************/ | |
| 222 | /** @name UI Operations API */ | |
| 223 | /**************************************************************************/ | |
| 224 | /*@{*/ | |
| 225 | ||
| 226 | /** | |
| 227 | * Sets the UI operations structure to be used when displaying a | |
| 228 | * notification. | |
| 229 | * | |
| 230 | * @param ops The UI operations structure. | |
| 231 | */ | |
| 232 | void gaim_set_notify_ui_ops(GaimNotifyUiOps *ops); | |
| 233 | ||
| 234 | /** | |
| 235 | * Returns the UI operations structure to be used when displaying a | |
| 236 | * notification. | |
| 237 | * | |
|
6467
754d318cac4a
[gaim-migrate @ 6976]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
238 | * @return The UI operations structure. |
| 5437 | 239 | */ |
| 240 | GaimNotifyUiOps *gaim_get_notify_ui_ops(void); | |
|
5944
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5522
diff
changeset
|
241 | |
|
5497
da3c08f3af25
[gaim-migrate @ 5893]
Mark Doliner <markdoliner@pidgin.im>
parents:
5476
diff
changeset
|
242 | /*@}*/ |
| 5437 | 243 | |
|
5944
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5522
diff
changeset
|
244 | #ifdef __cplusplus |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5522
diff
changeset
|
245 | } |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5522
diff
changeset
|
246 | #endif |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5522
diff
changeset
|
247 | |
| 5437 | 248 | #endif /* _GAIM_NOTIFY_H_ */ |