FTXUI
0.8.1
C++ functional terminal UI.
|
Functions | |
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 Vertical | ( | Components | children | ) |
A list of components, drawn one by one vertically and navigated vertically using up/down arrow key or 'j'/'k' keys.
children | the list of components. |
Definition at line 196 of file container.cpp.
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.
children | the list of components. |
selector | A reference to the index of the selected children. |
Definition at line 218 of file container.cpp.
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.
children | the list of components. |
Definition at line 239 of file container.cpp.
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.
children | the list of components. |
selector | A reference to the index of the selected children. |
Definition at line 261 of file container.cpp.
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.
children | The list of components. |
selector | The index of the drawn children. |
Definition at line 284 of file container.cpp.