Widgets are a class of StageNode which represent UI elements (e.g. Button, Label etc.). Widgets are managed by a stage's UI manager which can be accessed via the ui
property.
Currently the following widgets are (partially) implemented:
You can create new widgets using the UI manager. Widgets are composite objects which are made up of a mesh, and a child actor which uses that mesh. The mesh is made up of a series of rectangular layers which are stacked in the following order:
You can set the colours of each of these layers independently. You can also set the width of the border, and the amount of padding the widget has between the text and the bounds of the widget.
The foreground is a special layer whose use varies depending on the widget type. The progress bar for example uses the foreground layer as the indicator bar itself, a checkbox might make the foreground layer visible when checked etc.
There are a number of different methods of controlling widget sizes. These are:
RESIZE_MODE_FIXED
- The widget is sized to whatever size you set and the text content tries to adjus accordinglyRESIZE_MODE_FIXED_WIDTH
- The width you set is respected, but the height you set is treated as the minimum height. The height will expand to fit the text content.RESIZE_MODE_FIXED_HEIGHT
- The height you set is respected but the width is the minimum width and will expand to fit the text content.RESIZE_MODE_FIT_CONTENT
- The width and height you specify are the minimum values, the widget will expand horizontally to fit the text, and vertically if the text contains newlines.It's important to remember that padding doesn't affect the total widget size, and the border size extends outside the boundaries of the widget.
An Image widget allows you display an image (e.g. a HUD icon) on the screen. Under the hood these
are implemented as widgets with a background image and an enforced RESIZE_MODE_FIXED
resize mode.
Sample usage:
auto simulant_logo = stage_->assets->new_texture_from_file("simulant/textures/simulant-icon.png");
auto icon = stage_->ui->new_widget_as_image(simulant_logo);
You can set the source area of the Image widget (the region of the texture that is displayed) using the set_source_rect
method:
Image::set_source_rect(Vec2 bottom_left, Vec2 size)