pidgin 2.14.14dev
Notification Signals

Signals:

See also
notify.h

displaying-userinfo

void (*displaying_userinfo)(PurpleAccount *account, const char *who, PurpleNotifyUserInfo *user_info);
Structure representing an account.
Definition: account.h:170
Description:
Emitted before userinfo is handed to the UI to display. user_info can be manipulated via the PurpleNotifyUserInfo API in notify.c.
Note
If adding a PurpleNotifyUserInfoEntry, be sure not to free it – PurpleNotifyUserInfo assumes responsibility for its objects.
Parameters
accountThe account on which the info was obtained.
whoThe name of the buddy whose info is to be displayed.
user_infoThe information to be displayed, as PurpleNotifyUserInfoEntry objects

displaying-email-notification

void (*displaying_email_notification)(const char *subject,
const char *from,
const char *to,
const char *url);
Description:
Emitted before notification of a single email is handed to the UI to display.
Parameters
subjectSubject of email being notified of.
fromWho the email is from.
toWho the email is to.
urlA url to view the email.
Since
2.1.0

displaying-emails-notification

void (*displaying_emails_notification)(const char **subjects,
const char **froms,
const char **tos,
const char **urls,
guint count);
Description:
Emitted before notification of multiple emails is handed to the UI to display.
Parameters
subjectsSubjects of emails being notified of.
fromsWho the emails are from.
tosWho the emails are to.
urlsThe urls to view the emails.
countNumber of emails being notified of.
Since
2.1.0