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.
|
- --- Justification.
- -- Is converted to a [JUCE Justification](http://www.juce.com/api/Justification.html)
- -- @classmod juce.Justification
-
- --- Justification Constants.
- -- @table juce.Justification
- local r = {
- left = 1;
- right = 2;
- horizontallyCentred = 4;
- top = 8;
- bottom = 16;
- verticallyCentred = 32;
- horizontallyJustified = 64;
- centred = 36;
- centredLeft = 33;
- centredRight = 34;
- centredTop = 12;
- centredBottom = 20;
- topLeft = 9;
- topRight = 10;
- bottomLeft = 17;
- bottomRight = 18
- }
-
- return r
|