AppMessages.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * Copyright 2010-2011, Pier Luigi Fiorini. All rights reserved.
  3. * Distributed under the terms of the MIT License.
  4. */
  5. #ifndef _APP_MESSAGES_H
  6. #define _APP_MESSAGES_H
  7. //! Show settings window
  8. const uint32 APP_SHOW_SETTINGS = 'RPST';
  9. //! Show accounts window
  10. const uint32 APP_SHOW_ACCOUNTS = 'RPac';
  11. //! Chat messages
  12. const uint32 APP_CHAT = 'CYch';
  13. //! Create a new chat
  14. const uint32 APP_NEW_CHAT = 'CYnc';
  15. //! Create a new chat
  16. const uint32 APP_NEW_ROOM = 'CYnr';
  17. //! Join a chat
  18. const uint32 APP_JOIN_ROOM = 'CYjr';
  19. //! Invite user to current chat
  20. const uint32 APP_SEND_INVITE = 'CYin';
  21. //! Send replicant's messenger to the app
  22. const uint32 APP_REPLICANT_MESSENGER = 'RPme';
  23. //! Status notification from the replicant
  24. const uint32 APP_REPLICANT_STATUS_SET = 'RPMS';
  25. //! Exit notification from replicant
  26. const uint32 APP_REPLICANT_EXIT = 'RPEX';
  27. //! Show main window replicant notification
  28. const uint32 APP_REPLICANT_SHOW_WINDOW = 'CYSW';
  29. //! Select the upward conversation
  30. const uint32 APP_MOVE_UP = 'CYmu';
  31. //! Select the downward conversation
  32. const uint32 APP_MOVE_DOWN = 'CYmd';
  33. //! An account has been disabled
  34. const uint32 APP_ACCOUNT_DISABLED = 'Axwo';
  35. //! An account's initial connection failed
  36. const uint32 APP_ACCOUNT_FAILED = 'Axwx';
  37. //! Request a "help" message
  38. const uint32 APP_REQUEST_HELP = 'CYhm';
  39. //! Display a "user info" window
  40. const uint32 APP_USER_INFO = 'CYuw';
  41. //! Display a "room info" window
  42. const uint32 APP_ROOM_INFO = 'CYrw';
  43. //! Toggle a specific flag for a room
  44. const uint32 APP_ROOM_FLAG = 'Rlag';
  45. //! Edit the contact roster
  46. const uint32 APP_EDIT_ROSTER = 'CYer';
  47. //! Edit a specific account
  48. const uint32 APP_EDIT_ACCOUNT = 'CYea';
  49. //! Toggle a specific account
  50. const uint32 APP_TOGGLE_ACCOUNT = 'CYta';
  51. #endif // _APP_MESSAGES_H