Wed, 04 Jan 2006 04:14:02 +0000
[gaim-migrate @ 15056]
SF Patch #1395207 from Sadrul
"Gaim currently doesn't allow to have
formatted/multiline string as a preference for
core-plugins. It'd be great if core plugins could have
formatted strings for preference (ie. have
imhtml+toolbar for the preference in the
Plugin-preference dialog) without actually having to
worry about gtk-codes."
committer: Richard Laager <rlaager@pidgin.im>
| 12053 | 1 | /** @page cipher-signals Cipher Signals |
| 2 | ||
| 3 | @signals | |
| 4 | @signal cipher-added | |
| 5 | @signal cipher-removed | |
| 6 | @endsignals | |
| 7 | ||
| 8 | <hr> | |
| 9 | ||
| 10 | @signaldef cipher-added | |
| 11 | @signalproto | |
| 12 | void (*cipher_added)(GaimCipher *cipher); | |
| 13 | @endsignalproto | |
| 14 | @signaldesc | |
| 15 | Emitted when a cipher is added. | |
| 16 | @param cipher The cipher that was added. | |
| 17 | @endsignaldef | |
| 18 | ||
| 19 | @signaldef cipher-removed | |
| 20 | @signalproto | |
| 21 | void (*cipher_removed)(GaimCipher *cipher); | |
| 22 | @endsignalproto | |
| 23 | @signaldesc | |
| 24 | Emitted when a cipher is removed. | |
| 25 | @param cipher The cipher that was removed. | |
| 26 | @endsignaldef | |
| 27 | ||
| 28 | */ | |
| 29 | // vim: syntax=c tw=75 et |