3#include "terminalpp/detail/parser.hpp"
4#include "terminalpp/element.hpp"
5#include "terminalpp/extent.hpp"
6#include "terminalpp/point.hpp"
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