2010-05-07 04:47:10 -05:00
|
|
|
/*
|
2011-12-03 16:38:03 -06:00
|
|
|
* Copyright 2009-2011, Andrea Anzani. All rights reserved.
|
2010-05-07 04:47:10 -05:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _NOTIFY_MESSAGE_H
|
|
|
|
#define _NOTIFY_MESSAGE_H
|
|
|
|
|
|
|
|
enum {
|
|
|
|
STR_CONTACT_NAME,
|
|
|
|
STR_PERSONAL_STATUS,
|
2021-06-06 18:06:46 -05:00
|
|
|
STR_ROOM_NAME,
|
2021-06-04 13:57:04 -05:00
|
|
|
STR_ROOM_SUBJECT,
|
2010-05-07 04:47:10 -05:00
|
|
|
|
|
|
|
PTR_AVATAR_BITMAP,
|
|
|
|
|
|
|
|
INT_ACCOUNT_STATUS,
|
2021-06-06 01:49:11 -05:00
|
|
|
INT_CONTACT_STATUS,
|
2021-07-17 00:23:56 -05:00
|
|
|
INT_USER_PERMS,
|
|
|
|
INT_NEW_MESSAGE,
|
|
|
|
INT_NEW_MENTION,
|
|
|
|
INT_WINDOW_FOCUSED
|
2010-05-07 04:47:10 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _NOTIFY_MESSAGE_H
|