Mercurial > pidgin
annotate doc/log-signals.dox @ 18658:1987beefd494
Make the infopane context-menu look more like a buddylist context menu.
Screenshot: http://pidgin.im/~sadrul/ss/infopane-menu.png. Any complaints?
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Fri, 27 Jul 2007 16:08:18 +0000 |
parents | 8cf53d7a0887 |
children | e0613cf8c493 |
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 | |
16183
8cf53d7a0887
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@wiktel.com>
parents:
14617
diff
changeset
|
11 char *(*log_timestamp)(PurpleLog *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. | |
16183
8cf53d7a0887
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@wiktel.com>
parents:
14617
diff
changeset
|
20 @note Plugins must be careful of logs with a type of PURPLE_LOG_SYSTEM. |
12737 | 21 @endsignaldef |
22 | |
23 */ | |
24 // vim: syntax=c tw=75 et |