FTXUI  0.8.1
C++ functional terminal UI.
node_decorator.hpp
Go to the documentation of this file.
1 #ifndef FTXUI_DOM_NODE_DECORATOR_H_
2 #define FTXUI_DOM_NODE_DECORATOR_H_
3 
4 #include <utility> // for move
5 
6 #include "ftxui/dom/elements.hpp" // for Element, unpack
7 #include "ftxui/dom/node.hpp" // for Node
8 
9 namespace ftxui {
10 struct Box;
11 
12 // Helper class.
13 class NodeDecorator : public Node {
14  public:
15  NodeDecorator(Element child) : Node(unpack(std::move(child))) {}
16  void ComputeRequirement() override;
17  void SetBox(Box box) override;
18 };
19 
20 } // namespace ftxui
21 
22 #endif /* end of include guard: FTXUI_DOM_NODE_DECORATOR_H_ */
23 
24 // Copyright 2020 Arthur Sonzogni. All rights reserved.
25 // Use of this source code is governed by the MIT license that can be found in
26 // the LICENSE file.
ftxui::Box
Definition: box.hpp:6
ftxui
Definition: captured_mouse.hpp:6
node.hpp
elements.hpp
ftxui::NodeDecorator::SetBox
void SetBox(Box box) override
Assign a position and a dimension to an element for drawing.
Definition: node_decorator.cpp:15
ftxui::Element
std::shared_ptr< Node > Element
Definition: elements.hpp:15
ftxui::NodeDecorator
Definition: node_decorator.hpp:13
ftxui::NodeDecorator::NodeDecorator
NodeDecorator(Element child)
Definition: node_decorator.hpp:15
ftxui::Node
Definition: node.hpp:19
ftxui::NodeDecorator::ComputeRequirement
void ComputeRequirement() override
Compute how much space an elements needs.
Definition: node_decorator.cpp:10