libcosmos
Linux C++ System Programming Library
|
Base class to build nested ANSI feature objects. More...
#include <colors.hxx>
Public Member Functions | |
ANSICode | getOnCode () const |
ANSICode | getOffCode () const |
bool | hasText () const |
const std::string_view & | getText () const |
bool | hasNextFeature () const |
const FeatureBase & | getNextFeature () const |
Protected Member Functions | |
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) | |
Protected Attributes | |
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 |
Base class to build nested ANSI feature objects.
Each instance of this object either holds a piece of text or a pointer to the next feature to be applied. Each object at this level only knows the ANSI codes to enable and disable the feature it represents.
The output operator thus can apply all desired features for the piece of text and restore the original terminal features after the output is finished.
This allows nested features like std::cout << Green(OnBlue("my green on //blue text")) << "\n";
Definition at line 165 of file colors.hxx.
|
inlineprotected |
Definition at line 174 of file colors.hxx.
|
inlineprotected |
Definition at line 178 of file colors.hxx.
|
inline |
Definition at line 172 of file colors.hxx.
|
inline |
Definition at line 168 of file colors.hxx.
|
inline |
Definition at line 167 of file colors.hxx.
|
inline |
Definition at line 170 of file colors.hxx.
|
inline |
Definition at line 171 of file colors.hxx.
|
inline |
Definition at line 169 of file colors.hxx.
|
protected |
either a terminal string or a pointer to the next feature to apply.
Definition at line 187 of file colors.hxx.
|
protected |
Definition at line 189 of file colors.hxx.
|
protected |
Definition at line 188 of file colors.hxx.