Wed, 22 Jan 2025 20:47:54 -0600
Prepare for the 2.14.14 release
Testing Done:
Ran `make distcheck`
Reviewed at https://reviews.imfreedom.org/r/3779/
| 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 | |
|
29916
ac38ed1d1a45
Doxygen fix. Thanks Elliott.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
29909
diff
changeset
|
9 | @signal paste |
| 9001 | 10 | @endsignals |
| 11 | ||
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
12291
diff
changeset
|
12 | @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
|
13 | |
| 9001 | 14 | <hr> |
| 15 | ||
| 16 | @signaldef url_clicked | |
| 17 | @signalproto | |
| 18 | void (*url_clicked)(GtkIMHtml *imhtml, char *uri); | |
| 19 | @endsignalproto | |
| 20 | @signaldesc Emitted when a link is clicked | |
| 21 | @param imhtml The GtkIMHtml emitting the signal. | |
| 22 | @param url The uri. | |
| 23 | @endsignaldef | |
| 24 | ||
| 25 | @signaldef format_buttons_update | |
| 26 | @signalproto | |
| 27 | void (*format_buttons_update)(GtkIMHtml *imhtml, GtkIMHtmlButtons buttons, gpointer data); | |
| 28 | @endsignalproto | |
| 29 | @signaldesc Emitted when allowed formatting has changed. | |
| 30 | @param imhtml The GtkIMHtml emitting the signal. | |
| 31 | @param buttons GtkIMHtmlButtons for the GtkIMHtml. | |
| 32 | @param data User defined data. | |
| 33 | @endsignaldef | |
| 34 | ||
| 35 | @signaldef format_function_clear | |
| 36 | @signalproto | |
| 37 | void (*format_function_clear)(GtkIMHtml *imhtml, gpointer data); | |
| 38 | @endsignalproto | |
| 39 | @signaldesc Emitted when clearing the formatting for the GtkIMHtml. | |
| 40 | @param imhtml The GtkIMHtml emitting the signal. | |
| 41 | @param data User defined data. | |
| 42 | @endsignaldef | |
| 43 | ||
| 44 | @signaldef format_function_toggle | |
| 45 | @signalproto | |
| 46 | void (*format_function_toggle)(GtkIMHtml *imhtml, GtkIMHtmlButtons buttons, gpointer data); | |
| 47 | @endsignalproto | |
| 48 | @signaldesc Emitted when a format has been toggled. | |
| 49 | @param imhtml The GtkIMHtml emitting the signal. | |
| 50 | @param buttons GtkIMHtmlButtons for the GtkIMHtml. | |
| 51 | @param data User defined data. | |
| 52 | @endsignaldef | |
| 53 | ||
| 54 | @signaldef format_function_update | |
| 55 | @signalproto | |
| 56 | void (*format_function_update)(GtkIMHtml *imhtml, gpointer data); | |
| 57 | @endsignalproto | |
| 58 | @signaldesc Emitted when the cursor has moved and formatting has changed | |
| 59 | @param imhtml The GtkIMHtml emitting the signal. | |
| 60 | @param data User defined data. | |
|
29909
3b74346e22d5
Allow binding 'Paste as Plain Text'.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20897
diff
changeset
|
61 | |
|
3b74346e22d5
Allow binding 'Paste as Plain Text'.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20897
diff
changeset
|
62 | @signaldef paste |
|
3b74346e22d5
Allow binding 'Paste as Plain Text'.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20897
diff
changeset
|
63 | @signalproto |
|
3b74346e22d5
Allow binding 'Paste as Plain Text'.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20897
diff
changeset
|
64 | void (*paste) (GtkIMHtml *imhtml, char *format) |
|
3b74346e22d5
Allow binding 'Paste as Plain Text'.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20897
diff
changeset
|
65 | @endsignalproto |
|
30044
73e7541d6940
This looks like it should be @signaldesc.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
29916
diff
changeset
|
66 | @signaldesc Emitted when paste from the clipboard is requested. |
|
29909
3b74346e22d5
Allow binding 'Paste as Plain Text'.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20897
diff
changeset
|
67 | @param imhtml The GtkIMHtml emitting the signal. |
|
3b74346e22d5
Allow binding 'Paste as Plain Text'.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20897
diff
changeset
|
68 | @param format If 'text', then the formatting of the clipboard content |
|
3b74346e22d5
Allow binding 'Paste as Plain Text'.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20897
diff
changeset
|
69 | will be removed before pasting. If empty or 'html', then |
|
3b74346e22d5
Allow binding 'Paste as Plain Text'.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20897
diff
changeset
|
70 | the formatting will not be removed. Any other value for |
|
3b74346e22d5
Allow binding 'Paste as Plain Text'.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20897
diff
changeset
|
71 | this parameter is ignored and nothing is pasted. |
| 9001 | 72 | @endsignaldef |
| 73 | */ | |
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
12291
diff
changeset
|
74 | // vim: syntax=c.doxygen tw=75 et |