1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2018 Leo Tenenbaum
// This file is part of GraphColoring.
//
// GraphColoring is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// GraphColoring is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with GraphColoring. If not, see <https://www.gnu.org/licenses/>.
////////////////////////////////////////////////////////////////////////////////
#include "position.hpp"
#include <iostream>
#include "utils/errors.hpp"
namespace gui {
Position::Position(int x_, int y_, double relx_, double rely_,
const Size* parent_size_, const Position* parent_pos_)
{
SetPos(x_, y_);
SetRel(relx_, rely_);
SetParent(parent_size_, parent_pos_);
}
int Position::X() const
{
int xpos = x;
if (parent_size != nullptr)
xpos += relx * parent_size->X();
if (parent_pos != nullptr)
xpos += parent_pos->X();
return xpos;
}
int Position::Y() const
{
int ypos = y;
if (parent_size != nullptr)
ypos += rely * parent_size->Y();
if (parent_pos != nullptr)
ypos += parent_pos->Y();
return ypos;
}
void Position::SetX(int x_) { x = x_; }
void Position::SetY(int y_) { y = y_; }
void Position::SetPos(int x_, int y_)
{
SetX(x_);
SetY(y_);
}
void Position::SetRel(double relx_, double rely_)
{
relx = relx_;
rely = rely_;
}
void Position::SetParent(const Size* parent_size_, const Position* parent_pos_)
{
parent_size = parent_size_;
parent_pos = parent_pos_;
}
int Position::AlignAxis(Alignment alignment, int val, int size)
{
switch (alignment)
{
case Alignment::LEFT:
return val;
case Alignment::RIGHT:
return val - size;
case Alignment::CENTER:
return val - size/2;
}
return -1;
}
int Position::AlignedX(Alignment horizontal_align, int width) const
{
return AlignAxis(horizontal_align, X(), width);
}
int Position::AlignedY(Alignment vertical_align, int height) const
{
return AlignAxis(vertical_align, Y(), height);
}
std::ostream& operator<<(std::ostream& os, Position pos)
{
os << "(" << pos.X() << ", " << pos.Y() << ")";
return os;
}
} // namespace gui
|