The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.8KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2015 - ROLI Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. #define DECLARE_ID(name) static const Identifier name (#name)
  18. namespace MessageTypes
  19. {
  20. DECLARE_ID (PING);
  21. DECLARE_ID (BUILDINFO);
  22. DECLARE_ID (COMPILEUNIT);
  23. DECLARE_ID (USERFILE);
  24. DECLARE_ID (DIAGNOSTIC);
  25. DECLARE_ID (DIAGNOSTIC_LIST);
  26. DECLARE_ID (ACTIVITY_LIST);
  27. DECLARE_ID (MISSING_SYSTEM_HEADERS);
  28. DECLARE_ID (BUILD_FAILED);
  29. DECLARE_ID (CHANGE_CODE);
  30. DECLARE_ID (HIGHLIGHT_CODE);
  31. DECLARE_ID (CRASH);
  32. DECLARE_ID (LAUNCHED);
  33. DECLARE_ID (APPQUIT);
  34. DECLARE_ID (KEY);
  35. DECLARE_ID (QUIT_IDE);
  36. DECLARE_ID (CLEAN_ALL);
  37. DECLARE_ID (OPEN_PREVIEW);
  38. DECLARE_ID (RELOAD);
  39. DECLARE_ID (LIVE_FILE_CHANGES);
  40. DECLARE_ID (CHANGE);
  41. DECLARE_ID (LIVE_FILE_UPDATE);
  42. DECLARE_ID (LIVE_FILE_RESET);
  43. DECLARE_ID (LAUNCH_APP);
  44. DECLARE_ID (FOREGROUND);
  45. DECLARE_ID (QUIT_SERVER);
  46. }
  47. #undef DECLARE_ID