FTXUI  0.8.1
C++ functional terminal UI.
node.hpp
Go to the documentation of this file.
1 #ifndef FTXUI_DOM_NODE_HPP
2 #define FTXUI_DOM_NODE_HPP
3 
4 #include <memory> // for shared_ptr
5 #include <vector> // for vector
6 
7 #include "ftxui/dom/requirement.hpp" // for Requirement
8 #include "ftxui/screen/box.hpp" // for Box
10 
11 namespace ftxui {
12 
13 class Node;
14 class Screen;
15 
16 using Element = std::shared_ptr<Node>;
17 using Elements = std::vector<Element>;
18 
19 class Node {
20  public:
21  Node();
22  Node(Elements children);
23  virtual ~Node();
24 
25  // Step 1: Compute layout requirement. Tell parent what dimensions this
26  // element wants to be.
27  // Propagated from Children to Parents.
28  virtual void ComputeRequirement();
30 
31  // Step 2: Assign this element its final dimensions.
32  // Propagated from Parents to Children.
33  virtual void SetBox(Box box);
34 
35  // Step 3: Draw this element.
36  virtual void Render(Screen& screen);
37 
38  protected:
42 };
43 
44 void Render(Screen& screen, const Element& node);
45 void Render(Screen& screen, Node* node);
46 
47 } // namespace ftxui
48 
49 #endif /* end of include guard: FTXUI_DOM_NODE_HPP */
50 
51 // Copyright 2020 Arthur Sonzogni. All rights reserved.
52 // Use of this source code is governed by the MIT license that can be found in
53 // the LICENSE file.
ftxui::Node::SetBox
virtual void SetBox(Box box)
Assign a position and a dimension to an element for drawing.
Definition: node.cpp:21
ftxui::Node::box_
Box box_
Definition: node.hpp:41
ftxui::Box
Definition: box.hpp:6
ftxui
Definition: captured_mouse.hpp:6
ftxui::Node::Render
virtual void Render(Screen &screen)
Display an element on a ftxui::Screen.
Definition: node.cpp:27
ftxui::Node::children_
Elements children_
Definition: node.hpp:39
ftxui::Node::requirement
Requirement requirement()
Definition: node.hpp:29
box.hpp
requirement.hpp
ftxui::Elements
std::vector< Element > Elements
Definition: elements.hpp:16
ftxui::Node::Node
Node()
Definition: node.cpp:8
ftxui::Requirement
Definition: requirement.hpp:8
ftxui::Element
std::shared_ptr< Node > Element
Definition: elements.hpp:15
ftxui::Screen
A rectangular grid of Pixel.
Definition: screen.hpp:49
ftxui::Node::~Node
virtual ~Node()
Definition: node.cpp:10
ftxui::Render
void Render(Screen &screen, const Element &node)
Display an element on a ftxui::Screen.
Definition: node.cpp:34
ftxui::Node::requirement_
Requirement requirement_
Definition: node.hpp:40
ftxui::Node
Definition: node.hpp:19
ftxui::Node::ComputeRequirement
virtual void ComputeRequirement()
Compute how much space an elements needs.
Definition: node.cpp:14
screen.hpp