|
CPP-TOOLBOX
|
Interface for UI rendering operations. More...
#include <ui.hpp>
Public Member Functions | |
| virtual | ~IUIRenderSuite ()=default |
| virtual void | render_colored_box (const UIRect &cb)=0 |
| Render a colored box. | |
| virtual void | render_text_box (const UITextBox &tb)=0 |
| Render a text box. | |
| virtual void | render_clickable_text_box (const UIClickableTextBox &cr)=0 |
| Render a clickable text box. | |
| virtual void | render_input_box (const UIInputBox &ib)=0 |
| Render an input box. | |
| virtual void | render_dropdown (const UIDropdown &dd)=0 |
| Render a dropdown menu. | |
| virtual void | render_dropdown_option (const UIDropdownOption &udo)=0 |
Interface for UI rendering operations.
|
virtualdefault |
|
pure virtual |
Render a clickable text box.
| cr | The UIClickableTextBox containing text and background data. |
Implemented in UIRenderSuiteImpl.
|
pure virtual |
Render a colored box.
| cb | The UIRect containing rendering data. |
Implemented in UIRenderSuiteImpl.
|
pure virtual |
Render a dropdown menu.
| dd | The UIDropdown containing text and background data. |
Implemented in UIRenderSuiteImpl.
|
pure virtual |
Implemented in UIRenderSuiteImpl.
|
pure virtual |
Render an input box.
| ib | The UIInputBox containing text and background data. |
Implemented in UIRenderSuiteImpl.
|
pure virtual |
Render a text box.
| tb | The UITextBox containing text and background data. |
Implemented in UIRenderSuiteImpl.