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.

99 lines
3.3KB

  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. /**
  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. createNewExporter = 0x20007d,
  35. showUTF8Tool = 0x200076,
  36. showGlobalPreferences = 0x200077,
  37. showConfigPanel = 0x200074,
  38. showFilePanel = 0x200078,
  39. showTranslationTool = 0x200079,
  40. showProjectSettings = 0x20007a,
  41. showProjectModules = 0x20007b,
  42. showSVGPathTool = 0x20007c,
  43. closeWindow = 0x201001,
  44. closeAllDocuments = 0x201000,
  45. goToPreviousDoc = 0x201002,
  46. goToNextDoc = 0x201003,
  47. goToCounterpart = 0x201004,
  48. deleteSelectedItem = 0x201005,
  49. showFindPanel = 0x2010a0,
  50. findSelection = 0x2010a1,
  51. findNext = 0x2010a2,
  52. findPrevious = 0x2010a3,
  53. showBuildTab = 0x410001,
  54. cleanAll = 0x410010,
  55. enableBuild = 0x410011,
  56. showWarnings = 0x410012,
  57. reinstantiateComp = 0x410013,
  58. launchApp = 0x410014,
  59. killApp = 0x410015,
  60. buildNow = 0x41001a,
  61. toggleContinuousBuild = 0x41001b,
  62. enableSnapToGrid = 0x410016,
  63. zoomIn = 0x410017,
  64. zoomOut = 0x410018,
  65. zoomNormal = 0x410019,
  66. spaceBarDrag = 0x4100a1,
  67. nextError = 0x4100b1,
  68. prevError = 0x4100b2,
  69. loginLogout = 0x4100c1,
  70. lastCommandIDEntry
  71. };
  72. }
  73. namespace CommandCategories
  74. {
  75. static const char* const general = "General";
  76. static const char* const editing = "Editing";
  77. static const char* const view = "View";
  78. static const char* const windows = "Windows";
  79. }