Mercurial > pidgin
annotate doc/gtkimhtml-signals.dox @ 27598:e5fdfff98aa9
When GNU Libidn is available, use it for XMPP stringprep operations.
I made configure fail if libidn is unavailable and force_deps is set
because glib's UTF-8 strdown and casefold operations fail one of the
tests I've updated (based on running the tests with libidn).
Running without libidn will still work in almost every case because people
use all-ASCII JabberIDs and I had to search a fair amount to find
characters for which GLib failed. This shouldn't have a performance impact
on top of Mark's optimizations for all-ASCII JIDs.
author | Paul Aurich <paul@darkrain42.org> |
---|---|
date | Fri, 17 Jul 2009 21:11:25 +0000 |
parents | e0613cf8c493 |
children | ffb8cd9fb528 |
rev | line source |
---|---|
9001 | 1 /** @page gtkimhtml-signals GtkIMHtml Signals |
2 | |
3 @signals | |
4 @signal url_clicked | |
5 @signal format_buttons_update | |
6 @signal format_function_clear | |
7 @signal format_function_toggle | |
8 @signal format_function_update | |
9 @endsignals | |
10 | |
20807
e0613cf8c493
Add some links from signal documentation back to the documentation for the
Will Thompson <will.thompson@collabora.co.uk>
parents:
12291
diff
changeset
|
11 @see gtkimhtml.h |
e0613cf8c493
Add some links from signal documentation back to the documentation for the
Will Thompson <will.thompson@collabora.co.uk>
parents:
12291
diff
changeset
|
12 |
9001 | 13 <hr> |
14 | |
15 @signaldef url_clicked | |
16 @signalproto | |
17 void (*url_clicked)(GtkIMHtml *imhtml, char *uri); | |
18 @endsignalproto | |
19 @signaldesc Emitted when a link is clicked | |
20 @param imhtml The GtkIMHtml emitting the signal. | |
21 @param url The uri. | |
22 @endsignaldef | |
23 | |
24 @signaldef format_buttons_update | |
25 @signalproto | |
26 void (*format_buttons_update)(GtkIMHtml *imhtml, GtkIMHtmlButtons buttons, gpointer data); | |
27 @endsignalproto | |
28 @signaldesc Emitted when allowed formatting has changed. | |
29 @param imhtml The GtkIMHtml emitting the signal. | |
30 @param buttons GtkIMHtmlButtons for the GtkIMHtml. | |
31 @param data User defined data. | |
32 @endsignaldef | |
33 | |
34 @signaldef format_function_clear | |
35 @signalproto | |
36 void (*format_function_clear)(GtkIMHtml *imhtml, gpointer data); | |
37 @endsignalproto | |
38 @signaldesc Emitted when clearing the formatting for the GtkIMHtml. | |
39 @param imhtml The GtkIMHtml emitting the signal. | |
40 @param data User defined data. | |
41 @endsignaldef | |
42 | |
43 @signaldef format_function_toggle | |
44 @signalproto | |
45 void (*format_function_toggle)(GtkIMHtml *imhtml, GtkIMHtmlButtons buttons, gpointer data); | |
46 @endsignalproto | |
47 @signaldesc Emitted when a format has been toggled. | |
48 @param imhtml The GtkIMHtml emitting the signal. | |
49 @param buttons GtkIMHtmlButtons for the GtkIMHtml. | |
50 @param data User defined data. | |
51 @endsignaldef | |
52 | |
53 @signaldef format_function_update | |
54 @signalproto | |
55 void (*format_function_update)(GtkIMHtml *imhtml, gpointer data); | |
56 @endsignalproto | |
57 @signaldesc Emitted when the cursor has moved and formatting has changed | |
58 @param imhtml The GtkIMHtml emitting the signal. | |
59 @param data User defined data. | |
60 @endsignaldef | |
61 */ | |
20807
e0613cf8c493
Add some links from signal documentation back to the documentation for the
Will Thompson <will.thompson@collabora.co.uk>
parents:
12291
diff
changeset
|
62 // vim: syntax=c.doxygen tw=75 et |