comparison src/conversation.h @ 12216:4d3119205a33

[gaim-migrate @ 14518] Remove GaimConvImFlags and GaimConvChatFlags - use GaimMessageFlags everywhere instead. Add a new GAIM_MESSAGE_IMAGES flag, and set it when sending a message containing images. When sending a message, the core will now always send "html" to the prpls, just like it expects to receive html from the prpls for received messages. This will allow text prpls such as SILC to support IM images and differentiate them from user input. Previously gaim_unescape_html() was used before passing the message to the prpl, now the prpl does this itself if it needs it. I think I updated all the prpls correctly, but I'm not so sure about sametime. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Thu, 24 Nov 2005 20:47:46 +0000
parents 8140885c022c
children b1717befbb26
comparison
equal deleted inserted replaced
12215:31b91bfab029 12216:4d3119205a33
105 GAIM_MESSAGE_NICK = 0x0020, /**< Contains your nick. */ 105 GAIM_MESSAGE_NICK = 0x0020, /**< Contains your nick. */
106 GAIM_MESSAGE_NO_LOG = 0x0040, /**< Do not log. */ 106 GAIM_MESSAGE_NO_LOG = 0x0040, /**< Do not log. */
107 GAIM_MESSAGE_WHISPER = 0x0080, /**< Whispered message. */ 107 GAIM_MESSAGE_WHISPER = 0x0080, /**< Whispered message. */
108 GAIM_MESSAGE_ERROR = 0x0200, /**< Error message. */ 108 GAIM_MESSAGE_ERROR = 0x0200, /**< Error message. */
109 GAIM_MESSAGE_DELAYED = 0x0400, /**< Delayed message. */ 109 GAIM_MESSAGE_DELAYED = 0x0400, /**< Delayed message. */
110 GAIM_MESSAGE_RAW = 0x0800 /**< "Raw" message - don't apply formatting */ 110 GAIM_MESSAGE_RAW = 0x0800, /**< "Raw" message - don't apply formatting */
111 GAIM_MESSAGE_IMAGES = 0x1000 /**< Message contains images */
111 112
112 } GaimMessageFlags; 113 } GaimMessageFlags;
113 114
114 /** 115 /**
115 * Flags applicable to users in Chats. 116 * Flags applicable to users in Chats.