89905fe23c
The conversation view now displays the protocol icon and room subject. Messages for receiving room names (IM_ROOM_NAME) and subjects (IM_ROOM_SUBJECT) were added, and support for the latter was given to the XMPP add-on. New message APIs were added, and several (room-related) im_what values were moved into the 150s/160s. UserItem::_TintColor() was moved to CayaUtils, because it can be used in several different contexts.
20 lines
333 B
C
20 lines
333 B
C
/*
|
|
* Copyright 2009-2011, Andrea Anzani. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _NOTIFY_MESSAGE_H
|
|
#define _NOTIFY_MESSAGE_H
|
|
|
|
enum {
|
|
STR_CONTACT_NAME,
|
|
STR_PERSONAL_STATUS,
|
|
STR_ROOM_SUBJECT,
|
|
|
|
PTR_AVATAR_BITMAP,
|
|
|
|
INT_ACCOUNT_STATUS,
|
|
INT_CONTACT_STATUS
|
|
};
|
|
|
|
#endif // _NOTIFY_MESSAGE_H
|