FTXUI 6.1.9
C++ functional terminal UI.
Loading...
Searching...
No Matches
component/component.cppm
Go to the documentation of this file.
1/// @module ftxui.component:Component
2/// @brief Module file for the Component classes of the Component module
3
4module;
5
7
8export module ftxui.component:Component;
9
10/**
11 * @namespace ftxui
12 * @brief The FTXUI ftxui:: namespace
13 */
14export namespace ftxui {
17 using ftxui::Event;
22
23 using ftxui::Make;
24
27
28 using ftxui::operator|;
29 using ftxui::operator|=;
30
31 /**
32 * @namespace Container
33 * @brief The FTXUI ftxui::Container:: namespace
34 */
35 namespace Container {
36 using ftxui::Container::Vertical;
37 using ftxui::Container::Horizontal;
38 using ftxui::Container::Tab;
39 using ftxui::Container::Stacked;
40 }
41
42 using ftxui::Button;
43 using ftxui::Checkbox;
44 using ftxui::Input;
45 using ftxui::Menu;
46 using ftxui::MenuEntry;
47 using ftxui::Radiobox;
48 using ftxui::Dropdown;
49 using ftxui::Toggle;
50 using ftxui::Slider;
51 using ftxui::ResizableSplit;
52 using ftxui::ResizableSplitLeft;
53 using ftxui::ResizableSplitRight;
54 using ftxui::ResizableSplitTop;
55 using ftxui::ResizableSplitBottom;
56 using ftxui::Renderer;
57 using ftxui::CatchEvent;
58 using ftxui::Maybe;
59 using ftxui::Modal;
60 using ftxui::Collapsible;
61 using ftxui::Hoverable;
62 using ftxui::Window;
63}
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.
Option for the MenuEntry component.
Option for the Menu component.
Option for the Radiobox component.
Module file for FTXUI component operations.
The FTXUI ftxui::Container:: namespace.
The FTXUI ftxui:: namespace.
Definition animation.hpp:10
std::function< Element(Element)> ElementDecorator
Definition component.hpp:33
std::function< Component(Component)> ComponentDecorator
Definition component.hpp:32