Mercurial > pidgin
annotate doc/log-signals.dox @ 15750:0eb7846f9e7e
Add a gntclipboard. You can select text in a textview with the mouse, and paste it in an entry with ctrl-v (or rebind GntEntry's clipboard-paste).
If you use the s.so WM, pressing alt-shift-c ("toggle-clipboard") will toggle display of the clipboard contents in a possibly easy-to-copy-with-the-x-mouse window.
This includes a plugin which interacts with the X selection, which is not built by default.
author | Richard Nelson <wabz@pidgin.im> |
---|---|
date | Fri, 02 Mar 2007 01:48:11 +0000 |
parents | 3df4aadebc20 |
children | 8cf53d7a0887 |
rev | line source |
---|---|
12737 | 1 /** @page log-signals Log Signals |
2 | |
3 @signals | |
4 @signal log-timestamp | |
5 @endsignals | |
6 | |
7 <hr> | |
8 | |
9 @signaldef log-timestamp | |
10 @signalproto | |
14617
3df4aadebc20
[gaim-migrate @ 17345]
Etan Reisner <pidgin@unreliablesource.net>
parents:
13987
diff
changeset
|
11 char *(*log_timestamp)(GaimLog *log, time_t when); |
12737 | 12 @endsignalproto |
13 @signaldesc | |
14 Emitted to allow plugins to customize the timestamp on a message | |
15 being logged. | |
16 @param log The log the message belongs to. | |
13987
f94309c7c480
[gaim-migrate @ 16559]
Richard Laager <rlaager@wiktel.com>
parents:
12737
diff
changeset
|
17 @param when The time to be converted to a string. |
12737 | 18 @return A textual representation of the time, or @c NULL to use a |
19 default format. | |
20 @note Plugins must be careful of logs with a type of GAIM_LOG_SYSTEM. | |
21 @endsignaldef | |
22 | |
23 */ | |
24 // vim: syntax=c tw=75 et |