![]() |
uvi-script
Musical event scripting with Lua
|
Public Member Functions | |
| XY (string paramX, string paramY) | |
| creates an XY widget on the user interface. | |
Public Attributes | |
| string | paramX |
| name of the parameter to control on the X axis | |
| string | paramY |
| name of the parameter to control on the Y axis | |
| string | handleImage |
| path to handle image | |
| string | backgroundColour |
| background colour. | |
| string | handleColour |
| handle colour. | |
| bool | canOnlyDragHandle |
| should click on handle to move it. | |
Public Attributes inherited from Widget | |
| string | name |
| widget name | |
| string | displayName |
| widget display name | |
| string | tooltip |
| widget tooltip, default is name | |
| int | x |
| x position in pixels | |
| int | y |
| y position in pixels | |
| int | width |
| widget width in pixels | |
| int | height |
| widget height in pixels | |
| table | size |
| widget size {width, height} | |
| table | position |
| widget position {x,y} | |
| table | bounds |
| widget bounding rect {x,y,width,height} | |
| number | alpha |
| transparency value between 0.0 and 1.0 | |
| bool | enabled |
| boolean flag to enable / disable the widget | |
| bool | visible |
| boolean flag to toggle widget visibility | |
| bool | interceptsMouseClicks |
| boolean flag to toggle mouse handling on widget | |
| bool | showLabel |
| show widgets label if any | |
| bool | persistent |
| flag to tell if the widget values should be serialized when saving. | |
| function | changed |
| callback function used by child widgets to be notified of changes | |
XY widget.
Creates an XY widget on the user interface.
| XY::XY | ( | string | paramX, |
| string | paramY ) |
creates an XY widget on the user interface.
| paramX | the name of the parameter to control on the X axis |
| paramY | the name of the parameter to control on the Y axis |
| string XY::backgroundColour |
background colour.
It can be either a named colour like "blue" or "red" or an hexadecimal string in RGB ("#FF00CC") or ARGB ("#3C00FECD") format
| bool XY::canOnlyDragHandle |
should click on handle to move it.
Allows to put different XY widget on top of each other
| string XY::handleColour |
handle colour.
It can be either a named colour like "blue" or "red" or an hexadecimal string in RGB ("#FF00CC") or ARGB ("#3C00FECD") format