2010-05-16 16:02:50 -05:00
|
|
|
/*
|
2011-12-03 16:38:03 -06:00
|
|
|
* Copyright 2010-2011, Pier Luigi Fiorini. All rights reserved.
|
2010-05-16 16:02:50 -05:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _CAYA_MESSAGES_H
|
|
|
|
#define _CAYA_MESSAGES_H
|
|
|
|
|
2011-12-14 17:36:27 -06:00
|
|
|
//! Show settings window
|
|
|
|
const uint32 CAYA_SHOW_SETTINGS = 'RPST';
|
|
|
|
|
2010-05-16 16:02:50 -05:00
|
|
|
//! Open chat window
|
2011-12-14 17:36:27 -06:00
|
|
|
const uint32 CAYA_OPEN_CHAT_WINDOW = 'CYow';
|
2010-05-16 16:02:50 -05:00
|
|
|
|
|
|
|
//! Close chat window
|
2011-12-14 17:36:27 -06:00
|
|
|
const uint32 CAYA_CLOSE_CHAT_WINDOW = 'CYcw';
|
2010-05-16 16:02:50 -05:00
|
|
|
|
|
|
|
//! Chat messages
|
|
|
|
const uint32 CAYA_CHAT = 'CYch';
|
|
|
|
|
2021-05-27 11:15:30 -05:00
|
|
|
//! Create a new chat
|
|
|
|
const uint32 CAYA_NEW_CHAT = 'CYnc';
|
|
|
|
|
2021-06-18 01:13:02 -05:00
|
|
|
//! Create a new chat
|
|
|
|
const uint32 CAYA_NEW_ROOM = 'CYnr';
|
|
|
|
|
2021-06-01 21:43:19 -05:00
|
|
|
//! Join a chat
|
2021-06-18 01:13:02 -05:00
|
|
|
const uint32 CAYA_JOIN_ROOM = 'CYjr';
|
2021-06-01 21:43:19 -05:00
|
|
|
|
2021-05-31 10:50:43 -05:00
|
|
|
//! Invite user to current chat
|
|
|
|
const uint32 CAYA_SEND_INVITE = 'CYin';
|
|
|
|
|
2011-12-14 17:36:27 -06:00
|
|
|
//! Send replicant's messenger to Caya
|
|
|
|
const uint32 CAYA_REPLICANT_MESSENGER = 'RPme';
|
|
|
|
|
|
|
|
//! Status notification from the replicant
|
|
|
|
const uint32 CAYA_REPLICANT_STATUS_SET = 'RPMS';
|
|
|
|
|
|
|
|
//! Exit notification from replicant
|
|
|
|
const uint32 CAYA_REPLICANT_EXIT = 'RPEX';
|
|
|
|
|
|
|
|
//! Show main window replicant notification
|
|
|
|
const uint32 CAYA_REPLICANT_SHOW_WINDOW = 'CYSW';
|
|
|
|
|
2021-05-30 20:45:24 -05:00
|
|
|
//! Select the upward conversation
|
|
|
|
const uint32 CAYA_MOVE_UP = 'CYmu';
|
|
|
|
|
|
|
|
//! Select the downward conversation
|
|
|
|
const uint32 CAYA_MOVE_DOWN = 'CYmd';
|
|
|
|
|
2021-06-15 00:45:51 -05:00
|
|
|
//! Disable a given account
|
2021-06-11 20:33:28 -05:00
|
|
|
const uint32 CAYA_DISABLE_ACCOUNT = 'CYda';
|
|
|
|
|
2021-06-15 00:45:51 -05:00
|
|
|
//! Request a "help" message
|
|
|
|
const uint32 CAYA_REQUEST_HELP = 'CYhm';
|
|
|
|
|
2021-06-15 21:05:21 -05:00
|
|
|
//! Display a "user info" window
|
|
|
|
const uint32 CAYA_USER_INFO = 'CYuw';
|
|
|
|
|
2010-05-16 16:02:50 -05:00
|
|
|
#endif // _CAYA_MESSAGES_H
|