Terminal++ 3.1.0.4
A C++ library for interacting with ANSI terminal windows
Loading...
Searching...
No Matches
extent.hpp
1#pragma once
2
3#include "terminalpp/core.hpp"
4
5#include <iosfwd>
6
7namespace terminalpp {
8
9//* =========================================================================
16//* =========================================================================
18{
19 //* =====================================================================
23 //* =====================================================================
24 constexpr extent() noexcept : width_(0), height_(0)
25 {
26 }
27
28 //* =====================================================================
33 //* =====================================================================
34 constexpr extent(coordinate_type w, coordinate_type h) noexcept // NOLINT
35 : width_(w), height_(h)
36 {
37 }
38
39 //* =====================================================================
41 //* =====================================================================
42 constexpr extent &operator+=(extent const &rhs) noexcept
43 {
44 width_ += rhs.width_;
45 height_ += rhs.height_;
46 return *this;
47 }
48
49 //* =====================================================================
51 //* =====================================================================
52 [[nodiscard]] constexpr friend auto operator+(
53 extent lhs, extent const &rhs) noexcept
54 {
55 return lhs += rhs;
56 }
57
58 //* =====================================================================
60 //* =====================================================================
61 constexpr extent &operator-=(extent const &rhs) noexcept
62 {
63 width_ -= rhs.width_;
64 height_ -= rhs.height_;
65 return *this;
66 }
67
68 //* =====================================================================
70 //* =====================================================================
71 [[nodiscard]] constexpr friend auto operator-(
72 extent lhs, extent const &rhs) noexcept
73 {
74 return lhs -= rhs;
75 }
76
77 //* =====================================================================
79 //* =====================================================================
80 [[nodiscard]] constexpr friend auto operator<=>(
81 extent const &lhs, extent const &rhs) noexcept = default;
82
83 coordinate_type width_;
84 coordinate_type height_;
85};
86
87//* =====================================================================
90//* =====================================================================
92std::ostream &operator<<(std::ostream &out, extent const &ext);
93
94} // namespace terminalpp
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 class that represents a direction with distance in space (a vector).
Definition extent.hpp:18
constexpr friend auto operator-(extent lhs, extent const &rhs) noexcept
Subtraction.
Definition extent.hpp:71
constexpr friend auto operator+(extent lhs, extent const &rhs) noexcept
Addition.
Definition extent.hpp:52
constexpr friend auto operator<=>(extent const &lhs, extent const &rhs) noexcept=default
Relational operators for extents.
constexpr extent & operator+=(extent const &rhs) noexcept
Addition.
Definition extent.hpp:42
constexpr extent(coordinate_type w, coordinate_type h) noexcept
Constructor.
Definition extent.hpp:34
constexpr extent() noexcept
Default Constructor.
Definition extent.hpp:24
constexpr extent & operator-=(extent const &rhs) noexcept
Subtraction.
Definition extent.hpp:61