Terminal++ 3.1.0.4
A C++ library for interacting with ANSI terminal windows
Loading...
Searching...
No Matches
screen.hpp
1#pragma once
2
3#include "terminalpp/canvas.hpp"
4#include "terminalpp/terminal.hpp"
5
6namespace terminalpp {
7
8//* =========================================================================
14//* =========================================================================
16{
17public:
18 //* =====================================================================
20 //* =====================================================================
21 explicit screen(terminal &term);
22
23 //* =====================================================================
25 //* =====================================================================
26 void draw(canvas const &cvs);
27
28private:
29 terminal &terminal_;
30 canvas last_frame_{{}};
31};
32
33} // namespace terminalpp
A class representing a grid onto which elements can be painted.
Definition canvas.hpp:19
A class that represents a screen for a terminal.
Definition screen.hpp:16
A class that encapsulates a terminal.
Definition terminal.hpp:30
A structure representing an ANSI graphics effect (e.g. intensity, underlining)
Definition effect.hpp:27