1.4 KiB
1.4 KiB
Dropdown
This is the dropdown class. It is a visual element that can show a list of selectable items in a dropdown menu.
Extends: List
Properties
| Property | Type | Default | Description |
|---|---|---|---|
| isOpen | boolean | false | Whether the dropdown menu is currently open |
| dropdownHeight | number | 5 | Maximum height of the dropdown menu when open |
| selectedText | string | "" | The text to show when no item is selected |
| dropSymbol | string | "\31" | The symbol to show for dropdown indication |
Functions
| Method | Returns | Description |
|---|---|---|
| Dropdown.new | Dropdown | Creates a new Dropdown instance |
| Dropdown:init | Dropdown | Initializes the Dropdown instance |
| Dropdown:mouse_click | boolean | Handles mouse click events |
| Dropdown:render | - | Renders the Dropdown |
Dropdown.new()
Creates a new Dropdown instance
Returns
DropdownselfThe newly created Dropdown instance
Dropdown:init(props, basalt)
Parameters
propstableThe properties to initialize the element withbasalttableThe basalt instance
Returns
DropdownselfThe initialized instance
Dropdown:mouse_click(button, x, y)
Parameters
buttonnumberThe button that was clickedxnumberThe x position of the clickynumberThe y position of the click
Returns
booleanhandledWhether the event was handled