Terminal++ 3.1.0.4
A C++ library for interacting with ANSI terminal windows
Loading...
Searching...
No Matches
behaviour.hpp
1#pragma once
2
3#include "terminalpp/core.hpp"
4
5namespace terminalpp {
6
7//* =====================================================================
10//* =====================================================================
11struct TERMINALPP_EXPORT behaviour
12{
13 // True if the terminal supports Cursor Horizontal Absolute
14 bool supports_cha : 1 {true};
15
16 // True if the terminal supports the use of a default argument
17 // in Cursor Horizontal Absolute
18 bool supports_cha_default : 1 {true};
19
20 // True if the terminal supports Line Position Absolute (VPA [sic])
21 bool supports_vpa : 1 {true};
22
23 // True if the terminal supports the use of a default argument
24 // in Line Position Absolute
25 bool supports_vpa_default : 1 {true};
26
27 // True if the terminal supports the use of a default row argument
28 // (only) in Cursor Position.
29 bool supports_cup_default_row : 1 {false};
30
31 // True if the terminal supports the use of a default column argument
32 // (only) in Cursor Position.
33 bool supports_cup_default_column : 1 {true};
34
35 // True if the terminal supports the use of both arguments being
36 // default in Cursor Position
37 bool supports_cup_default_all : 1 {true};
38
39 // True if the terminal supports basic mouse tracking.
40 bool supports_basic_mouse_tracking : 1 {false};
41
42 // True if the terminal supports all mouse motion tracking.
43 bool supports_all_mouse_motion_tracking : 1 {false};
44
45 // True if the window title can be set with the BEL terminator.
46 bool supports_window_title_bel : 1 {false};
47
48 // True if the window title can be set with the ST terminator.
49 bool supports_window_title_st : 1 {false};
50
51 // True if unicode can be used in all charsets; false if unicode
52 // can only be used in the default charset;
53 bool unicode_in_all_charsets : 1 {false};
54};
55
56} // namespace terminalpp
A set of flags that determine how a terminal should behave over a datastream.
Definition behaviour.hpp:12