Combo
Combo Widget API
Properties
Selectable
WidgetHasStateCombo.Selectable:
Iris.Selectable
An object which can be selected.
hasChildren = false
hasState = true
Arguments = {
Text: string,
Index: any, -- index of selectable value.
NoClick: boolean? = false -- prevents the selectable from being clicked by the user.
}
Events = {
selected: () -> boolean,
unselected: () -> boolean,
active: () -> boolean,
clicked: () -> boolean,
rightClicked: () -> boolean,
doubleClicked: () -> boolean,
ctrlClicked: () -> boolean,
hovered: () -> boolean,
}
States = {
index: State<any> -- a shared state between all selectables.
}
Combo
WidgetHasChildrenHasStateCombo.Combo:
Iris.Combo
A dropdown menu box to make a selection from a list of values.
hasChildren = true
hasState = true
Arguments = {
Text: string,
NoButton: boolean? = false, -- hide the dropdown button.
NoPreview: boolean? = false -- hide the preview field.
}
Events = {
opened: () -> boolean,
closed: () -> boolean,
changed: () -> boolean,
clicked: () -> boolean,
hovered: () -> boolean
}
States = {
index: State<any>,
isOpened: State<boolean>?
}
ComboArray
WidgetHasChildrenHasStateCombo.ComboArray:
Iris.Combo
A selection box to choose a value from an array.
hasChildren = true
hasState = true
Arguments = {
Text: string,
NoButton: boolean? = false, -- hide the dropdown button.
NoPreview: boolean? = false -- hide the preview field.
}
Events = {
opened: () -> boolean,
closed: () -> boolean,
clicked: () -> boolean,
hovered: () -> boolean
}
States = {
index: State<any>,
isOpened: State<boolean>?
}
Extra = {
selectionArray: { any } -- the array to generate a combo from.
}
ComboEnum
WidgetHasChildrenHasStateCombo.ComboEnum:
Iris.Combo
A selection box to choose a value from an Enum.
hasChildren = true
hasState = true
Arguments = {
Text: string,
NoButton: boolean? = false, -- hide the dropdown button.
NoPreview: boolean? = false -- hide the preview field.
}
Events = {
opened: () -> boolean,
closed: () -> boolean,
clicked: () -> boolean,
hovered: () -> boolean
}
States = {
index: State<any>,
isOpened: State<boolean>?
}
Extra = {
enumType: Enum -- the enum to generate a combo from.
}