86#define HIDE_CURSOR "\x1b[?25l"
97#define SHOW_CURSOR "\x1b[?25h"
189 RGBColor(
unsigned char,
unsigned char,
unsigned char);
382 std::string
fgColorStr(
unsigned char,
unsigned char,
unsigned char);
395 std::string
bgColorStr(
unsigned char,
unsigned char,
unsigned char);
Sista library namespace.
Definition: ansi.cpp:26
void resetAnsi()
Resets all ANSI settings to default values.
Definition: ansi.cpp:47
void resetAttribute(Attribute attribute)
Resets a text attribute using a predefined Attribute enum.
Definition: ansi.cpp:39
Attribute
Enumeration of text attributes for ANSI escape codes.
Definition: ansi.hpp:158
std::string attrStr(Attribute attribute)
Converts an Attribute enum to its corresponding ANSI escape code string.
Definition: ansi.cpp:82
ForegroundColor
Enumeration of foreground colors for ANSI escape codes.
Definition: ansi.hpp:121
ScreenMode
Represents various ANSI screen modes.
Definition: ansi.hpp:405
@ COLOR_16_COLORS_GRAPHICS_640_350
@ COLOR_16_COLORS_GRAPHICS_640_480
@ MONOCROME_GRAPHICS_640_200
@ MONOCROME_GRAPHICS_320_200
@ MONOCROME_2_COLORS_GRAPHICS_640_480
@ MONOCROME_2_COLORS_GRAPHICS_640_350
@ COLOR_256_COLORS_GRAPHICS_320_200
@ FOUR_COLORS_GRAPHICS_320_200
@ COLOR_16_COLORS_GRAPHICS_640_200
std::string bgColorStr(BackgroundColor color)
Converts a BackgroundColor enum to its corresponding ANSI escape code string.
Definition: ansi.cpp:79
void unsetScreenMode(ScreenMode mode)
Unsets a specific screen mode.
Definition: ansi.cpp:117
void setBackgroundColor(BackgroundColor color)
Sets the background color using a predefined BackgroundColor enum.
Definition: ansi.cpp:33
std::string fgColorStr(ForegroundColor color)
Converts a ForegroundColor enum to its corresponding ANSI escape code string.
Definition: ansi.cpp:76
void setForegroundColor(ForegroundColor color)
Sets the foreground color using a predefined ForegroundColor enum.
Definition: ansi.cpp:30
BackgroundColor
Enumeration of background colors for ANSI escape codes.
Definition: ansi.hpp:139
void setScreenMode(ScreenMode mode)
Sets a specific screen mode.
Definition: ansi.cpp:114
void setAttribute(Attribute attribute)
Sets a text attribute using a predefined Attribute enum.
Definition: ansi.cpp:36
Represents a set of ANSI settings including colors and attributes.
Definition: ansi.hpp:452
Attribute attribute
Text attribute setting.
Definition: ansi.hpp:474
void apply() const
Applies the ANSI settings to the terminal.
Definition: ansi.cpp:135
std::variant< ForegroundColor, RGBColor > foregroundColor
Foreground color, can be ForegroundColor or RGBColor.
Definition: ansi.hpp:462
std::variant< BackgroundColor, RGBColor > backgroundColor
Background color, can be BackgroundColor or RGBColor.
Definition: ansi.hpp:472
ANSISettings()
Definition: ansi.cpp:121
Represents an RGB color with red, green, and blue components in True Color (24-bit).
Definition: ansi.hpp:177
unsigned char green
Definition: ansi.hpp:179
RGBColor()
Default constructor initializing color to black (0,0,0).
Definition: ansi.cpp:27
unsigned char red
Definition: ansi.hpp:178
unsigned char blue
Definition: ansi.hpp:180