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.

74 lines
2.5KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2013 - Raw Material Software 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. /**
  18. A namespace to hold all the possible command IDs.
  19. */
  20. namespace CommandIDs
  21. {
  22. enum
  23. {
  24. newProject = 0x200010,
  25. open = 0x200020,
  26. closeDocument = 0x200030,
  27. saveDocument = 0x200040,
  28. saveDocumentAs = 0x200041,
  29. closeProject = 0x200051,
  30. saveProject = 0x200060,
  31. saveAll = 0x200080,
  32. openInIDE = 0x200072,
  33. saveAndOpenInIDE = 0x200073,
  34. showUTF8Tool = 0x200076,
  35. showAppearanceSettings = 0x200077,
  36. showConfigPanel = 0x200074,
  37. showFilePanel = 0x200078,
  38. showTranslationTool = 0x200079,
  39. showProjectSettings = 0x20007a,
  40. showProjectModules = 0x20007b,
  41. showSVGPathTool = 0x20007c,
  42. closeWindow = 0x201001,
  43. closeAllDocuments = 0x201000,
  44. goToPreviousDoc = 0x201002,
  45. goToNextDoc = 0x201003,
  46. goToCounterpart = 0x201004,
  47. deleteSelectedItem = 0x201005,
  48. showFindPanel = 0x2010a0,
  49. findSelection = 0x2010a1,
  50. findNext = 0x2010a2,
  51. findPrevious = 0x2010a3
  52. };
  53. }
  54. namespace CommandCategories
  55. {
  56. static const char* const general = "General";
  57. static const char* const editing = "Editing";
  58. static const char* const view = "View";
  59. static const char* const windows = "Windows";
  60. }