Terminal++ 3.1.0.4
A C++ library for interacting with ANSI terminal windows
Loading...
Searching...
No Matches
canvas.hpp
1#pragma once
2
3#include "terminalpp/element.hpp"
4#include "terminalpp/extent.hpp"
5
6#include <vector>
7
8namespace terminalpp {
9
10//* =========================================================================
17//* =========================================================================
18class TERMINALPP_EXPORT canvas
19{
20public:
21 using size_type = coordinate_type;
22 using iterator = element *;
23 using const_iterator = element const *;
24
25 //* =====================================================================
27 //* =====================================================================
28 class TERMINALPP_EXPORT column_proxy
29 {
30 public:
31 using size_type = coordinate_type;
32
33 // ==================================================================
34 // CONSTRUCTOR
35 // ==================================================================
36 column_proxy(canvas &cvs, size_type column);
37
38 // ==================================================================
39 // OPERATOR[]
40 // ==================================================================
41 [[nodiscard]] element &operator[](size_type row);
42
43 private:
44 canvas &canvas_;
45 size_type column_;
46 };
47
48 //* =====================================================================
50 //* =====================================================================
51 class TERMINALPP_EXPORT const_column_proxy
52 {
53 public:
54 using size_type = coordinate_type;
55
56 // ==================================================================
57 // CONSTRUCTOR
58 // ==================================================================
59 const_column_proxy(canvas const &cvs, size_type column);
60
61 // ==================================================================
62 // OPERATOR[]
63 // ==================================================================
64 [[nodiscard]] element const &operator[](coordinate_type row) const;
65
66 private:
67 canvas const &canvas_;
68 size_type column_;
69 };
70
71 //* =====================================================================
73 //* =====================================================================
74 explicit canvas(extent size);
75
76 //* =====================================================================
78 //* =====================================================================
79 [[nodiscard]] extent size() const;
80
81 //* =====================================================================
84 //* =====================================================================
85 void resize(extent const &size);
86
87 //* =====================================================================
89 //* =====================================================================
90 [[nodiscard]] iterator begin();
91
92 //* =====================================================================
94 //* =====================================================================
95 [[nodiscard]] const_iterator begin() const;
96
97 //* =====================================================================
99 //* =====================================================================
100 [[nodiscard]] iterator end();
101
102 //* =====================================================================
104 //* =====================================================================
105 [[nodiscard]] const_iterator end() const;
106
107 //* =====================================================================
109 //* =====================================================================
110 [[nodiscard]] column_proxy operator[](coordinate_type column);
111
112 //* =====================================================================
114 //* =====================================================================
115 [[nodiscard]] const_column_proxy operator[](coordinate_type) const;
116
117private:
118 //* =====================================================================
120 //* =====================================================================
121 [[nodiscard]] element &get_element(
122 coordinate_type column, coordinate_type row);
123
124 //* =====================================================================
126 //* =====================================================================
127 [[nodiscard]] element const &get_element(
128 coordinate_type column, coordinate_type row) const;
129
130 std::vector<element> grid_;
131 extent size_;
132};
133
134} // namespace terminalpp
A proxy into a column of elements on the canvas.
Definition canvas.hpp:29
A constant proxy into a column of elements on the canvas.
Definition canvas.hpp:52
A class representing a grid onto which elements can be painted.
Definition canvas.hpp:19
A structure that represents the fundamental printable element of a terminal screen,...
Definition element.hpp:20
A class that represents a direction with distance in space (a vector).
Definition extent.hpp:18