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

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

#include <colors.hxx>

+ Inheritance diagram for cosmos::term::BackColor:

Public Member Functions

 BackColor (const TermColor c)
 
BackColorsetBright ()
 
- 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 background color in bright or normal intensity.

Definition at line 107 of file colors.hxx.

Constructor & Destructor Documentation

◆ BackColor()

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

Definition at line 108 of file colors.hxx.

108: ColorSpec(c, ColorKind::BACK, ColorIntensity::NORMAL) {}

Member Function Documentation

◆ setBright()

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

Definition at line 109 of file colors.hxx.

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

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