view doc/gtkblist-signals.dox @ 15592:0a5823d45398

Fix a few small compile warnings: gtkblist.c: In function ¡Æpidgin_blist_paint_tip¡Ç: gtkblist.c:2352: warning: suggest explicit braces to avoid ambiguous ¡Æelse¡Ç gtkblist.c:2370: warning: suggest explicit braces to avoid ambiguous ¡Æelse¡Ç gtklog.c: In function ¡Æpidgin_log_show_contact¡Ç: gtklog.c:699: warning: ISO C90 forbids mixed declarations and code gtkstatusbox.c: In function ¡Æadd_popular_statuses¡Ç: gtkstatusbox.c:842: warning: unused variable ¡Æheight¡Ç gtkstatusbox.c:842: warning: unused variable ¡Æwidth¡Ç gtkstatusbox.c:841: warning: unused variable ¡Æemblem¡Ç
author Mark Doliner <mark@kingant.net>
date Fri, 09 Feb 2007 07:34:51 +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