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

Simple type to represent an ANSI foreground color in bright or normal intensity. More...

#include <colors.hxx>

+ Inheritance diagram for cosmos::term::FrontColor:

Public Member Functions

 FrontColor (const TermColor c)
 
FrontColorsetBright ()
 
- Public Member Functions inherited from cosmos::term::ColorSpec
 ColorSpec (const TermColor color, const ColorKind kind, const ColorIntensity intensity)
 
TermColor getColor () const
 
bool isBright () const
 
bool isNormal () const
 
bool isFrontColor () const
 
bool isBackColor () const
 

Additional Inherited Members

- Protected Attributes inherited from cosmos::term::ColorSpec
TermColor m_color
 
ColorKind m_kind = ColorKind::FRONT
 
ColorIntensity m_intensity = ColorIntensity::NORMAL
 

Detailed Description

Simple type to represent an ANSI foreground color in bright or normal intensity.

Definition at line 101 of file colors.hxx.

Constructor & Destructor Documentation

◆ FrontColor()

cosmos::term::FrontColor::FrontColor ( const TermColor c)
inlineexplicit

Definition at line 102 of file colors.hxx.

102: ColorSpec(c, ColorKind::FRONT, ColorIntensity::NORMAL) {}

Member Function Documentation

◆ setBright()

FrontColor & cosmos::term::FrontColor::setBright ( )
inline

Definition at line 103 of file colors.hxx.

103{ m_intensity = ColorIntensity::BRIGHT; return *this; }

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