libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::term::ColoredText Struct Reference

Base class for easy colored text application on ostreams. More...

#include <colors.hxx>

+ Inheritance diagram for cosmos::term::ColoredText:

Public Member Functions

 ColoredText (const std::string_view &text, const TermColor c, const ColorKind kind, const ColorIntensity intensity)
 
 ColoredText (const FeatureBase &next, const TermColor c, const ColorKind kind, const ColorIntensity intensity)
 
- Public Member Functions inherited from cosmos::term::FeatureBase
ANSICode getOnCode () const
 
ANSICode getOffCode () const
 
bool hasText () const
 
const std::string_view & getText () const
 
bool hasNextFeature () const
 
const FeatureBasegetNextFeature () const
 

Protected Member Functions

ANSICode getOffCode (const ColorKind kind) const
 
- Protected Member Functions inherited from cosmos::term::FeatureBase
 FeatureBase (const std::string_view &text, const ANSICode on_code, const ANSICode off_code)
 
 FeatureBase (const FeatureBase &next, const ANSICode on_code, const ANSICode off_code)
 

Additional Inherited Members

- Protected Attributes inherited from cosmos::term::FeatureBase
std::variant< const std::string_view *, const FeatureBase * > m_info
 either a terminal string or a pointer to the next feature to apply.
 
const ANSICode m_on_code
 
const ANSICode m_off_code
 

Detailed Description

Base class for easy colored text application on ostreams.

Definition at line 230 of file colors.hxx.

Constructor & Destructor Documentation

◆ ColoredText() [1/2]

cosmos::term::ColoredText::ColoredText ( const std::string_view & text,
const TermColor c,
const ColorKind kind,
const ColorIntensity intensity )
inlineexplicit

Definition at line 231 of file colors.hxx.

231 :
232 FeatureBase{
233 text,
234 get_ansi_color_code(ColorSpec{c, kind, intensity}),
235 getOffCode(kind)
236 }
237 {}

◆ ColoredText() [2/2]

cosmos::term::ColoredText::ColoredText ( const FeatureBase & next,
const TermColor c,
const ColorKind kind,
const ColorIntensity intensity )
inlineexplicit

Definition at line 239 of file colors.hxx.

239 :
240 FeatureBase{
241 next,
242 get_ansi_color_code(ColorSpec{c, kind, intensity}),
243 getOffCode(kind)
244 }
245 {}

Member Function Documentation

◆ getOffCode()

ANSICode cosmos::term::ColoredText::getOffCode ( const ColorKind kind) const
inlineprotected

Definition at line 249 of file colors.hxx.

249 {
250 auto ret = kind == ColorKind::FRONT ? TermControl::DEFAULT_FG_COLOR : TermControl::DEFAULT_BG_COLOR;
251 return ANSICode{to_integral(ret)};
252 }
ANSICode
A generic ANSI code e.g. for color indices.
Definition colors.hxx:126

The documentation for this struct was generated from the following file: