Terminal++ 3.1.0.4
A C++ library for interacting with ANSI terminal windows
Loading...
Searching...
No Matches
attribute.hpp
1#pragma once
2
3#include "terminalpp/colour.hpp"
4#include "terminalpp/effect.hpp"
5
6#include <boost/container_hash/hash.hpp>
7
8#include <iosfwd>
9
10namespace terminalpp {
11
12//* =========================================================================
15//* =========================================================================
16struct TERMINALPP_EXPORT attribute
17{
18 //* =====================================================================
21 //* =====================================================================
22 constexpr attribute( // NOLINT
23 colour foreground_colour = colour(),
24 colour background_colour = colour(),
25 intensity intensity_effect = graphics::intensity::normal,
26 underlining underlining_effect = graphics::underlining::not_underlined,
27 polarity polarity_effect = graphics::polarity::positive,
28 blinking blink_effect = graphics::blinking::steady) noexcept
29 : foreground_colour_(foreground_colour),
30 background_colour_(background_colour),
31 intensity_(intensity_effect),
32 underlining_(underlining_effect),
33 polarity_(polarity_effect),
34 blinking_(blink_effect)
35 {
36 }
37
38 //* =====================================================================
40 //* =====================================================================
41 [[nodiscard]] friend std::size_t hash_value(attribute const &attr) noexcept
42 {
43 std::size_t seed = 0;
44 boost::hash_combine(seed, attr.foreground_colour_);
45 boost::hash_combine(seed, attr.background_colour_);
46 boost::hash_combine(seed, attr.intensity_);
47 boost::hash_combine(seed, attr.underlining_);
48 boost::hash_combine(seed, attr.polarity_);
49 boost::hash_combine(seed, attr.blinking_);
50
51 return seed;
52 }
53
54 //* =====================================================================
56 //* =====================================================================
57 [[nodiscard]] constexpr friend auto operator<=>(
58 attribute const &lhs, attribute const &rhs) noexcept = default;
59
60 // Graphics Attributes
61 colour foreground_colour_;
62 colour background_colour_;
63 intensity intensity_;
64 underlining underlining_;
65 polarity polarity_;
66 blinking blinking_;
67};
68
69//* =========================================================================
72//* =========================================================================
73TERMINALPP_EXPORT
74std::ostream &operator<<(std::ostream &out, attribute const &attr);
75
76} // namespace terminalpp
77
78namespace std {
79
80template <>
81struct hash<terminalpp::attribute>
82{
84 using result_type = std::size_t;
85
86 [[nodiscard]] result_type operator()(
87 argument_type const &attr) const noexcept
88 {
89 return hash_value(attr);
90 }
91};
92
93} // namespace std
A structure that carries around the presentation attributes of an ANSI element.
Definition attribute.hpp:17
constexpr friend auto operator<=>(attribute const &lhs, attribute const &rhs) noexcept=default
Relational operators for attributes.
friend std::size_t hash_value(attribute const &attr) noexcept
Hash function.
Definition attribute.hpp:41
constexpr attribute(colour foreground_colour=colour(), colour background_colour=colour(), intensity intensity_effect=graphics::intensity::normal, underlining underlining_effect=graphics::underlining::not_underlined, polarity polarity_effect=graphics::polarity::positive, blinking blink_effect=graphics::blinking::steady) noexcept
Initialises the attribute with the colours and effects specified.
Definition attribute.hpp:22
Structure representing a sum type of the available colour styles.
Definition colour.hpp:218