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.

60 lines
2.4KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library - "Jules' Utility Class Extensions"
  4. Copyright 2004-11 by Raw Material Software Ltd.
  5. ------------------------------------------------------------------------------
  6. JUCE can be redistributed and/or modified under the terms of the GNU General
  7. Public License (Version 2), as published by the Free Software Foundation.
  8. A copy of the license is included in the JUCE distribution, or can be found
  9. online at www.gnu.org/licenses.
  10. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  11. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  13. ------------------------------------------------------------------------------
  14. To release a closed-source product which uses JUCE, commercial licenses are
  15. available: visit www.rawmaterialsoftware.com/juce for more information.
  16. ==============================================================================
  17. */
  18. /**
  19. A namespace to hold all the possible command IDs.
  20. */
  21. namespace JucerCommandIDs
  22. {
  23. static const int test = 0xf20009;
  24. static const int toFront = 0xf2000a;
  25. static const int toBack = 0xf2000b;
  26. static const int group = 0xf20017;
  27. static const int ungroup = 0xf20018;
  28. static const int showGrid = 0xf2000e;
  29. static const int enableSnapToGrid = 0xf2000f;
  30. static const int editCompLayout = 0xf20010;
  31. static const int editCompGraphics = 0xf20011;
  32. static const int bringBackLostItems = 0xf20012;
  33. static const int zoomIn = 0xf20013;
  34. static const int zoomOut = 0xf20014;
  35. static const int zoomNormal = 0xf20015;
  36. static const int spaceBarDrag = 0xf20016;
  37. static const int compOverlay0 = 0xf20020;
  38. static const int compOverlay33 = 0xf20021;
  39. static const int compOverlay66 = 0xf20022;
  40. static const int compOverlay100 = 0xf20023;
  41. static const int newDocumentBase = 0xf32001;
  42. static const int newComponentBase = 0xf30001;
  43. static const int newElementBase = 0xf31001;
  44. }