FTXUI
0.8.1
C++ functional terminal UI.
|
#include <functional>
#include <iostream>
#include <string>
#include <vector>
return special_style;
}
int main(int argc, const char* argv[]) {
int selected = 0;
{
},
&selected);
}) |
});
screen.Loop(renderer);
std::cout << "Selected element = " << selected << std::endl;
}
Element border(Element)
Draw a border around the element.
Element frame(Element)
Allow an element to be displayed inside a 'virtual' area. It size can be larger than its container....
std::string to_string(const std::wstring &s)
Convert a UTF8 std::string into a std::wstring.
Element inverted(Element)
Add a filter that will invert the foreground and the background colors.
Decorator style_normal
style.
Decorator color(Color)
Decorate using a foreground color.
Element bold(Element)
Use a bold font, for elements with more emphasis.
Element hbox(Elements)
A container displaying elements horizontally one by one.
Component Renderer(Component child, std::function< Element()>)
Return a new Component, similar to |child|, but using |render| as the Component::Render() event.
Component MenuEntry(ConstStringRef label, Ref< MenuEntryOption >={})
static ScreenInteractive TerminalOutput()
Component Vertical(Components children)
A list of components, drawn one by one vertically and navigated vertically using up/down arrow key or...
Element vbox(Elements)
A container displaying elements vertically one by one.
Decorator size(Direction, Constraint, int value)
Apply a constraint on the size of an element.
std::function< Element(Element)> Decorator
Decorator style_focused
Style when focused.
Decorator style_selected_focused
Style when selected and focused.
Decorator style_selected
Style when selected.
A class representing terminal colors.
Element text(std::wstring text)
Display a piece of unicode text.