Terminal++ 3.1.0.4
A C++ library for interacting with ANSI terminal windows
Loading...
Searching...
No Matches
element.hpp
1#pragma once
2
3#include "terminalpp/attribute.hpp"
4#include "terminalpp/core.hpp"
5#include "terminalpp/glyph.hpp"
6
7#include <boost/container_hash/hash.hpp>
8
9#include <iosfwd>
10#include <utility>
11
12namespace terminalpp {
13
14//* =========================================================================
18//* =========================================================================
20{
21 //* =====================================================================
23 //* =====================================================================
24 constexpr element( // NOLINT
26 terminalpp::attribute attr = {}) noexcept
27 : glyph_(std::move(gly)), attribute_(std::move(attr))
28 {
29 }
30
31 //* =====================================================================
33 //* =====================================================================
34 constexpr element( // NOLINT
35 byte ch,
36 terminalpp::attribute attr = {}) noexcept
37 : element(terminalpp::glyph(ch), attr)
38 {
39 }
40
41 //* =====================================================================
43 //* =====================================================================
44 [[nodiscard]] friend std::size_t hash_value(element const &elem) noexcept
45 {
46 std::size_t seed = 0;
47 boost::hash_combine(seed, elem.glyph_);
48 boost::hash_combine(seed, elem.attribute_);
49
50 return seed;
51 }
52
53 //* =====================================================================
55 //* =====================================================================
56 [[nodiscard]] constexpr friend auto operator<=>(
57 element const &lhs, element const &rhs) noexcept = default;
58
59 terminalpp::glyph glyph_;
60 terminalpp::attribute attribute_;
61};
62
63//* =========================================================================
66//* =========================================================================
68std::ostream &operator<<(std::ostream &out, element const &elem);
69
70} // namespace terminalpp
71
72#include "terminalpp/detail/element_udl.hpp"
73
74namespace terminalpp { // NOLINT
75inline namespace literals {
76
77inline constexpr element operator""_ete(char const *text, std::size_t len)
78{
79 element elem;
80 std::span data{text, len};
81 return detail::parse_element(data, elem);
82}
83
84} // namespace literals
85} // namespace terminalpp
86
87namespace std {
88
89template <>
90struct hash<terminalpp::element>
91{
93 using result_type = std::size_t;
94
95 result_type operator()(argument_type const &elem) const noexcept
96 {
97 return hash_value(elem);
98 }
99};
100
101} // namespace std
A structure that carries around the presentation attributes of an ANSI element.
Definition attribute.hpp:17
A structure representing an ANSI graphics effect (e.g. intensity, underlining)
Definition effect.hpp:27
constexpr effect() noexcept
Initialises the intensity to the default (normal) value.
Definition effect.hpp:31
A structure that represents the fundamental printable element of a terminal screen,...
Definition element.hpp:20
constexpr friend auto operator<=>(element const &lhs, element const &rhs) noexcept=default
Relational operators for elements.
friend std::size_t hash_value(element const &elem) noexcept
Hash function.
Definition element.hpp:44
constexpr element(terminalpp::glyph gly={}, terminalpp::attribute attr={}) noexcept
Value Constructor.
Definition element.hpp:24
constexpr element(byte ch, terminalpp::attribute attr={}) noexcept
Char Constructor.
Definition element.hpp:34
A structure that carries around the character attributes of an ANSI element.
Definition glyph.hpp:19