view doc/gtkblist-signals.dox @ 10692:533060d9a2c6

[gaim-migrate @ 12243] Just because CVS wasn't broken enough... This is good-style background coloring. http://gaim.sf.net/sean/backcolor.png It doesn't work very well. I'd call it a "proof-of-concept". In fact, if you try to send a message, the whole thing infi-loops. I expect Tim to fix it. Also, we'll need to distinguish between <body background> and <font bgcolor>. That shouldn't be very difficult. I expect Tim to do that as well. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Mon, 14 Mar 2005 01:55:50 +0000
parents 5cb55bcad11b
children 24c7fb94d3a3
line wrap: on
line source

/** @page gtkblist-signals GtkBlist Signals

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

 <hr>

 @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);
  @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.
 @endsignaldef
*/