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.

62 lines
1.9KB

  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 JucerCommandIDs
  21. {
  22. enum
  23. {
  24. test = 0xf20009,
  25. toFront = 0xf2000a,
  26. toBack = 0xf2000b,
  27. group = 0xf20017,
  28. ungroup = 0xf20018,
  29. showGrid = 0xf2000e,
  30. enableSnapToGrid = 0xf2000f,
  31. editCompLayout = 0xf20010,
  32. editCompGraphics = 0xf20011,
  33. bringBackLostItems = 0xf20012,
  34. zoomIn = 0xf20013,
  35. zoomOut = 0xf20014,
  36. zoomNormal = 0xf20015,
  37. spaceBarDrag = 0xf20016,
  38. compOverlay0 = 0xf20020,
  39. compOverlay33 = 0xf20021,
  40. compOverlay66 = 0xf20022,
  41. compOverlay100 = 0xf20023,
  42. newDocumentBase = 0xf32001,
  43. newComponentBase = 0xf30001,
  44. newElementBase = 0xf31001
  45. };
  46. }