LayoutVertical.cc
5.68 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
/*
* LayoutVertical.hh
*
* Created on: Sep, 2, 2014
* Author: AKKA
*/
#include "LayoutVertical.hh"
#include "PlotLogger.hh"
#include "DecoratorPlot.hh"
#include <boost/range/adaptor/reversed.hpp>
namespace plot {
/**
* @Brief Add a panel characterized by it's constraint to the layout
*/
void LayoutVertical::addPanel (PanelConstraint panelConstraint, double preferedWidth/*=-1*/, double preferedHeight/*=-1*/) {
double width=0, height=0;
switch (panelConstraint) {
case PanelConstraint::MaxWidth:
width = 1.0;
if (preferedHeight != -1)
height = preferedHeight;
else
height = _requestPanelHeight;
break;
case PanelConstraint::Square:
if (preferedWidth != -1)
width = preferedWidth;
else
width = _requestPanelHeight / _xyRatio;
if (preferedHeight != -1)
height = preferedHeight;
else
height = _requestPanelHeight;
break;
default:
// TODO lever exception ici ???
break;
}
_panelsInfo.push_back (new PanelInfo (panelConstraint, preferedWidth, preferedHeight, width, height));
}
/**
* @Brief Reset Layout internal parameters and compute optimized parameters
* like _panelHeight, _panelWidth, _panelYSpacing...
*/
void LayoutVertical::reset (void) {
// Reset current panels and position
_curPanel = 0;
_curYPosition = 0;
_maxWidthConstraintFound = false;
// Compute general data for the layout depending on
// - the number of panel
// - their constraint
_panelYSpacing = _requestPanelSpacing;
double layoutWidth, layoutHeight;
computeLayoutSize (layoutWidth, layoutHeight);
// Normalize width & height if more than 1
if (layoutHeight > 1) {
for (auto panelInfo : _panelsInfo) {
panelInfo->_preferedHeight /= layoutHeight;
panelInfo->_height /= layoutHeight;
}
_panelYSpacing /= layoutHeight;
}
if (layoutWidth > 1) {
for (auto panelInfo : _panelsInfo) {
if (panelInfo->_constraint != PanelConstraint::MaxWidth) {
panelInfo->_preferedWidth /= layoutWidth;
panelInfo->_width /= layoutWidth;
}
}
}
// Expand _requestPanelHeight if necessary and asked
if ((layoutHeight < 1) && (layoutWidth <= 1) && (_autoExpand == true)) {
expand (1.01);
expand (1.001);
expand (1.0001);
}
}
/**
* @Brief Increase panelHeight by step until layoutHeight reach (but not over step) 1.0
*/
void LayoutVertical::expand (double ratio) {
double layoutWidth, layoutHeight;
do
{
// Increase panelHeight by step and keep the same ratio for panelSpacing
_panelYSpacing *= ratio;
for (auto panelInfo : _panelsInfo) {
panelInfo->_height *= ratio;
if (panelInfo->_constraint != PanelConstraint::MaxWidth) {
if (panelInfo->_preferedWidth != -1) {
panelInfo->_width = panelInfo->_preferedWidth;
} else {
panelInfo->_width *= ratio;
}
}
}
computeLayoutSize (layoutWidth, layoutHeight);
} while ((layoutHeight < 1.0) && (layoutWidth <= 1.0));
// Restore last valid value for panelHeight and panelSpacing
_panelYSpacing /= ratio;
for (auto panelInfo : _panelsInfo) {
panelInfo->_height /= ratio;
if (panelInfo->_constraint != PanelConstraint::MaxWidth) {
if (panelInfo->_preferedWidth == -1) {
panelInfo->_width /= ratio;
}
}
}
computeLayoutSize (layoutWidth, layoutHeight);
}
void LayoutVertical::computeLayoutSize (double &layoutWidth, double &layoutHeight) {
layoutWidth = 0;
layoutHeight = 0;
_firstPanelHeightDelta = 0;
bool maxWidthConstraintFound = false;
for (auto panelInfo : _panelsInfo) {
layoutHeight += (panelInfo->_height + _panelYSpacing);
if (panelInfo->_width > layoutWidth)
layoutWidth = panelInfo->_width;
if ((maxWidthConstraintFound == false) &&
(panelInfo->_constraint == PanelConstraint::MaxWidth)) {
maxWidthConstraintFound = true;
_firstPanelHeightDelta = (_firstPanelHeightFactor-1.0) * panelInfo->_height;
layoutHeight += _firstPanelHeightDelta;
}
}
// Remove one spacing if more than 1 panel
if (_panelsInfo.size () > 1)
layoutHeight -= _panelYSpacing;
}
Bounds & LayoutVertical::getNextBounds (PanelConstraint panelConstraint) {
PanelInfo *panelInfo = _panelsInfo.at(_curPanel);
// Computes panels position on the layout depending on their constraints
switch (panelConstraint) {
case PanelConstraint::MaxWidth:
_computedPanelBounds._x = 0;
_computedPanelBounds._y = _curYPosition;
_computedPanelBounds._width = 1.0;
_computedPanelBounds._height = panelInfo->_height;
// The first MaxWidth panel can have an extra panel height
if (_maxWidthConstraintFound == false) {
_maxWidthConstraintFound = true;
_computedPanelBounds._height += _firstPanelHeightDelta;
_curYPosition += _firstPanelHeightDelta;
}
_curPanel++;
_curYPosition += (panelInfo->_height + _panelYSpacing);
break;
case PanelConstraint::Square:
// Compute x position of the SquarePanel on the line (centered)
_computedPanelBounds._x = 0.5 - (panelInfo->_width / 2.0);
_computedPanelBounds._y = _curYPosition;
_computedPanelBounds._width = panelInfo->_width;
_computedPanelBounds._height = panelInfo->_height;
_curPanel++;
_curYPosition += (panelInfo->_height + _panelYSpacing);
break;
default:
// TODO lever exception ici ???
break;
}
return _computedPanelBounds;
}
void LayoutVertical::computePanelsPosition (std::vector<boost::shared_ptr<PanelPlotOutput>> _plots) {
// Add panels constraint to the layout
for (auto plot : boost::adaptors::reverse(_plots)) {
if (!plot->isStandalone())
continue;
this->addPanel ( plot->getLayoutConstraint(),
plot->_panel->_preferedWidth,
plot->_panel->_preferedHeight);
}
// Reset layout
this->reset();
for (auto plot : boost::adaptors::reverse(_plots)) {
if (!plot->isStandalone())
continue;
plot->_panel->_bounds = this->getNextBounds (plot->getLayoutConstraint());
}
}
}