CPGen
C++ project generator
Loading...
Searching...
No Matches
Ascii.hpp
Go to the documentation of this file.
1#pragma once
2
23namespace Ascii {
24
27inline constexpr const char *RADIO_UNCHECKED =
28 "\U000F0130";
29inline constexpr const char *RADIO_CHECKED =
30 "\U000F0134";
31inline constexpr const char *CHECKBOX_UNCHECKED =
32 "\U000F0131";
33inline constexpr const char *CHECKBOX_CHECKED =
34 "\U000F0856";
36
39inline constexpr const char *CURSOR =
40 "\uf061";
42
45inline constexpr const char *CPP_ICON = "\U000F0672";
46inline constexpr const char *NEOVIM_ICON = "\ue6ae";
47inline constexpr const char *CMAKE_ICON =
48 "\ue794";
49inline constexpr const char *GIT_ICON = "\ue702";
50inline constexpr const char *GOOGLE_ICON =
51 "\ue7f0";
53
56inline constexpr const char *PACKAGES_ICON =
57 "\U000F03D6";
58inline constexpr const char *ROCKET_ICON =
59 "\U000F14DF";
60inline constexpr const char *GEAR_ICON =
61 "\uf013";
63
66inline constexpr const char *SPINNER_1 = "\uee06";
67inline constexpr const char *SPINNER_2 = "\uee07";
68inline constexpr const char *SPINNER_3 = "\uee08";
69inline constexpr const char *SPINNER_4 = "\uee09";
70inline constexpr const char *SPINNER_5 = "\uee0a";
71inline constexpr const char *SPINNER_6 = "\uee0b";
73
76inline constexpr const char *PROGRESS_EMPTY_LEFT =
77 "\uee00";
78inline constexpr const char *PROGRESS_EMPTY_MID =
79 "\uee01";
80inline constexpr const char *PROGRESS_EMPTY_RIGHT =
81 "\uee02";
82inline constexpr const char *PROGRESS_FULL_LEFT =
83 "\uee03";
84inline constexpr const char *PROGRESS_FULL_MID =
85 "\uee04";
86inline constexpr const char *PROGRESS_FULL_RIGHT =
87 "\uee05";
89
92inline constexpr const char *SUCCESS = "\uf058";
93inline constexpr const char *WARNING = "\uea6c";
94inline constexpr const char *ERROR_ICON =
95 "\uea87";
96inline constexpr const char *INFO = "\uea74";
98
101inline constexpr const char *BOX_CORNER_TOP_LEFT = "\u256d";
102inline constexpr const char *BOX_CORNER_TOP_RIGHT = "\u256e";
103inline constexpr const char *BOX_CORNER_BOTTOM_LEFT = "\u2570";
104inline constexpr const char *BOX_CORNER_BOTTOM_RIGHT = "\u256F";
105inline constexpr const char *BOX_VERTICAL = "\u2502";
106inline constexpr const char *BOX_HORIZONTAL = "\u2500";
108
109} // namespace Ascii
UTF-8 encoded glyph constants for the TUI renderer.
constexpr const char * CPP_ICON
C++ language icon.
Definition Ascii.hpp:45
constexpr const char * INFO
Informational indicator.
Definition Ascii.hpp:96
constexpr const char * GIT_ICON
Git version control icon.
Definition Ascii.hpp:49
constexpr const char * WARNING
Warning indicator.
Definition Ascii.hpp:93
constexpr const char * CHECKBOX_UNCHECKED
Empty checkbox.
Definition Ascii.hpp:31
constexpr const char * SPINNER_3
Spinner frame 3.
Definition Ascii.hpp:68
constexpr const char * PROGRESS_FULL_RIGHT
Full progress bar — right cap.
Definition Ascii.hpp:86
constexpr const char * ROCKET_ICON
Rocket / launch icon.
Definition Ascii.hpp:58
constexpr const char * BOX_VERTICAL
Definition Ascii.hpp:105
constexpr const char * NEOVIM_ICON
Neovim editor icon.
Definition Ascii.hpp:46
constexpr const char * SPINNER_5
Spinner frame 5.
Definition Ascii.hpp:70
constexpr const char * CMAKE_ICON
CMake build system icon.
Definition Ascii.hpp:47
constexpr const char * PROGRESS_FULL_MID
Full progress bar — middle fill.
Definition Ascii.hpp:84
constexpr const char * BOX_CORNER_BOTTOM_RIGHT
Definition Ascii.hpp:104
constexpr const char * RADIO_UNCHECKED
Empty radio button.
Definition Ascii.hpp:27
constexpr const char * CURSOR
Arrow cursor indicating the focused item.
Definition Ascii.hpp:39
constexpr const char * PROGRESS_EMPTY_MID
Empty progress bar — middle fill.
Definition Ascii.hpp:78
constexpr const char * BOX_CORNER_TOP_LEFT
Definition Ascii.hpp:101
constexpr const char * GOOGLE_ICON
Google / GoogleTest icon.
Definition Ascii.hpp:50
constexpr const char * GEAR_ICON
Settings / configuration icon.
Definition Ascii.hpp:60
constexpr const char * SPINNER_6
Spinner frame 6.
Definition Ascii.hpp:71
constexpr const char * RADIO_CHECKED
Filled radio button.
Definition Ascii.hpp:29
constexpr const char * SUCCESS
Success / OK indicator.
Definition Ascii.hpp:92
constexpr const char * PROGRESS_FULL_LEFT
Full progress bar — left cap.
Definition Ascii.hpp:82
constexpr const char * SPINNER_4
Spinner frame 4.
Definition Ascii.hpp:69
constexpr const char * PROGRESS_EMPTY_LEFT
Empty progress bar — left cap.
Definition Ascii.hpp:76
constexpr const char * ERROR_ICON
Error / failure indicator.
Definition Ascii.hpp:94
constexpr const char * SPINNER_1
Spinner frame 1.
Definition Ascii.hpp:66
constexpr const char * PROGRESS_EMPTY_RIGHT
Empty progress bar — right cap.
Definition Ascii.hpp:80
constexpr const char * CHECKBOX_CHECKED
Checked checkbox.
Definition Ascii.hpp:33
constexpr const char * BOX_CORNER_TOP_RIGHT
Definition Ascii.hpp:102
constexpr const char * SPINNER_2
Spinner frame 2.
Definition Ascii.hpp:67
constexpr const char * BOX_HORIZONTAL
Definition Ascii.hpp:106
constexpr const char * BOX_CORNER_BOTTOM_LEFT
Definition Ascii.hpp:103
constexpr const char * PACKAGES_ICON
Package/dependency icon.
Definition Ascii.hpp:56