qxLib
terminal_color.h
Go to the documentation of this file.
1 /**
2 
3  @file terminal_color.h
4  @author Khrapov
5  @date 10.12.2022
6  @copyright © Nick Khrapov, 2022. All right reserved.
7 
8 **/
9 #pragma once
10 
12 #include <qx/render/color.h>
13 #include <qx/static_buffer.h>
14 
15 #include <iostream>
16 
17 namespace qx
18 {
19 
20 class terminal_color;
21 
22 }
23 
24 template<class char_t>
25 std::basic_ostream<char_t>& operator<<(std::basic_ostream<char_t>& os, const qx::terminal_color& terminalColor);
26 
27 namespace qx
28 {
29 
30 /**
31 
32  @class terminal_color
33  @brief Class for colors manipulating in terminal
34  @details Always check which colors are available in your machine, for ex. with qx::terminal_color::test_colors()
35  @author Khrapov
36  @date 13.12.2022
37 
38  @code
39 
40  std::cout << qx::terminal_color::font(qx::color::green()) << "green" << qx::terminal_color::reset() << std::endl;
41 
42  @endcode
43 
44 **/
46 {
47  template<class char_t>
48  friend std::basic_ostream<char_t>& ::operator<<(
49  std::basic_ostream<char_t>& is,
50  const terminal_color& terminalColor);
51 
52  enum class type
53  {
54  font,
55  back,
56  reset
57  };
58 
59 public:
60  /**
61  @brief Set font color
62  @param fontColor - new font color
63  @retval - terminal_color instance to pass to the ostream
64  **/
65  static constexpr terminal_color font(const color& fontColor) noexcept;
66 
67  /**
68  @brief Set background color
69  @param bgColor - new background color
70  @retval - terminal_color instance to pass to the ostream
71  **/
72  static constexpr terminal_color back(const color& bgColor) noexcept;
73 
74  /**
75  @brief Reset all colors
76  @retval - terminal_color instance to pass to the ostream
77  **/
78  static constexpr terminal_color reset() noexcept;
79 
80  /**
81  @brief Output colors available in qx::color to test if terminal color work
82  **/
83  static void test_colors();
84 
85 private:
86  /**
87  @brief terminal_color object constructor
88  @param inColor - color to set
89  @param eType - output type
90  **/
91  constexpr terminal_color(const color& inColor, type eType) noexcept;
92 
93  /**
94  @brief terminal_color object constructor
95  @param eType - output type
96  **/
97  constexpr terminal_color(type eType) noexcept;
98 
99 private:
100  color m_Color = color::white();
101  type m_eType = type::reset;
102 };
103 
104 } // namespace qx
105 
RGBA color.
Definition: color.h:38
Class for colors manipulating in terminal.
static void test_colors()
Output colors available in qx::color to test if terminal color work.
static constexpr terminal_color reset() noexcept
Reset all colors.
static constexpr terminal_color font(const color &fontColor) noexcept
Set font color.
static constexpr terminal_color back(const color &bgColor) noexcept
Set background color.