9#include <cosmos/dso_export.h>
10#include <cosmos/utils.hxx>
37namespace cosmos::term {
85 m_color(color), m_kind(kind), m_intensity(intensity) {}
87 TermColor getColor()
const {
return m_color; }
88 bool isBright()
const {
return m_intensity == ColorIntensity::BRIGHT; }
89 bool isNormal()
const {
return !isBright(); }
90 bool isFrontColor()
const {
return m_kind == ColorKind::FRONT; }
91 bool isBackColor()
const {
return !isFrontColor(); }
103 FrontColor& setBright() { m_intensity = ColorIntensity::BRIGHT;
return *
this; }
109 BackColor& setBright() { m_intensity = ColorIntensity::BRIGHT;
return *
this; }
150COSMOS_API
void refresh_tty_detection();
167 ANSICode getOnCode()
const {
return m_on_code; }
168 ANSICode getOffCode()
const {
return m_off_code; }
169 bool hasText()
const {
return std::holds_alternative<const std::string_view*>(
m_info); }
170 const std::string_view& getText()
const {
return *std::get<const std::string_view*>(
m_info); }
171 bool hasNextFeature()
const {
return std::holds_alternative<const FeatureBase*>(
m_info); }
172 const FeatureBase& getNextFeature()
const {
return *std::get<const FeatureBase*>(
m_info); }
175 m_info(&text), m_on_code(on_code), m_off_code(off_code)
179 m_info(&next), m_on_code(on_code), m_off_code(off_code)
187 std::variant<const std::string_view*, const FeatureBase*>
m_info;
200 ANSICode{to_integral(get_off_control(feature))}
208 ANSICode{to_integral(get_off_control(feature))}
214template <TermControl effect>
216 explicit TextEffectT(
const std::string_view &text) :
234 get_ansi_color_code(
ColorSpec{c, kind, intensity}),
242 get_ansi_color_code(
ColorSpec{c, kind, intensity}),
250 auto ret = kind == ColorKind::FRONT ? TermControl::DEFAULT_FG_COLOR : TermControl::DEFAULT_BG_COLOR;
256template <TermColor color, ColorIntensity
intensity = ColorIntensity::NORMAL>
263template <TermColor color, ColorIntensity
intensity = ColorIntensity::NORMAL>
Complete color specification for ANSI terminals.
Base class to build nested ANSI feature objects.
std::variant< const std::string_view *, const FeatureBase * > m_info
either a terminal string or a pointer to the next feature to apply.
Base class for easy feature TermControl application on ostreams.
TermColor
Primitive Colors for ANSI Terminals.
ANSICode
A generic ANSI code e.g. for color indices.
ColorKind
Differentiation between text (front) and background color.
TermControl
Various feature controls for ANSI terminals.
@ INVERSE_ON
Inverse fg/bg colors.
@ DEFAULT_BG_COLOR
Set default bg color.
@ RESET
Remove all attributes currently set (including colors)
@ DEFAULT_FG_COLOR
Set default fg color.
@ UNDERLINE_ON
Underlined text.
ColorIntensity
Differentiation of normal and bright color intensity.
Simple type to represent an ANSI background color in bright or normal intensity.
Template for definition of concrete color text helpers.
Base class for easy colored text application on ostreams.
Simple type to represent an ANSI foreground color in bright or normal intensity.
Template for definition of concrete text effect helpers.
Template for definition of concrete background color helpers.