uvi-script
Musical event scripting with Lua
Loading...
Searching...
No Matches
Viewport Class Reference

Viewport widget. More...

Inheritance diagram for Viewport:
Widget

Public Member Functions

 Viewport (string name)
 creates a Viewport widget on the user interface.
 
void setViewPosition (int x, int y)
 changes the position of the viewed component
 

Public Attributes

int scrollBarThickness
 scrollBar size
 
string scrollBarThumbColour
 scrollBar thumb colour.
 
string scrollBarTrackColour
 scrollBar track colour.
 
string scrollBarBackgroundColour
 scrollBar background colour.
 
- 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
 

Detailed Description

Viewport widget.

creates a Viewport widget on the user interface.

local viewport = Viewport("viewport")
viewport.x = 5
viewport.y = 5
viewport.width = 100
viewport.height = 100
local panel = viewport:Panel("panel")
panel.size = {700, 700}
panel:Button("foo")
stateless transient button.
Definition ui.cpp:804
Panel widget.
Definition ui.cpp:1502
Viewport(string name)
creates a Viewport widget on the user interface.
int x
x position in pixels
Definition ui.cpp:760
int height
widget height in pixels
Definition ui.cpp:763
table size
widget size {width, height}
Definition ui.cpp:764
int y
y position in pixels
Definition ui.cpp:761
int width
widget width in pixels
Definition ui.cpp:762

Constructor & Destructor Documentation

◆ Viewport()

Viewport::Viewport ( string name)

creates a Viewport widget on the user interface.

Parameters
namethe name to give to the widget

Member Data Documentation

◆ scrollBarBackgroundColour

string Viewport::scrollBarBackgroundColour

scrollBar background colour.

It can be either a named colour like "blue" or "red" or an hexadecimal string in RGB ("#FF00CC") or ARGB ("#3C00FECD") format

◆ scrollBarThumbColour

string Viewport::scrollBarThumbColour

scrollBar thumb colour.

It can be either a named colour like "blue" or "red" or an hexadecimal string in RGB ("#FF00CC") or ARGB ("#3C00FECD") format

◆ scrollBarTrackColour

string Viewport::scrollBarTrackColour

scrollBar track colour.

It can be either a named colour like "blue" or "red" or an hexadecimal string in RGB ("#FF00CC") or ARGB ("#3C00FECD") format