Terminal++ 3.1.0.4
A C++ library for interacting with ANSI terminal windows
Loading...
Searching...
No Matches
terminal_state.hpp
1#pragma once
2
3#include "terminalpp/detail/parser.hpp"
4#include "terminalpp/element.hpp"
5#include "terminalpp/extent.hpp"
6#include "terminalpp/point.hpp"
7
8#include <optional>
9
10namespace terminalpp {
11
12//* =========================================================================
15//* =========================================================================
17{
18 //* =====================================================================
20 //* =====================================================================
22
25
27 std::optional<element> last_element_;
28
30 std::optional<point> cursor_position_;
31
34 std::optional<point> saved_cursor_position_;
35
37 std::optional<bool> cursor_visible_;
38
40 detail::parser input_parser_;
41};
42
43} // namespace terminalpp
A structure representing an ANSI graphics effect (e.g. intensity, underlining)
Definition effect.hpp:27
A class that represents a direction with distance in space (a vector).
Definition extent.hpp:18
The state of a terminal, which manipulators are allowed to use and edit.
Definition terminal_state.hpp:17
std::optional< point > saved_cursor_position_
The cursor position at which the last "save cursor position" command was executed.
Definition terminal_state.hpp:34
std::optional< point > cursor_position_
The current cursor position, if known.
Definition terminal_state.hpp:30
terminal_state()
Constructor.
detail::parser input_parser_
A parser for reading input.
Definition terminal_state.hpp:40
std::optional< element > last_element_
The last element that was written to the terminal.
Definition terminal_state.hpp:27
std::optional< bool > cursor_visible_
Whether the cursor is visible or not.
Definition terminal_state.hpp:37
extent terminal_size_
The sized of the terminal.
Definition terminal_state.hpp:24