FTXUI 7.0.0
C++ functional terminal UI.
Loading...
Searching...
No Matches
screen.hpp
Go to the documentation of this file.
1// Copyright 2020 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_SCREEN_SCREEN_HPP
5#define FTXUI_SCREEN_SCREEN_HPP
6
7#include <cstdint> // for uint8_t
8#include <functional> // for function
9#include <string> // for string, basic_string, allocator
10#include <vector> // for vector
11
12#include "ftxui/screen/surface.hpp" // for Surface
13#include "ftxui/screen/terminal.hpp" // for Dimensions
14#include "ftxui/util/export.hpp" // for FTXUI_EXPORT
15
16namespace ftxui {
17
18/// @brief Define how the Screen's dimensions should look like.
19/// @ingroup screen
20namespace Dimension {
21FTXUI_EXPORT(SCREEN) Dimensions Fixed(int);
22FTXUI_EXPORT(SCREEN) Dimensions Full();
23} // namespace Dimension
24
25/// @brief A rectangular grid of Cell.
26/// @ingroup screen
27class FTXUI_EXPORT(SCREEN) Screen : public Surface {
28 public:
29 // Constructors:
30 Screen(int dimx, int dimy);
31 static Screen Create(Dimensions dimension);
32 static Screen Create(Dimensions width, Dimensions height);
33
34 // Destructor:
35 ~Screen() override = default;
36
37 // Copy:
38 Screen(const Screen&) = default;
39 Screen& operator=(const Screen&) = default;
40
41 std::string ToString() const;
42 void ToString(std::string& ss) const;
43
44 // Print the Screen on to the terminal.
45 void Print() const;
46
47 // Fill the screen with space and reset any screen state, like hyperlinks, and
48 // cursor
49 void Clear();
50
51 // Move the terminal cursor n-lines up with n = dimy().
52 std::string ResetPosition(bool clear = false) const;
53 void ResetPosition(std::string& ss, bool clear = false) const;
54
55 void ApplyShader();
56
57 struct Cursor {
58 int x = 0;
59 int y = 0;
60
61 enum Shape : uint8_t {
62 Hidden = 0,
63 BlockBlinking = 1,
64 Block = 2,
65 UnderlineBlinking = 3,
66 Underline = 4,
67 BarBlinking = 5,
68 Bar = 6,
69 };
70 Shape shape = Hidden;
71 };
72
73 Cursor cursor() const { return cursor_; }
74 void SetCursor(Cursor cursor) { cursor_ = cursor; }
75
76 // ABI Reserve:
77 void Reserved1() override;
78 void Reserved2() override;
79 void Reserved3() override;
80 void Reserved4() override;
81 void Reserved5() override;
82 void Reserved6() override;
83 void Reserved7() override;
84 void Reserved8() override;
85
86 // Store an hyperlink in the screen. Return the id of the hyperlink. The id is
87 // used to identify the hyperlink when the user click on it.
88 uint8_t RegisterHyperlink(std::string_view link);
89 const std::string& Hyperlink(uint8_t id) const;
90
91 using SelectionStyle = std::function<void(Cell&)>;
92 const SelectionStyle& GetSelectionStyle() const;
93 void SetSelectionStyle(SelectionStyle decorator);
94
95 protected:
96 Cursor cursor_;
97 std::vector<std::string> hyperlinks_ = {""};
98
99 // The current selection style. This is overridden by various dom elements.
100 SelectionStyle selection_style_ = [](Cell& cell) { cell.inverted ^= true; };
101};
102
103} // namespace ftxui
104
105#endif // FTXUI_SCREEN_SCREEN_HPP
#define FTXUI_EXPORT(component)
Definition export.hpp:24
The FTXUI ftxui::Dimension:: namespace.
The FTXUI ftxui:: namespace.
Definition animation.hpp:11
int y
Definition elements.hpp:127