Sun, 15 Feb 2009 22:52:47 +0000
Set a NULL statusline and CurrentMedia if the UBX returns an empty payload,
instead of trying to parse the empty text. If only users wouldn't freak out
just because they see the word "error"...
Fixes #8348.
| 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 | ||
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
12291
diff
changeset
|
11 | @see gtkimhtml.h |
|
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
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 | */ | |
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
12291
diff
changeset
|
62 | // vim: syntax=c.doxygen tw=75 et |