Sun, 30 Oct 2005 23:00:47 +0000
[gaim-migrate @ 14198]
sf patch #1342817, from Evan Schoenberg
"As discussed in #gaim, this patch removes idle.c and replaces it
with gtkidle.c and gtkidle.h. The attached diff removes the idle
management from its various hiding places in connection.c, server.c,
and gaim.h. The plugins Changelog.API is appropriately updated.
The new gtkidle files are attached; idle.c should be removed from
CVS."
committer: Mark Doliner <markdoliner@pidgin.im>
| 11118 | 1 | #include "module.h" |
| 2 | ||
| 3 | MODULE = Gaim::Notify PACKAGE = Gaim::Notify PREFIX = gaim_notify_ | |
| 4 | PROTOTYPES: ENABLE | |
| 5 | ||
| 6 | void | |
| 7 | gaim_notify_close(type, ui_handle) | |
| 8 | Gaim::NotifyType type | |
| 9 | void * ui_handle | |
| 10 | ||
| 11 | void | |
| 12 | gaim_notify_close_with_handle(handle) | |
| 13 | void * handle | |
| 14 | ||
| 15 | void * | |
| 16 | gaim_notify_email(handle, subject, from, to, url, cb, user_data) | |
| 17 | void * handle | |
| 18 | const char *subject | |
| 19 | const char *from | |
| 20 | const char *to | |
| 21 | const char *url | |
| 22 | GCallback cb | |
| 23 | void * user_data | |
| 24 | ||
| 25 | ||
| 26 | void * | |
| 27 | gaim_notify_emails(handle, count, detailed, subjects, froms, tos, urls, cb, user_data) | |
| 28 | void * handle | |
| 29 | size_t count | |
| 30 | gboolean detailed | |
| 31 | const char **subjects | |
| 32 | const char **froms | |
| 33 | const char **tos | |
| 34 | const char **urls | |
| 35 | GCallback cb | |
| 36 | void * user_data | |
| 37 | ||
| 38 | ||
| 39 | void * | |
| 40 | gaim_notify_formatted(handle, title, primary, secondary, text, cb, user_data) | |
| 41 | void * handle | |
| 42 | const char *title | |
| 43 | const char *primary | |
| 44 | const char *secondary | |
| 45 | const char *text | |
| 46 | GCallback cb | |
| 47 | void * user_data | |
| 48 | ||
| 49 | ||
| 50 | Gaim::NotifyUiOps | |
| 51 | gaim_notify_get_ui_ops() | |
| 52 | ||
| 53 | ||
| 54 | void * | |
| 55 | gaim_notify_message(handle, type, title, primary, secondary, cb, user_data) | |
| 56 | void * handle | |
| 57 | Gaim::NotifyMsgType type | |
| 58 | const char *title | |
| 59 | const char *primary | |
| 60 | const char *secondary | |
| 61 | GCallback cb | |
| 62 | void * user_data | |
| 63 | ||
| 64 | ||
| 65 | void * | |
| 66 | gaim_notify_searchresults(gc, title, primary, secondary, results, cb, user_data) | |
| 67 | Gaim::Connection gc | |
| 68 | const char *title | |
| 69 | const char *primary | |
| 70 | const char *secondary | |
|
11533
f58436975d44
[gaim-migrate @ 13782]
Richard Laager <rlaager@pidgin.im>
parents:
11290
diff
changeset
|
71 | Gaim::NotifySearchResults results |
| 11118 | 72 | GCallback cb |
| 73 | void * user_data | |
| 74 | ||
| 75 | void | |
| 76 | gaim_notify_set_ui_ops(ops) | |
| 77 | Gaim::NotifyUiOps ops | |
| 78 | ||
| 79 | void * | |
| 80 | gaim_notify_uri(handle, uri) | |
| 81 | void * handle | |
| 82 | const char *uri | |
| 83 | ||
| 84 | void * | |
|
11533
f58436975d44
[gaim-migrate @ 13782]
Richard Laager <rlaager@pidgin.im>
parents:
11290
diff
changeset
|
85 | gaim_notify_userinfo(gc, who, text, cb, user_data) |
| 11118 | 86 | Gaim::Connection gc |
| 87 | const char *who | |
| 88 | const char *text | |
| 89 | GCallback cb | |
| 90 | void * user_data | |
| 91 | ||
| 92 |