show what PresentationInfo::Change is being used for
[ardour.git] / libs / canvas / grid.cc
1 /*
2     Copyright (C) 2018 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #include <algorithm>
20 #include <vector>
21
22 #include "canvas/grid.h"
23 #include "canvas/rectangle.h"
24
25 using namespace ArdourCanvas;
26 using std::vector;
27 using std::max;
28 using std::cerr;
29 using std::endl;
30
31 Grid::Grid (Canvas* canvas)
32         : Item (canvas)
33         , spacing (0)
34         , top_padding (0), right_padding (0), bottom_padding (0), left_padding (0)
35         , top_margin (0), right_margin (0), bottom_margin (0), left_margin (0)
36         , homogenous (false)
37 {
38         self = new Rectangle (this);
39         self->set_outline (false);
40         self->set_fill (false);
41 }
42
43 Grid::Grid (Item* parent)
44         : Item (parent)
45         , spacing (0)
46         , top_padding (0), right_padding (0), bottom_padding (0), left_padding (0)
47         , top_margin (0), right_margin (0), bottom_margin (0), left_margin (0)
48         , homogenous (false)
49 {
50         self = new Rectangle (this);
51         self->set_outline (false);
52         self->set_fill (false);
53 }
54
55 Grid::Grid (Item* parent, Duple const & p)
56         : Item (parent, p)
57         , spacing (0)
58         , top_padding (0), right_padding (0), bottom_padding (0), left_padding (0)
59         , top_margin (0), right_margin (0), bottom_margin (0), left_margin (0)
60         , homogenous (false)
61 {
62         self = new Rectangle (this);
63         self->set_outline (false);
64         self->set_fill (false);
65 }
66
67 void
68 Grid::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
69 {
70         Item::render_children (area, context);
71 }
72
73 void
74 Grid::compute_bounding_box () const
75 {
76         _bounding_box = Rect();
77
78         if (_items.empty()) {
79                 _bounding_box_dirty = false;
80                 return;
81         }
82
83         add_child_bounding_boxes (!collapse_on_hide);
84
85         if (_bounding_box) {
86                 Rect r = _bounding_box;
87
88                 _bounding_box = r.expand (outline_width() + top_margin,
89                                           outline_width() + right_margin,
90                                           outline_width() + bottom_margin,
91                                           outline_width() + left_margin);
92         }
93
94         _bounding_box_dirty = false;
95 }
96
97 void
98 Grid::set_spacing (double s)
99 {
100         spacing = s;
101 }
102
103 void
104 Grid::set_padding (double t, double r, double b, double l)
105 {
106         double last = t;
107
108         top_padding = t;
109
110         if (r >= 0) {
111                 last = r;
112         }
113         right_padding = last;
114         if (b >= 0) {
115                 last = b;
116         }
117         bottom_padding = last;
118         if (l >= 0) {
119                 last = l;
120         }
121         left_padding = last;
122 }
123
124 void
125 Grid::set_margin (double t, double r, double b, double l)
126 {
127         double last = t;
128         top_margin = t;
129         if (r >= 0) {
130                 last = r;
131         }
132         right_margin = last;
133         if (b >= 0) {
134                 last = b;
135         }
136         bottom_margin = last;
137         if (l >= 0) {
138                 last = l;
139         }
140         left_margin = last;
141 }
142
143 void
144 Grid::reset_self ()
145 {
146         if (_bounding_box_dirty) {
147                 compute_bounding_box ();
148         }
149
150         if (!_bounding_box) {
151                 self->hide ();
152                 return;
153         }
154
155         Rect r (_bounding_box);
156
157         /* XXX need to shrink by margin */
158
159         self->set (r);
160 }
161
162 void
163 Grid::reposition_children ()
164 {
165         uint32_t max_row = 0;
166         uint32_t max_col = 0;
167
168         /* since we encourage dynamic and essentially random placement of
169          * children, begin by determining the maximum row and column given
170          * our current set of children and placements.
171          */
172
173         for (CoordsByItem::const_iterator c = coords_by_item.begin(); c != coords_by_item.end(); ++c) {
174                 max_col = max (max_col, (uint32_t) c->second.x);
175                 max_row = max (max_row, (uint32_t) c->second.y);
176         }
177
178         max_row++;
179         max_col++;
180
181         /* Now compute the width of the widest child for each column, and the
182          * height of the tallest child for each row.
183          */
184
185         vector<double> row_dimens;
186         vector<double> col_dimens;
187
188         row_dimens.assign (max_row, 0);
189         col_dimens.assign (max_col, 0);
190
191         for (std::list<Item*>::iterator i = _items.begin(); i != _items.end(); ++i) {
192
193                 if (*i == self) {
194                         /* self-rect is not a normal child */
195                         continue;
196                 }
197
198                 Rect bb = (*i)->bounding_box();
199
200                 if (!bb) {
201                         continue;
202                 }
203
204                 CoordsByItem::const_iterator c = coords_by_item.find (*i);
205
206                 row_dimens[c->second.y] = max (row_dimens[c->second.y], bb.height());
207                 col_dimens[c->second.x] = max (col_dimens[c->second.x]  , bb.width());
208         }
209
210         /* now sum the row and column widths, so that row_dimens is transformed
211          * into the y coordinate of the upper left of each row, and col_dimens
212          * is transformed into the x coordinate of the left edge of each
213          * column.
214          */
215
216         double current_top_edge = top_margin;
217
218         for (uint32_t n = 0; n < max_row; ++n) {
219                 if (row_dimens[n]) {
220                         /* height defined for this row */
221                         const double h = row_dimens[n]; /* save height */
222                         row_dimens[n] = current_top_edge;
223                         current_top_edge = current_top_edge + h + top_padding + bottom_padding;
224                 }
225         }
226
227         double current_right_edge = left_margin;
228
229         for (uint32_t n = 0; n < max_col; ++n) {
230                 if (col_dimens[n]) {
231                         /* a width was defined for this column */
232                         const double w = col_dimens[n]; /* save width of this column */
233                         col_dimens[n] = current_right_edge;
234                         current_right_edge = current_right_edge + w + left_padding + right_padding;
235                 }
236         }
237
238         /* position each item at the upper left of its (row, col) coordinate,
239          * given the width of all rows or columns before it.
240          */
241
242         for (std::list<Item*>::iterator i = _items.begin(); i != _items.end(); ++i) {
243                 CoordsByItem::const_iterator c = coords_by_item.find (*i);
244
245                 if (c == coords_by_item.end()) {
246                         continue;
247                 }
248
249                 (*i)->set_position (Duple (col_dimens[c->second.x], row_dimens[c->second.y]));
250         }
251
252         _bounding_box_dirty = true;
253         reset_self ();
254 }
255
256 void
257 Grid::place (Item* i, Duple at)
258 {
259         add (i);
260         coords_by_item.insert (std::make_pair (i, at));
261         reposition_children ();
262 }
263
264 void
265 Grid::child_changed ()
266 {
267         /* catch visibility and size changes */
268
269         Item::child_changed ();
270         reposition_children ();
271 }
272
273 void
274 Grid::set_collapse_on_hide (bool yn)
275 {
276         if (collapse_on_hide != yn) {
277                 collapse_on_hide = yn;
278                 reposition_children ();
279         }
280 }