Chat-O-Matic/application/AppMessages.h

84 lines
1.9 KiB
C
Raw Normal View History

2021-06-20 12:44:20 -05:00
/*
* Copyright 2010-2011, Pier Luigi Fiorini. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _APP_MESSAGES_H
#define _APP_MESSAGES_H
//! Show settings window
const uint32 APP_SHOW_SETTINGS = 'RPST';
//! Show documentation
const uint32 APP_SHOW_HELP = 'Rhlp';
//! Show accounts window
const uint32 APP_SHOW_ACCOUNTS = 'RPac';
2021-06-20 12:44:20 -05:00
//! Chat messages
const uint32 APP_CHAT = 'CYch';
//! Create a new chat
const uint32 APP_NEW_CHAT = 'CYnc';
//! Create a new chat
const uint32 APP_NEW_ROOM = 'CYnr';
//! Join a chat
const uint32 APP_JOIN_ROOM = 'CYjr';
//! Room directory
const uint32 APP_ROOM_DIRECTORY = 'CYrd';
2021-06-20 12:44:20 -05:00
//! Invite user to current chat
const uint32 APP_SEND_INVITE = 'CYin';
//! Send replicant's messenger to the app
const uint32 APP_REPLICANT_MESSENGER = 'RPme';
//! Status notification from the replicant
const uint32 APP_REPLICANT_STATUS_SET = 'RPMS';
//! Exit notification from replicant
const uint32 APP_REPLICANT_EXIT = 'RPEX';
//! Show main window replicant notification
const uint32 APP_REPLICANT_SHOW_WINDOW = 'CYSW';
//! Select the upward conversation
const uint32 APP_MOVE_UP = 'CYmu';
//! Select the downward conversation
const uint32 APP_MOVE_DOWN = 'CYmd';
//! An account has been disabled
const uint32 APP_ACCOUNT_DISABLED = 'Axwo';
//! An account's initial connection failed
const uint32 APP_ACCOUNT_FAILED = 'Axwx';
2021-06-20 12:44:20 -05:00
//! Request a "help" message
const uint32 APP_REQUEST_HELP = 'CYhm';
//! Display a "user info" window
const uint32 APP_USER_INFO = 'CYuw';
2021-08-04 12:44:20 -05:00
//! Display a "room info" window
const uint32 APP_ROOM_INFO = 'CYrw';
2021-08-31 22:04:19 -05:00
//! Open the room's logs with TextSearch
const uint32 APP_ROOM_SEARCH = 'CYrs';
//! Toggle a specific flag for a room
const uint32 APP_ROOM_FLAG = 'Rlag';
2021-06-20 12:44:20 -05:00
//! Edit the contact roster
const uint32 APP_EDIT_ROSTER = 'CYer';
//! Edit a specific account
const uint32 APP_EDIT_ACCOUNT = 'CYea';
2021-08-07 17:37:16 -05:00
//! Toggle a specific account
const uint32 APP_TOGGLE_ACCOUNT = 'CYta';
2021-06-20 12:44:20 -05:00
#endif // _APP_MESSAGES_H