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.

26 lines
837B

  1. --- Justification.
  2. -- Is converted to a [JUCE Justification](http://www.juce.com/api/Justification.html)
  3. -- @classmod juce.Justification
  4. --- Justification Constants.
  5. -- @table juce.Justification
  6. local r = {
  7. left = 1;
  8. right = 2;
  9. horizontallyCentred = 4;
  10. top = 8;
  11. bottom = 16;
  12. verticallyCentred = 32;
  13. horizontallyJustified = 64;
  14. centred = 36;
  15. centredLeft = 33;
  16. centredRight = 34;
  17. centredTop = 12;
  18. centredBottom = 20;
  19. topLeft = 9;
  20. topRight = 10;
  21. bottomLeft = 17;
  22. bottomRight = 18
  23. }
  24. return r