comparison src/conversation.h @ 11672:04e0189bb519

[gaim-migrate @ 13958] (contact-aware conversation)-aware logging: When the active buddy changes, a new log is opened. This way, the logs (on-disk, assuming a file-based logger) always correspond to the buddy that send/received the messages. Given that we already have contactized logging, the logs will all be shown in the same log viewer. Also, if you use Options -> Enable Logging to change the default logging mode for a perticular conversation or part of a conversation, that setting will be preserved even if the active buddy changes. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Sun, 16 Oct 2005 18:15:47 +0000
parents 38bbb0f15453
children 3ba50c385299
comparison
equal deleted inserted replaced
11671:4ebd27e664c4 11672:04e0189bb519
415 * @return @c TRUE if logging is enabled, or @c FALSE otherwise. 415 * @return @c TRUE if logging is enabled, or @c FALSE otherwise.
416 */ 416 */
417 gboolean gaim_conversation_is_logging(const GaimConversation *conv); 417 gboolean gaim_conversation_is_logging(const GaimConversation *conv);
418 418
419 /** 419 /**
420 * Closes any open logs for this conversation.
421 *
422 * Note that new logs will be opened as necessary (e.g. upon receipt of a
423 * message, if the conversation has logging enabled. To disable logging for
424 * the remainder of the conversation, use gaim_conversation_set_logging().
425 *
426 * @param conv The conversation.
427 */
428 void gaim_conversation_close_logs(GaimConversation *conv);
429
430 /**
420 * Returns the specified conversation's send history. 431 * Returns the specified conversation's send history.
421 * 432 *
422 * @param conv The conversation. 433 * @param conv The conversation.
423 * 434 *
424 * @return The conversation's send history. 435 * @return The conversation's send history.