changeset 9001:6bf49a1ec075

[gaim-migrate @ 9776] (16:14:49) Paco-Paco: LSchiere2: are you going to instlal those three new files, as well? committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Fri, 21 May 2004 20:15:59 +0000
parents b540c735a6ad
children a0b7b72e278d
files doc/gtkblist-signals.dox doc/gtkconv-signals.dox doc/gtkimhtml-signals.dox
diffstat 3 files changed, 120 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/doc/gtkblist-signals.dox	Fri May 21 20:15:59 2004 +0000
@@ -0,0 +1,43 @@
+/** @page gtkblist-signals GtkBlist Signals
+
+ @signals
+  @signal gtkblist-created
+  @signal drawing-menu
+  @signal drawing-tooltip
+ @endsignals
+
+ <hr>
+
+ @signaldef gtkblist-created
+  @signalproto
+(*gtkblist-created)(GaimBuddyList *blist);
+  @endsignalproto
+  @signaldesc
+   Emitted when the buddy list is created.
+  @param blist The buddy list.
+ @endsignaldef
+
+ @signaldef drawing-menu
+  @signalproto
+void (*drawing-menu)(GtkMenu *menu, GaimBuddy *buddy);
+  @endsignalproto
+  @signaldesc
+   Emitted when the user right clicks on a buddy or chat in the buddy list.
+  @param menu The menu that will be shown.
+  @param buddy The buddy or chat.
+ @endsignaldef
+
+ @signaldef drawing-tooltip
+  @signalproto
+void (*drawing-tooltip)(GaimBlistNode *node, char **text);
+  @endsignalproto
+  @signaldesc
+   Emitted just before a tooltip is displayed.
+   @a text is a pointer to a string, so the plugin can replace 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
+*/
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/doc/gtkconv-signals.dox	Fri May 21 20:15:59 2004 +0000
@@ -0,0 +1,18 @@
+/** @page gtkconv-signals GtkConv Signals
+
+ @signals
+  @signal conversation-drag-ended
+ @endsignals
+
+ <hr>
+
+ @signaldef conversation-drag-ended
+  @signalproto
+void (*conversation-drag-ended)(GaimConvWindow *source, GaimConvWindow *destination);
+  @endsignalproto
+  @signaldesc
+   Emitted when a conversation drag and drop has finished.
+  @param source The conversation that has been moved.
+  @param destination Where the conversation is now.
+ @endsignaldef
+*/
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/doc/gtkimhtml-signals.dox	Fri May 21 20:15:59 2004 +0000
@@ -0,0 +1,59 @@
+/** @page gtkimhtml-signals GtkIMHtml Signals
+
+ @signals
+  @signal url_clicked
+  @signal format_buttons_update
+  @signal format_function_clear
+  @signal format_function_toggle
+  @signal format_function_update
+ @endsignals
+
+ <hr>
+
+ @signaldef url_clicked
+  @signalproto
+void (*url_clicked)(GtkIMHtml *imhtml, char *uri);
+  @endsignalproto
+  @signaldesc Emitted when a link is clicked
+  @param imhtml The GtkIMHtml emitting the signal.
+  @param url The uri.
+ @endsignaldef
+
+ @signaldef format_buttons_update
+  @signalproto
+void (*format_buttons_update)(GtkIMHtml *imhtml, GtkIMHtmlButtons buttons, gpointer data);
+  @endsignalproto
+  @signaldesc Emitted when allowed formatting has changed.
+  @param imhtml  The GtkIMHtml emitting the signal.
+  @param buttons GtkIMHtmlButtons for the GtkIMHtml.
+  @param data    User defined data.
+ @endsignaldef
+
+ @signaldef format_function_clear
+  @signalproto
+void (*format_function_clear)(GtkIMHtml *imhtml, gpointer data);
+  @endsignalproto
+  @signaldesc Emitted when clearing the formatting for the GtkIMHtml.
+  @param imhtml The GtkIMHtml emitting the signal.
+  @param data   User defined data.
+ @endsignaldef
+
+ @signaldef format_function_toggle
+  @signalproto
+void (*format_function_toggle)(GtkIMHtml *imhtml, GtkIMHtmlButtons buttons, gpointer data);
+  @endsignalproto
+  @signaldesc Emitted when a format has been toggled.
+  @param imhtml  The GtkIMHtml emitting the signal.
+  @param buttons GtkIMHtmlButtons for the GtkIMHtml.
+  @param data    User defined data.
+ @endsignaldef
+
+ @signaldef format_function_update
+  @signalproto
+void (*format_function_update)(GtkIMHtml *imhtml, gpointer data);
+  @endsignalproto
+  @signaldesc Emitted when the cursor has moved and formatting has changed
+  @param imhtml The GtkIMHtml emitting the signal.
+  @param data   User defined data.
+ @endsignaldef
+*/