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.

72 lines
2.2KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2022 - Raw Material Software Limited
  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 7 End-User License
  8. Agreement and JUCE Privacy Policy.
  9. End User License Agreement: www.juce.com/juce-7-licence
  10. Privacy Policy: www.juce.com/juce-privacy-policy
  11. Or: You may also use this code under the terms of the GPL v3 (see
  12. www.gnu.org/licenses).
  13. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  14. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  15. DISCLAIMED.
  16. ==============================================================================
  17. */
  18. #pragma once
  19. //==============================================================================
  20. /**
  21. A namespace to hold all the possible command IDs.
  22. */
  23. namespace JucerCommandIDs
  24. {
  25. enum
  26. {
  27. test = 0xf20009,
  28. toFront = 0xf2000a,
  29. toBack = 0xf2000b,
  30. group = 0xf20017,
  31. ungroup = 0xf20018,
  32. showGrid = 0xf2000e,
  33. enableSnapToGrid = 0xf2000f,
  34. editCompLayout = 0xf20010,
  35. editCompGraphics = 0xf20011,
  36. bringBackLostItems = 0xf20012,
  37. zoomIn = 0xf20013,
  38. zoomOut = 0xf20014,
  39. zoomNormal = 0xf20015,
  40. spaceBarDrag = 0xf20016,
  41. compOverlay0 = 0xf20020,
  42. compOverlay33 = 0xf20021,
  43. compOverlay66 = 0xf20022,
  44. compOverlay100 = 0xf20023,
  45. newDocumentBase = 0xf32001,
  46. newComponentBase = 0xf30001,
  47. newElementBase = 0xf31001,
  48. alignTop = 0xf33000,
  49. alignRight = 0xf33001,
  50. alignBottom = 0xf33002,
  51. alignLeft = 0xf33003,
  52. };
  53. }