Extra "ports" of juce-based plugins using the distrho build system
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.

22 lines
627B

  1. --- Rectangle Placement.
  2. -- Is converted to a [JUCE RectanglePlacement](http://www.juce.com/api/RectanglePlacement.html)
  3. -- @classmod juce.RectanglePlacement
  4. --- Rectangle Placement Constants.
  5. -- @table juce.RectanglePlacement
  6. local r = {
  7. xLeft = 1;
  8. xRight = 2;
  9. xMid = 4;
  10. yTop = 8;
  11. yBottom = 16;
  12. yMid = 32;
  13. stretchToFit = 64;
  14. fillDestination = 128;
  15. onlyReduceInSize = 256;
  16. onlyIncreaseInSize = 512;
  17. doNotResize = 768;
  18. centred = 4 + 32
  19. }
  20. return r