FTXUI  5.0.0
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)>;
37
46
49 std::function<void()> on_click,
51
54 bool* checked,
56
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>
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);
102Component ResizableSplitLeft(Component main, Component back, int* main_size);
103Component ResizableSplitRight(Component main, Component back, int* main_size);
104Component ResizableSplitTop(Component main, Component back, int* main_size);
105Component ResizableSplitBottom(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
122
125 Ref<bool> show = false);
126
129 std::function<void()> on_enter,
130 std::function<void()> on_leave);
132 std::function<void(bool)> on_change);
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
Component Horizontal(Components children)
A list of components, drawn one by one horizontally and navigated horizontally using left/right arrow...
Component Vertical(Components children)
A list of components, drawn one by one vertically and navigated vertically using up/down arrow key or...
Component Stacked(Components children)
A list of components to be stacked on top of each other. Events are propagated to the first component...
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...
Component Maybe(Component, const bool *show)
Decorate a component |child|. It is shown only when |show| is true.
Definition maybe.cpp:74
Component ResizableSplitTop(Component main, Component back, int *main_size)
An vertical split in between two components, configurable using the mouse.
std::shared_ptr< Node > Element
Definition elements.hpp:22
Component Menu(MenuOption options)
A list of text. The focused element is selected.
Definition menu.cpp:512
std::shared_ptr< T > Make(Args &&... args)
Definition component.hpp:26
Component MenuEntry(MenuEntryOption options)
A specific menu entry. They can be put into a Container::Vertical to form a menu.
Definition menu.cpp:614
std::function< Element(Element)> ElementDecorator
Definition component.hpp:32
std::shared_ptr< ComponentBase > Component
Component Toggle(ConstStringListRef entries, int *selected)
An horizontal list of elements. The user can navigate through them.
Definition menu.cpp:554
std::vector< Component > Components
Component Radiobox(RadioboxOption options)
A list of element, where only one can be selected.
Definition radiobox.cpp:205
Component Button(ButtonOption options)
Draw a button. Execute a function when clicked.
Definition button.cpp:174
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.
Definition renderer.cpp:61
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 ResizableSplit(ResizableSplitOption options)
A split in between two components.
Component Window(WindowOptions option)
A draggeable / resizeable window. To use multiple of them, they must be stacked using Container::Stac...
Definition window.cpp:312
Component operator|(Component component, ComponentDecorator decorator)
Definition util.cpp:12
Component Input(InputOption options={})
An input box for editing text.
Definition input.cpp:574
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.
Definition dropdown.cpp:22
Component Slider(SliderOption< T > options)
A slider in any direction.
Definition slider.cpp:346
Component ResizableSplitBottom(Component main, Component back, int *main_size)
An vertical split in between two components, configurable using the mouse.
Component & operator|=(Component &component, ComponentDecorator decorator)
Definition util.cpp:22
Component Checkbox(CheckboxOption options)
Draw checkable element.
Definition checkbox.cpp:108
Component ResizableSplitLeft(Component main, Component back, int *main_size)
An horizontal split in between two components, configurable using the mouse.
std::function< Component(Component)> ComponentDecorator
Definition component.hpp:31
Component Collapsible(ConstStringRef label, Component child, Ref< bool > show=false)
Component CatchEvent(Component child, std::function< bool(Event)>)
Option for the AnimatedButton component.
static ButtonOption Simple()
Create a ButtonOption, inverted when focused.
Option for the Checkbox component.
static CheckboxOption Simple()
Option for standard Checkbox.
Represent an event. It can be key press event, a terminal resize, or more ...
Definition event.hpp:27
Option for the Input component.
static MenuOption Vertical()
Standard options for a vertical menu. This can be useful to implement a list of selectable items.