FTXUI 6.1.9
C++ functional terminal UI.
Loading...
Searching...
No Matches
box.cpp
Go to the documentation of this file.
1// Copyright 2020 Arthur Sonzogni. All rights reserved.
2// Use of this source code is governed by the MIT license that can be found in
3// the LICENSE file.
5
6#include <algorithm>
7
8namespace ftxui {
9/// @return the biggest Box contained in both |a| and |b|.
10// static
12 return Box{
13 std::max(a.x_min, b.x_min),
14 std::min(a.x_max, b.x_max),
15 std::max(a.y_min, b.y_min),
16 std::min(a.y_max, b.y_max),
17 };
18}
19
20/// @return the smallest Box containing both |a| and |b|.
21// static
23 return Box{
24 std::min(a.x_min, b.x_min),
25 std::max(a.x_max, b.x_max),
26 std::min(a.y_min, b.y_min),
27 std::max(a.y_max, b.y_max),
28 };
29}
30
31/// Shift the box by (x,y).
32/// @param x horizontal shift.
33/// @param y vertical shift.
34void Box::Shift(int x, int y) {
35 x_min += x;
36 x_max += x;
37 y_min += y;
38 y_max += y;
39}
40
41/// @return whether (x,y) is contained inside the box.
42bool Box::Contain(int x, int y) const {
43 return x_min <= x && //
44 x_max >= x && //
45 y_min <= y && //
46 y_max >= y;
47}
48
49/// @return whether the box is empty.
50bool Box::IsEmpty() const {
51 return x_min > x_max || y_min > y_max;
52}
53
54/// @return whether |other| is the same as |this|
55bool Box::operator==(const Box& other) const {
56 return (x_min == other.x_min) && (x_max == other.x_max) &&
57 (y_min == other.y_min) && (y_max == other.y_max);
58}
59
60/// @return whether |other| and |this| are different.
61bool Box::operator!=(const Box& other) const {
62 return !operator==(other);
63}
64
65} // namespace ftxui
bool operator!=(const Box &other) const
Definition box.cpp:61
bool Contain(int x, int y) const
Definition box.cpp:42
void Shift(int x, int y)
Definition box.cpp:34
int x_max
Definition box.hpp:18
int y_min
Definition box.hpp:19
static auto Intersection(Box a, Box b) -> Box
Definition box.cpp:11
bool IsEmpty() const
Definition box.cpp:50
int y_max
Definition box.hpp:20
bool operator==(const Box &other) const
Definition box.cpp:55
static auto Union(Box a, Box b) -> Box
Definition box.cpp:22
int x_min
Definition box.hpp:17
Box is a structure that represents a rectangular area in a 2D space.
Definition box.hpp:16
The FTXUI ftxui:: namespace.
Definition animation.hpp:10