Mercurial > pidgin
annotate plugins/perl/common/Notify.xs @ 11851:3bfb2cffcef2
[gaim-migrate @ 14142]
inspired by Richard Stellingwerff's patch 1339606, this workaround for
annoying visible borders on tab close buttons is no longer required with
at least gtk 2.6 (if someone can confirm if it was fixed in 2.4 we could
remove it there too)
committer: Tailor Script <tailor@pidgin.im>
| author | Stu Tomlinson <stu@nosnilmot.com> |
|---|---|
| date | Thu, 27 Oct 2005 15:15:52 +0000 |
| parents | c9b815aeddc1 |
| children | 62bed9e1bce0 |
| rev | line source |
|---|---|
| 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
c9b815aeddc1
[gaim-migrate @ 13782]
Richard Laager <rlaager@wiktel.com>
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
c9b815aeddc1
[gaim-migrate @ 13782]
Richard Laager <rlaager@wiktel.com>
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 |
