view doc/gtkblist-signals.dox @ 16034:baf76a49d199

(16:27:44) Mirv: LSchiere2: actually, %s/Gaim/Pidgin/ , there's 5 instances (16:28:05) LSchiere2: you are the translator? (16:28:15) Mirv: LSchiere2: yep. (16:28:25) LSchiere2: there were 63 instances (16:28:28) Mirv: (as you can see in whois) (16:28:41) Mirv: LSchiere2: what.. did you use upper-case G? (16:28:42) LSchiere2: ah, cool (16:28:49) LSchiere2: yes (16:29:00) Mirv: ah, yes and some are in commented out translation in the end
author Luke Schierer <lschiere@pidgin.im>
date Mon, 09 Apr 2007 20:29:31 +0000
parents d7043c3c793d
children 8cf53d7a0887
line wrap: on
line source

/** @page gtkblist-signals GtkBlist Signals

 @signals
  @signal gtkblist-hiding
  @signal gtkblist-unhiding
  @signal gtkblist-created
  @signal drawing-tooltip
 @endsignals

 <hr>

 @signaldef gtkblist-hiding
  @signalproto
void (*gtkblist-hiding)(GaimBuddyList *blist);
  @endsignalproto
  @signaldesc
   Emitted when the buddy list is about to be hidden.
  @param blist The buddy list.
 @endsignaldef

 @signaldef gtkblist-unhiding
  @signalproto
void (*gtkblist-unhiding)(GaimBuddyList *blist);
  @endsignalproto
  @signaldesc
   Emitted when the buddy list is about to be unhidden.
  @param blist The buddy list.
 @endsignaldef

 @signaldef gtkblist-created
  @signalproto
void (*gtkblist-created)(GaimBuddyList *blist);
  @endsignalproto
  @signaldesc
   Emitted when the buddy list is created.
  @param blist The buddy list.
 @endsignaldef

 @signaldef drawing-tooltip
  @signalproto
void (*drawing-tooltip)(GaimBlistNode *node, GString *text, gboolean full);
  @endsignalproto
  @signaldesc
   Emitted just before a tooltip is displayed.
   @a text is a standard GString, so the plugin can modify the text that
   will be displayed.
  @note
   Make sure to free @a *text before you replace it!
  @param node The blist node for the tooltip.
  @param text A pointer to the text that will be displayed.
  @param full Whether we're doing a full tooltip for the priority buddy or
              a compact tooltip for a non-priority buddy.
 @endsignaldef
*/
// vim: syntax=c tw=75 et