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.

105 lines
3.5KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2017 - ROLI Ltd.
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. By using JUCE, you agree to the terms of both the JUCE 5 End-User License
  8. Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
  9. 27th April 2017).
  10. End User License Agreement: www.juce.com/juce-5-licence
  11. Privacy Policy: www.juce.com/juce-5-privacy-policy
  12. Or: You may also use this code under the terms of the GPL v3 (see
  13. www.gnu.org/licenses).
  14. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  15. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  16. DISCLAIMED.
  17. ==============================================================================
  18. */
  19. /**
  20. A namespace to hold all the possible command IDs.
  21. */
  22. namespace CommandIDs
  23. {
  24. enum
  25. {
  26. newProject = 0x300000,
  27. open = 0x300001,
  28. closeDocument = 0x300002,
  29. saveDocument = 0x300003,
  30. saveDocumentAs = 0x300004,
  31. closeProject = 0x300010,
  32. saveProject = 0x300011,
  33. saveAll = 0x300012,
  34. openInIDE = 0x300013,
  35. saveAndOpenInIDE = 0x300014,
  36. createNewExporter = 0x300015,
  37. showUTF8Tool = 0x300020,
  38. showGlobalPathsWindow = 0x300021,
  39. showTranslationTool = 0x300022,
  40. showSVGPathTool = 0x300023,
  41. showAboutWindow = 0x300024,
  42. showAppUsageWindow = 0x300025,
  43. showProjectSettings = 0x300030,
  44. showProjectTab = 0x300031,
  45. showBuildTab = 0x300032,
  46. showFileExplorerPanel = 0x300033,
  47. showModulesPanel = 0x300034,
  48. showExportersPanel = 0x300035,
  49. showExporterSettings = 0x300036,
  50. closeWindow = 0x300040,
  51. closeAllDocuments = 0x300041,
  52. goToPreviousDoc = 0x300042,
  53. goToNextDoc = 0x300043,
  54. goToCounterpart = 0x300044,
  55. deleteSelectedItem = 0x300045,
  56. showFindPanel = 0x300050,
  57. findSelection = 0x300051,
  58. findNext = 0x300052,
  59. findPrevious = 0x300053,
  60. cleanAll = 0x300060,
  61. toggleBuildEnabled = 0x300061,
  62. showWarnings = 0x300062,
  63. reinstantiateComp = 0x300063,
  64. launchApp = 0x300064,
  65. killApp = 0x300065,
  66. buildNow = 0x300066,
  67. toggleContinuousBuild = 0x300067,
  68. enableSnapToGrid = 0x300070,
  69. zoomIn = 0x300071,
  70. zoomOut = 0x300072,
  71. zoomNormal = 0x300073,
  72. spaceBarDrag = 0x300074,
  73. nextError = 0x300080,
  74. prevError = 0x300081,
  75. loginLogout = 0x300090,
  76. lastCommandIDEntry
  77. };
  78. }
  79. namespace CommandCategories
  80. {
  81. static const char* const general = "General";
  82. static const char* const editing = "Editing";
  83. static const char* const view = "View";
  84. static const char* const windows = "Windows";
  85. }