AppConstants.h 999 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Copyright 2009-2011, Andrea Anzani. All rights reserved.
  3. * Copyright 2009-2011, Pier Luigi Fiorini. All rights reserved.
  4. * Distributed under the terms of the MIT License.
  5. */
  6. #ifndef _APP_CONSTANTS_H
  7. #define _APP_CONSTANTS_H
  8. #include <GraphicsDefs.h>
  9. /**
  10. * Color constants.
  11. */
  12. const rgb_color APP_ORANGE_COLOR = {255, 186, 0, 255};
  13. const rgb_color APP_GREEN_COLOR = {43, 134, 43, 255};
  14. const rgb_color APP_RED_COLOR = {175, 1, 1, 255};
  15. const rgb_color APP_WHITE_COLOR = {255, 255, 255, 255};
  16. const rgb_color APP_BLACK_COLOR = {0, 0, 0, 255};
  17. const rgb_color APP_SELSTART_COLOR = {254, 150, 57};
  18. const rgb_color APP_SELEND_COLOR = {230, 113, 9};
  19. #define APP_MENTION_BEEP "Chat-o-Matic mention"
  20. #define APP_MESSAGE_BEEP "Chat-o-Matic message"
  21. /**
  22. * Status codes.
  23. */
  24. enum UserStatus {
  25. STATUS_ONLINE = 1,
  26. STATUS_AWAY = 2,
  27. STATUS_DO_NOT_DISTURB = 3,
  28. STATUS_CUSTOM_STATUS = 4,
  29. STATUS_INVISIBLE = 5,
  30. STATUS_OFFLINE = 6,
  31. STATUS_STATUSES = 7
  32. };
  33. #endif // _APP_CONSTANTS_H