X-Git-Url: http://git.maemo.org/git/?p=python-purple;a=blobdiff_plain;f=notify_cbs.pxd;h=fb9f0611e6815a9902cf5ae3ddabf67cc07b4a52;hp=11ee8944f9242fd32eaa8ecaea2fbbae905d9fb4;hb=e447f817ff1a908aa5e3769963980b63aafc072e;hpb=5fe506a5d23d5f7ba01599247a58bd03ca9eb7da diff --git a/notify_cbs.pxd b/notify_cbs.pxd index 11ee894..fb9f061 100644 --- a/notify_cbs.pxd +++ b/notify_cbs.pxd @@ -17,86 +17,92 @@ # along with this program. If not, see . # -cimport purple - -notify_cbs = {} - cdef extern from *: ctypedef char const_char "const char" ctypedef int size_t -cdef void *notify_message (notify.PurpleNotifyMsgType type, const_char *title, - const_char *primary, const_char *secondary): - debug.c_purple_debug_info("notify", "%s", "notify-message\n") - try: - (notify_cbs["notify-message"])("notify-message: TODO") - except KeyError: - pass +notify_cbs = {} + +cdef void *notify_message(notify.PurpleNotifyMsgType type, \ + const_char *title, const_char *primary, const_char *secondary): + """ + TODO + """ + debug.purple_debug_info("notify", "%s", "notify-message\n") + if "notify-message" in notify_cbs: + ( notify_cbs["notify-message"])("notify-message: TODO") -cdef void *notify_email (connection.PurpleConnection *gc, const_char *subject, - const_char *_from, const_char *to, const_char *url): - debug.c_purple_debug_info("notify", "%s", "notify-email\n") - try: - (notify_cbs["notify-email"])("notify-email: TODO") - except KeyError: - pass +cdef void *notify_email(connection.PurpleConnection *gc, \ + const_char *subject, const_char *_from, const_char *to, \ + const_char *url): + """ + TODO + """ + debug.purple_debug_info("notify", "%s", "notify-email\n") + if "notify-email" in notify_cbs: + ( notify_cbs["notify-email"])("notify-email: TODO") -cdef void *notify_emails (connection.PurpleConnection *gc, size_t count, - glib.gboolean detailed, const_char **subjects, - const_char **froms, const_char **tos, - const_char **urls): - debug.c_purple_debug_info("notify", "%s", "notify-emails\n") - try: - (notify_cbs["notify-emails"])("notify-emails: TODO") - except KeyError: - pass +cdef void *notify_emails(connection.PurpleConnection *gc, size_t count, \ + glib.gboolean detailed, const_char **subjects, \ + const_char **froms, const_char **tos, const_char **urls): + """ + TODO + """ + debug.purple_debug_info("notify", "%s", "notify-emails\n") + if "notify-emails" in notify_cbs: + ( notify_cbs["notify-emails"])("notify-emails: TODO") -cdef void *notify_formatted (const_char *title, const_char *primary, - const_char *secondary, const_char *text): - debug.c_purple_debug_info("notify", "%s", "notify-formatted\n") - try: - (notify_cbs["notify-formatted"])("notify-formatted: TODO") - except KeyError: - pass +cdef void *notify_formatted(const_char *title, const_char *primary, \ + const_char *secondary, const_char *text): + """ + TODO + """ + debug.purple_debug_info("notify", "%s", "notify-formatted\n") + if "notify-formatted" in notify_cbs: + ( notify_cbs["notify-formatted"])("notify-formatted: TODO") -cdef void *notify_searchresults (connection.PurpleConnection *gc, - const_char *title, const_char *primary, - const_char *secondary, - notify.PurpleNotifySearchResults *results, - glib.gpointer user_data): - debug.c_purple_debug_info("notify", "%s", "notify-searchresults\n") - try: - (notify_cbs["notify-searchresults"])("notify-searchresults: TODO") - except KeyError: - pass +cdef void *notify_searchresults(connection.PurpleConnection *gc, \ + const_char *title, const_char *primary, const_char *secondary, \ + notify.PurpleNotifySearchResults *results, glib.gpointer user_data): + """ + TODO + """ + debug.purple_debug_info("notify", "%s", "notify-searchresults\n") + if "notify-searchresults" in notify_cbs: + ( notify_cbs["notify-searchresults"]) \ + ("notify-searchresults: TODO") -cdef void notify_searchresults_new_rows (connection.PurpleConnection *gc, - notify.PurpleNotifySearchResults *results, - void *data): - debug.c_purple_debug_info("notify", "%s", "notify-searchresults-new-rows\n") - try: - (notify_cbs["notify-searchresults-new-rows"])("notify-searchresults-new-rows: TODO") - except KeyError: - pass +cdef void notify_searchresults_new_rows(connection.PurpleConnection *gc, \ + notify.PurpleNotifySearchResults *results, void *data): + """ + TODO + """ + debug.purple_debug_info("notify", "%s", "notify-searchresults-new-rows\n") + if "notify-searchresults-new-rows" in notify_cbs: + ( notify_cbs["notify-searchresults-new-rows"]) \ + ("notify-searchresults-new-rows: TODO") -cdef void *notify_userinfo (connection.PurpleConnection *gc, const_char *who, - notify.PurpleNotifyUserInfo *user_info): - debug.c_purple_debug_info("notify", "%s", "notify-userinfo\n") - try: - (notify_cbs["notify-userinfo"])("notify-userinfo: TODO") - except KeyError: - pass +cdef void *notify_userinfo(connection.PurpleConnection *gc, const_char *who, \ + notify.PurpleNotifyUserInfo *user_info): + """ + TODO + """ + debug.purple_debug_info("notify", "%s", "notify-userinfo\n") + if "notify-userinfo" in notify_cbs: + ( notify_cbs["notify-userinfo"])("notify-userinfo: TODO") -cdef void *notify_uri (const_char *uri): - debug.c_purple_debug_info("notify", "%s", "notify-uri\n") - try: - (notify_cbs["notify-uri"])("notify-uri: TODO") - except KeyError: - pass +cdef void *notify_uri(const_char *uri): + """ + TODO + """ + debug.purple_debug_info("notify", "%s", "notify-uri\n") + if "notify-uri" in notify_cbs: + ( notify_cbs["notify-uri"])("notify-uri: TODO") -cdef void close_notify (notify.PurpleNotifyType type, void *ui_handle): - debug.c_purple_debug_info("notify", "%s", "close-notify\n") - try: - (notify_cbs["close-notify"])("close-notify: TODO") - except KeyError: - pass +cdef void close_notify(notify.PurpleNotifyType type, void *ui_handle): + """ + TODO + """ + debug.purple_debug_info("notify", "%s", "close-notify\n") + if "close-notify" in notify_cbs: + ( notify_cbs["close-notify"])("close-notify: TODO")