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

Base class for easy feature TermControl application on ostreams. More...

#include <colors.hxx>

+ Inheritance diagram for cosmos::term::TextEffect:

Protected Member Functions

 TextEffect (const TermControl feature, const std::string_view &text)
 
 TextEffect (const TermControl feature, const FeatureBase &next)
 
- 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

- 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 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 feature TermControl application on ostreams.

Definition at line 193 of file colors.hxx.

Constructor & Destructor Documentation

◆ TextEffect() [1/2]

cosmos::term::TextEffect::TextEffect ( const TermControl feature,
const std::string_view & text )
inlineprotected

Definition at line 196 of file colors.hxx.

196 :
197 FeatureBase{
198 text,
199 ANSICode{to_integral(feature)},
200 ANSICode{to_integral(get_off_control(feature))}
201 }
202 {}
ANSICode
A generic ANSI code e.g. for color indices.
Definition colors.hxx:126

◆ TextEffect() [2/2]

cosmos::term::TextEffect::TextEffect ( const TermControl feature,
const FeatureBase & next )
inlineprotected

Definition at line 204 of file colors.hxx.

204 :
205 FeatureBase{
206 next,
207 ANSICode{to_integral(feature)},
208 ANSICode{to_integral(get_off_control(feature))}
209 }
210 {}

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