FTXUI 6.1.9
C++ functional terminal UI.
Loading...
Searching...
No Matches
component.hpp
Go to the documentation of this file.
1// Copyright 2021 Arthur Sonzogni. All rights reserved.
2// Use of this source code is governed by the MIT license that can be found in
3// the LICENSE file.
4#ifndef FTXUI_COMPONENT_HPP
5#define FTXUI_COMPONENT_HPP
6
7#include <functional> // for function
8#include <memory> // for make_shared, shared_ptr
9#include <utility> // for forward
10
11#include "ftxui/component/component_base.hpp" // for Component, Components
12#include "ftxui/component/component_options.hpp" // for ButtonOption, CheckboxOption, MenuOption
13#include "ftxui/dom/elements.hpp" // for Element
14#include "ftxui/util/ref.hpp" // for ConstRef, Ref, ConstStringRef, ConstStringListRef, StringRef
15
16namespace ftxui {
17struct ButtonOption;
18struct CheckboxOption;
19struct Event;
20struct InputOption;
21struct MenuOption;
22struct RadioboxOption;
23struct MenuEntryOption;
24
25template <class T, class... Args>
26std::shared_ptr<T> Make(Args&&... args) {
27 return std::make_shared<T>(std::forward<Args>(args)...);
28}
29
30// Pipe operator to decorate components.
31using ComponentDecorator = std::function<Component(Component)>;
32using ElementDecorator = std::function<Element(Element)>;
34Component operator|(Component component, ElementDecorator decorator);
35Component& operator|=(Component& component, ComponentDecorator decorator);
36Component& operator|=(Component& component, ElementDecorator decorator);
37
38namespace Container {
40Component Vertical(Components children, int* selector);
42Component Horizontal(Components children, int* selector);
43Component Tab(Components children, int* selector);
45} // namespace Container
46
49 std::function<void()> on_click,
51
54 bool* checked,
56
57Component Input(InputOption options = {});
58Component Input(StringRef content, InputOption options = {});
59Component Input(StringRef content,
60 StringRef placeholder,
61 InputOption options = {});
62
63Component Menu(MenuOption options);
64Component Menu(ConstStringListRef entries,
65 int* selected_,
66 MenuOption options = MenuOption::Vertical());
67Component MenuEntry(MenuEntryOption options);
68Component MenuEntry(ConstStringRef label, MenuEntryOption options = {});
69
70Component Radiobox(RadioboxOption options);
71Component Radiobox(ConstStringListRef entries,
72 int* selected_,
73 RadioboxOption options = {});
74
75Component Dropdown(ConstStringListRef entries, int* selected);
76Component Dropdown(DropdownOption options);
77
78Component Toggle(ConstStringListRef entries, int* selected);
79
80// General slider constructor:
81template <typename T>
82Component Slider(SliderOption<T> options);
83
84// Shorthand without the `SliderOption` constructor:
85Component Slider(ConstStringRef label,
86 Ref<int> value,
87 ConstRef<int> min = 0,
88 ConstRef<int> max = 100,
89 ConstRef<int> increment = 5);
90Component Slider(ConstStringRef label,
91 Ref<float> value,
92 ConstRef<float> min = 0.f,
93 ConstRef<float> max = 100.f,
94 ConstRef<float> increment = 5.f);
95Component Slider(ConstStringRef label,
96 Ref<long> value,
97 ConstRef<long> min = 0L,
98 ConstRef<long> max = 100L,
99 ConstRef<long> increment = 5L);
100
101Component ResizableSplit(ResizableSplitOption options);
104Component ResizableSplitTop(Component main, Component back, int* main_size);
106
107Component Renderer(Component child, std::function<Element()>);
108Component Renderer(std::function<Element()>);
109Component Renderer(std::function<Element(bool /* focused */)>);
111
112Component CatchEvent(Component child, std::function<bool(Event)>);
113ComponentDecorator CatchEvent(std::function<bool(Event)> on_event);
114
115Component Maybe(Component, const bool* show);
116Component Maybe(Component, std::function<bool()>);
117ComponentDecorator Maybe(const bool* show);
118ComponentDecorator Maybe(std::function<bool()>);
119
120Component Modal(Component main, Component modal, const bool* show_modal);
121ComponentDecorator Modal(Component modal, const bool* show_modal);
122
124 Component child,
125 Ref<bool> show = false);
126
127Component Hoverable(Component component, bool* hover);
129 std::function<void()> on_enter,
130 std::function<void()> on_leave);
131Component Hoverable(Component component, //
132 std::function<void(bool)> on_change);
133ComponentDecorator Hoverable(bool* hover);
134ComponentDecorator Hoverable(std::function<void()> on_enter,
135 std::function<void()> on_leave);
136ComponentDecorator Hoverable(std::function<void(bool)> on_change);
137
139
140} // namespace ftxui
141
142#endif /* end of include guard: FTXUI_COMPONENT_HPP */
An adapter. Own or reference a constant string. For convenience, this class convert multiple immutabl...
Definition ref.hpp:94
An adapter. Own or reference an mutable object.
Definition ref.hpp:46
static CheckboxOption Simple()
Option for standard Checkbox.
static ButtonOption Simple()
Create a ButtonOption, inverted when focused.
static MenuOption Vertical()
Standard options for a vertical menu. This can be useful to implement a list of selectable items.
Component Horizontal(Components children)
A list of components, drawn one by one horizontally and navigated horizontally using left/right arrow...
Component Maybe(Component, const bool *show)
Decorate a component |child|. It is shown only when |show| is true.
Component ResizableSplitTop(Component main, Component back, int *main_size)
An vertical split in between two components, configurable using the mouse.
Component Menu(MenuOption options)
A list of text. The focused element is selected.
Component MenuEntry(MenuEntryOption options)
A specific menu entry. They can be put into a Container::Vertical to form a menu.
Component Toggle(ConstStringListRef entries, int *selected)
An horizontal list of elements. The user can navigate through them.
Component Radiobox(RadioboxOption options)
A list of element, where only one can be selected.
Component Button(ButtonOption options)
Draw a button. Execute a function when clicked.
Component Modal(Component main, Component modal, const bool *show_modal)
Definition modal.cpp:18
Component Renderer(Component child, std::function< Element()>)
Return a new Component, similar to |child|, but using |render| as the Component::Render() event.
Component Hoverable(Component component, bool *hover)
Wrap a component. Gives the ability to know if it is hovered by the mouse.
Definition hoverable.cpp:43
Component Window(WindowOptions option)
A draggeable / resizeable window. To use multiple of them, they must be stacked using Container::Stac...
Component Vertical(Components children)
A list of components, drawn one by one vertically and navigated vertically using up/down arrow key or...
Component Input(InputOption options={})
An input box for editing text.
Component ResizableSplitRight(Component main, Component back, int *main_size)
An horizontal split in between two components, configurable using the mouse.
Component Dropdown(ConstStringListRef entries, int *selected)
A dropdown menu.
Component Stacked(Components children)
A list of components to be stacked on top of each other. Events are propagated to the first component...
Component ResizableSplitBottom(Component main, Component back, int *main_size)
An vertical split in between two components, configurable using the mouse.
Component Checkbox(CheckboxOption options)
Draw checkable element.
Component ResizableSplitLeft(Component main, Component back, int *main_size)
An horizontal split in between two components, configurable using the mouse.
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...
Option for the AnimatedButton component.
Option for the Checkbox component.
Represent an event. It can be key press event, a terminal resize, or more ...
Definition event.hpp:29
Option for the Input component.
The FTXUI ftxui:: namespace.
Definition animation.hpp:10
std::shared_ptr< T > Make(Args &&... args)
Definition component.hpp:26
std::shared_ptr< Node > Element
Definition elements.hpp:22
std::function< Element(Element)> ElementDecorator
Definition component.hpp:32
std::vector< Component > Components
Component ResizableSplit(ResizableSplitOption options)
A split in between two components.
Component operator|(Component component, ComponentDecorator decorator)
Component Collapsible(ConstStringRef label, Component child, Ref< bool > show=false)
A collapsible component. It displays a checkbox with an arrow. Once activated, the child is displayed...
Component Slider(SliderOption< T > options)
A slider in any direction.
Component & operator|=(Component &component, ComponentDecorator decorator)
std::function< Component(Component)> ComponentDecorator
Definition component.hpp:31
std::shared_ptr< ComponentBase > Component
Component CatchEvent(Component child, std::function< bool(Event)>)