|
template<class T , class... Args> |
std::shared_ptr< T > | Make (Args &&... args) |
|
Component | operator| (Component component, ComponentDecorator decorator) |
|
Component | operator| (Component component, ElementDecorator decorator) |
|
Component & | operator|= (Component &component, ComponentDecorator decorator) |
|
Component & | operator|= (Component &component, ElementDecorator decorator) |
|
Component | Vertical (Components children) |
| A list of components, drawn one by one vertically and navigated vertically using up/down arrow key or 'j'/'k' keys. More...
|
|
Component | Vertical (Components children, int *selector) |
| A list of components, drawn one by one vertically and navigated vertically using up/down arrow key or 'j'/'k' keys. This is useful for implementing a Menu for instance. More...
|
|
Component | Horizontal (Components children) |
| A list of components, drawn one by one horizontally and navigated horizontally using left/right arrow key or 'h'/'l' keys. More...
|
|
Component | Horizontal (Components children, int *selector) |
| A list of components, drawn one by one horizontally and navigated horizontally using left/right arrow key or 'h'/'l' keys. More...
|
|
Component | Tab (Components children, int *selector) |
| A list of components, where only one is drawn and interacted with at a time. The |selector| gives the index of the selected component. This is useful to implement tabs. More...
|
|
Component | Stacked (Components children) |
| A list of components to be stacked on top of each other. Events are propagated to the first component, then the second if not handled, etc. The components are drawn in the reverse order they are given. When a component take focus, it is put at the front, without changing the relative order of the other elements. More...
|
|
Component | Button (ButtonOption option) |
| Draw a button. Execute a function when clicked. More...
|
|
Component | Button (ConstStringRef label, std::function< void()> on_click, ButtonOption option) |
| Draw a button. Execute a function when clicked. More...
|
|
Component | Checkbox (CheckboxOption options) |
|
Component | Checkbox (ConstStringRef label, bool *checked, CheckboxOption option) |
| Draw checkable element. More...
|
|
Component | Input (InputOption option) |
| An input box for editing text. More...
|
|
Component | Input (StringRef content, InputOption option) |
| An input box for editing text. More...
|
|
Component | Input (StringRef content, StringRef placeholder, InputOption option) |
| An input box for editing text. More...
|
|
Component | Menu (MenuOption option) |
| A list of text. The focused element is selected. More...
|
|
Component | Menu (ConstStringListRef entries, int *selected, MenuOption option) |
| A list of text. The focused element is selected. More...
|
|
Component | MenuEntry (MenuEntryOption option) |
| A specific menu entry. They can be put into a Container::Vertical to form a menu. More...
|
|
Component | MenuEntry (ConstStringRef label, MenuEntryOption option) |
| A specific menu entry. They can be put into a Container::Vertical to form a menu. More...
|
|
Component | Radiobox (RadioboxOption option) |
| A list of element, where only one can be selected. More...
|
|
Component | Radiobox (ConstStringListRef entries, int *selected, RadioboxOption option) |
| A list of element, where only one can be selected. More...
|
|
Component | Dropdown (ConstStringListRef entries, int *selected) |
| A dropdown menu. More...
|
|
Component | Toggle (ConstStringListRef entries, int *selected) |
| An horizontal list of elements. The user can navigate through them. More...
|
|
template<typename T > |
Component | Slider (SliderOption< T > options) |
| A slider in any direction. More...
|
|
Component | Slider (ConstStringRef label, Ref< int > value, ConstRef< int > min, ConstRef< int > max, ConstRef< int > increment) |
| An horizontal slider. More...
|
|
Component | Slider (ConstStringRef label, Ref< float > value, ConstRef< float > min=0.f, ConstRef< float > max=100.f, ConstRef< float > increment=5.f) |
|
Component | Slider (ConstStringRef label, Ref< long > value, ConstRef< long > min=0l, ConstRef< long > max=100l, ConstRef< long > increment=5l) |
|
Component | ResizableSplit (ResizableSplitOption options) |
| A split in between two components. More...
|
|
Component | ResizableSplitLeft (Component main, Component back, int *main_size) |
| An horizontal split in between two components, configurable using the mouse. More...
|
|
Component | ResizableSplitRight (Component main, Component back, int *main_size) |
| An horizontal split in between two components, configurable using the mouse. More...
|
|
Component | ResizableSplitTop (Component main, Component back, int *main_size) |
| An vertical split in between two components, configurable using the mouse. More...
|
|
Component | ResizableSplitBottom (Component main, Component back, int *main_size) |
| An vertical split in between two components, configurable using the mouse. More...
|
|
Component | Renderer (Component child, std::function< Element()> render) |
| Return a new Component, similar to |child|, but using |render| as the Component::Render() event. More...
|
|
Component | Renderer (std::function< Element()> render) |
| Return a component, using |render| to render its interface. More...
|
|
Component | Renderer (std::function< Element(bool)> render) |
| Return a focusable component, using |render| to render its interface. More...
|
|
ComponentDecorator | Renderer (ElementDecorator decorator) |
| Decorate a component, by decorating what it renders. More...
|
|
Component | CatchEvent (Component child, std::function< bool(Event)>) |
|
ComponentDecorator | CatchEvent (std::function< bool(Event)> on_event) |
| Decorate a component, using |on_event| to catch events. This function must returns true when the event has been handled, false otherwise. More...
|
|
Component | Maybe (Component child, const bool *show) |
| Decorate a component |child|. It is shown only when |show| is true. More...
|
|
Component | Maybe (Component child, std::function< bool()> show) |
| Decorate a component |child|. It is shown only when |show| returns true. More...
|
|
ComponentDecorator | Maybe (const bool *show) |
| Decorate a component. It is shown only when |show| is true. More...
|
|
ComponentDecorator | Maybe (std::function< bool()> show) |
| Decorate a component. It is shown only when the |show| function returns true. More...
|
|
Component | Modal (Component main, Component modal, const bool *show_modal) |
|
ComponentDecorator | Modal (Component modal, const bool *show_modal) |
|
Component | Collapsible (ConstStringRef label, Component child, Ref< bool > show=false) |
|
Component | Hoverable (Component component, bool *hover) |
| Wrap a component. Gives the ability to know if it is hovered by the mouse. More...
|
|
Component | Hoverable (Component component, std::function< void()> on_enter, std::function< void()> on_leave) |
| Wrap a component. Uses callbacks. More...
|
|
Component | Hoverable (Component component, std::function< void(bool)> on_change) |
| Wrap a component. Gives the ability to know if it is hovered by the mouse. More...
|
|
ComponentDecorator | Hoverable (bool *hover) |
| Wrap a component. Gives the ability to know if it is hovered by the mouse. More...
|
|
ComponentDecorator | Hoverable (std::function< void()> on_enter, std::function< void()> on_leave) |
|
ComponentDecorator | Hoverable (std::function< void(bool)> on_change) |
| Wrap a component. Gives the ability to know if it is hovered by the mouse. More...
|
|
Component | Window (WindowOptions option) |
| A draggeable / resizeable window. To use multiple of them, they must be stacked using Container::Stacked({...}) component;. More...
|
|