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.

59 lines
2.2KB

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