kaycxx-term
C++ terminal library
Loading...
Searching...
No Matches
cursor_style.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2026 Klaus Reimer <k@ailis.de>
2// SPDX-License-Identifier: MIT
3
4#pragma once
5
11namespace kaycxx::term {
12
16enum class cursor_style {
18 standard = 0,
19
22
24 steady_block = 2,
25
28
31
33 blinking_bar = 5,
34
36 steady_bar = 6
37};
38
39} // namespace kaycxx::term
cursor_style
Terminal cursor display style.
Definition cursor_style.hpp:16
@ steady_bar
Steady vertical bar cursor.
@ steady_underline
Steady underline cursor.
@ blinking_bar
Blinking vertical bar cursor.
@ blinking_block
Blinking block cursor.
@ standard
Terminal-defined standard cursor style.
@ steady_block
Steady block cursor.
@ blinking_underline
Blinking underline cursor.