3#include "terminalpp/colour.hpp"
4#include "terminalpp/effect.hpp"
6#include <boost/container_hash/hash.hpp>
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)
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_);
74std::ostream &operator<<(std::ostream &out,
attribute const &attr);
81struct hash<terminalpp::attribute>
84 using result_type = std::size_t;
86 [[nodiscard]] result_type operator()(
89 return hash_value(attr);
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