view doc/connection-signals.dox @ 15048:7ac8259f355d

[gaim-migrate @ 17831] - change "global proxy settings" to "GNOME proxy settings," when running GNOME - Make the docklet "click" event happen on mouse-up, rather than mouse-down (otherwise in "pending" mode, the mouse-up event will be sent to some other app, and it will think it's clicked. - Make Jabber not create a new dialog in response to closing a dialog. This is part of a larger change I'm working on to remove all authentication dialogs, and it just happened to be in this tree when I svn ci'ed, and I don't feel like reverting it ;) committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Mon, 27 Nov 2006 22:34:46 +0000
parents aca39e77db85
children 8cf53d7a0887
line wrap: on
line source

/** @page connection-signals Connection Signals

 @signals
  @signal signing-on
  @signal signed-on
  @signal signing-off
  @signal signed-off
 @endsignals

 <hr>

 @signaldef signing-on
  @signalproto
void (*signing_on)(GaimConnection *gc);
  @endsignalproto
  @signaldesc
   Emitted when a connection is about to sign on.
  @param gc The connection that is about to sign on.
 @endsignaldef

 @signaldef signed-on
  @signalproto
void (*signed_on)(GaimConnection *gc);
  @endsignalproto
  @signaldesc
   Emitted when a connection has signed on.
  @param gc The connection that has signed on.
 @endsignaldef

 @signaldef signing-off
  @signalproto
void (*signing_off)(GaimConnection *gc);
  @endsignalproto
  @signaldesc
   Emitted when a connection is about to sign off.
  @param gc The connection that is about to sign off.
 @endsignaldef

 @signaldef signed-off
  @signalproto
void (*signed_off)(GaimConnection *gc);
  @endsignalproto
  @signaldesc
   Emitted when a connection has signed off.
  @param gc The connection that has signed off.
 @endsignaldef

 */
// vim: syntax=c tw=75 et