70c6001189
ALT-↑ and ALT-↓ change the active conversation, based on its position in the main window's ConversationListView. If a conversation is registered by the main window, and no other conversation is selected, it is automatically selected.
42 lines
1022 B
C
42 lines
1022 B
C
/*
|
|
* Copyright 2010-2011, Pier Luigi Fiorini. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _CAYA_MESSAGES_H
|
|
#define _CAYA_MESSAGES_H
|
|
|
|
//! Show settings window
|
|
const uint32 CAYA_SHOW_SETTINGS = 'RPST';
|
|
|
|
//! Open chat window
|
|
const uint32 CAYA_OPEN_CHAT_WINDOW = 'CYow';
|
|
|
|
//! Close chat window
|
|
const uint32 CAYA_CLOSE_CHAT_WINDOW = 'CYcw';
|
|
|
|
//! Chat messages
|
|
const uint32 CAYA_CHAT = 'CYch';
|
|
|
|
//! Create a new chat
|
|
const uint32 CAYA_NEW_CHAT = 'CYnc';
|
|
|
|
//! 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';
|
|
|
|
//! Select the upward conversation
|
|
const uint32 CAYA_MOVE_UP = 'CYmu';
|
|
|
|
//! Select the downward conversation
|
|
const uint32 CAYA_MOVE_DOWN = 'CYmd';
|
|
|
|
#endif // _CAYA_MESSAGES_H
|