-
Notifications
You must be signed in to change notification settings - Fork 4
/
qanimatedgridlayout.cpp
462 lines (425 loc) · 13.7 KB
/
qanimatedgridlayout.cpp
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
#include <QApplication>
#include <QWidget>
#include <QVector>
#include <QEasingCurve>
#include <QPropertyAnimation>
#include <QParallelAnimationGroup>
#include "qanimatedgridlayout.h"
class QAnimatedGridLayoutPrivate
{
friend class QAnimatedGridLayout;
QAnimatedGridLayout * m_public;
struct Wrapper
{
Wrapper(QWidgetItem * i, int r, int c, int rs, int cs)
{ item = i; row = r; col = c; rowSpan = rs; colSpan = cs; }
~Wrapper()
{ if (item) delete item; }
QWidgetItem * item;
int row;
int col;
int rowSpan;
int colSpan;
};
QList<Wrapper*> list;
int rowCount;
int colCount;
QEasingCurve easing;
bool dirty;
QSize minSize; // cache
QSize hintedSize; // cache
int zoomedIndex;
int duration;
bool animationRunning;
QWidget * outerWidgetForRect;
public:
QAnimatedGridLayoutPrivate(QAnimatedGridLayout * public_)
: m_public(public_)
{
rowCount = 0;
colCount = 0;
dirty = true;
zoomedIndex = -1;
duration = 250;
animationRunning = false;
outerWidgetForRect = NULL;
}
~QAnimatedGridLayoutPrivate()
{
deleteAll();
}
void deleteAll()
{
while (!list.isEmpty())
delete list.takeFirst();
rowCount = 0;
colCount = 0;
zoomedIndex = -1;
}
void addItem(QLayoutItem *i, int r, int c, int rs, int cs)
{
Q_ASSERT(false);
Q_UNUSED(i);
Q_UNUSED(r);
Q_UNUSED(c);
Q_UNUSED(rs);
Q_UNUSED(cs);
}
void addItem(QWidgetItem *i, int r, int c, int rs, int cs)
{
// TODO : check multiple add to same location !!!
Q_CHECK_PTR(i);
Q_ASSERT(r>=0);
Q_ASSERT(c>=0);
Q_ASSERT(rs>=1);
Q_ASSERT(cs>=1);
list.append(new Wrapper(i,r,c,rs,cs));
int maxRowCount = (r+(rs-1))+1;
int maxColCount = (c+(cs-1))+1;
if (rowCount<maxRowCount) rowCount = maxRowCount;
if (colCount<maxColCount) colCount = maxColCount;
}
QLayoutItem *itemAt(int i) const
{
if (0 <= i && i < list.size())
return list.at(i)->item;
else
return NULL;
}
QLayoutItem *takeAt(int i)
{
bool aboutToTakeSOI = false;
if (i == zoomedIndex)
aboutToTakeSOI = true;
Wrapper * w = list.takeAt(i);
if (!w) return NULL;
if (aboutToTakeSOI) zoomedIndex = -1;
QWidgetItem * item = w->item;
delete w;
return item;
}
QSize minimumSize()
{
if (!dirty)
return minSize;
QVector<int> rowWidthTotals(rowCount,0);
QVector<int> colHeightTotals(colCount,0);
for (int i = 0; i < list.size(); ++i) {
Wrapper * wr = list.at(i);
int spacing = m_public->spacing();
rowWidthTotals[wr->row] += wr->item->minimumSize().width() + spacing;
colHeightTotals[wr->col] += wr->item->minimumSize().height() + spacing;
}
int h = 0;
int w = 0;
for (int i = 0; i < rowWidthTotals.size(); ++i) {
w = rowWidthTotals[i] > w ? rowWidthTotals[i] : w;
}
for (int i = 0; i < colHeightTotals.size(); ++i) {
h = colHeightTotals[i] > h ? colHeightTotals[i] : h;
}
minSize = QSize(w,h);
return minSize;
}
QSize sizeHint()
{
if (!dirty)
return hintedSize;
QVector<int> rowWidthTotals(rowCount,0);
QVector<int> colHeightTotals(colCount,0);
for (int i = 0; i < list.size(); ++i) {
Wrapper * wr = list.at(i);
int spacing = m_public->spacing();
rowWidthTotals[wr->row] += wr->item->sizeHint().width() + spacing;
colHeightTotals[wr->col] += wr->item->sizeHint().height() + spacing;
}
int h = 0;
int w = 0;
for (int i = 0; i < rowWidthTotals.size(); ++i) {
w = rowWidthTotals[i] > w ? rowWidthTotals[i] : w;
}
for (int i = 0; i < colHeightTotals.size(); ++i) {
h = colHeightTotals[i] > h ? colHeightTotals[i] : h;
}
hintedSize = QSize(w,h);
return hintedSize;
}
void setGeometry(const QRect & adjustedGeo)
{
if (animationRunning)
return;
if (!rowCount || !colCount)
return;
if (zoomedIndex >= 0) {
Wrapper * wr = list.at(zoomedIndex);
wr->item->setGeometry(adjustedGeo);
return;
}
int spacing = m_public->spacing();
QSize cellSize = calculateCellSize(adjustedGeo,spacing);
for (int i = 0; i < list.size(); ++i) {
Wrapper * wr = list.at(i);
int r = wr->row,c = wr->col,rs = wr->rowSpan,cs = wr->colSpan;
wr->item->setGeometry(
calculateCellGeometry(
adjustedGeo, cellSize, spacing, r,c,rs,cs));
}
}
void startZoomInAnimation(QWidget * widget)
{
if (zoomedIndex >= 0)
return;
zoomedIndex = widgetIndex(widget);
if (zoomedIndex < 0) // widget is not in the list
return;
QRect winGeo = m_public->geometry();
if (outerWidgetForRect)
winGeo = outerWidgetForRect->geometry();
int lm, tm, rm, bm;
m_public->getContentsMargins(&lm, &tm, &rm, &bm);
QRect adjustedGeo = m_public->geometry().adjusted(lm, tm, -rm, -bm);
int spacing = m_public->spacing();
QSize cellSize = calculateCellSize(adjustedGeo,spacing);
QParallelAnimationGroup * animGroup = new QParallelAnimationGroup;
for (int i = 0; i < list.size(); ++i) {
Wrapper * wr = list.at(i);
QPropertyAnimation * anim = new QPropertyAnimation(wr->item->widget(), "pos");
if (wr->item->widget() == widget)
continue;
anim->setEndValue(calculateOutPos(wr,winGeo,cellSize,spacing));
anim->setDuration(duration);
anim->setEasingCurve(easing);
animGroup->addAnimation(anim);
qApp->connect(anim,SIGNAL(finished()),wr->item->widget(),SLOT(hide()));
}
QPropertyAnimation * anim = new QPropertyAnimation(widget, "geometry");
anim->setEndValue(adjustedGeo);
anim->setDuration(duration);
anim->setEasingCurve(easing);
animGroup->addAnimation(anim);
qApp->connect(animGroup, SIGNAL(finished()),m_public, SIGNAL(animationFinished()));
animationRunning = true;
animGroup->start(QAbstractAnimation::DeleteWhenStopped);
}
void startZoomOutAnimation()
{
if (zoomedIndex < 0)
return;
int lm, tm, rm, bm;
m_public->getContentsMargins(&lm, &tm, &rm, &bm);
QRect adjustedGeo = m_public->geometry().adjusted(lm, tm, -rm, -bm);
int spacing = m_public->spacing();
QSize cellSize = calculateCellSize(adjustedGeo,spacing);
QParallelAnimationGroup * animGroup = new QParallelAnimationGroup;
for (int i = 0; i < list.size(); ++i) {
Wrapper * wr = list.at(i);
wr->item->widget()->show();
QPropertyAnimation * anim = new QPropertyAnimation(wr->item->widget(), "geometry");
anim->setEndValue(
calculateCellGeometry(
adjustedGeo, cellSize, spacing,
wr->row, wr->col, wr->rowSpan,wr->colSpan));
anim->setDuration(duration);
anim->setEasingCurve(easing);
animGroup->addAnimation(anim);
}
qApp->connect(animGroup, SIGNAL(finished()), m_public, SIGNAL(animationFinished()));
animationRunning = true;
animGroup->start(QAbstractAnimation::DeleteWhenStopped);
zoomedIndex = -1;
}
void setAnimationFinished()
{
animationRunning = false;
}
int widgetIndex(QWidget * widget)
{
for (int i = 0; i < list.size(); ++i) {
Wrapper * wr = list.at(i);
if (wr->item->widget() == widget) {
return i;
}
}
return -1;
}
QWidget * zoomedTo()
{
if (zoomedIndex < 0)
return NULL;
Wrapper * wr = list.at(zoomedIndex);
return wr->item->widget();
}
private:
/* Also uses zoomedIndex ! */
QPoint calculateOutPos(Wrapper * wr, const QRect & winGeo,
const QSize & cellSize, int spacing)
{
Wrapper * currWr = list.at(zoomedIndex);
if (wr->item->widget() == currWr->item->widget())
return QPoint(0,0); // unused
QRect geo = calculateCellGeometry(
winGeo, cellSize, spacing, wr->row, wr->col,
wr->rowSpan,wr->colSpan);
QRect currGeo = calculateCellGeometry(
winGeo, cellSize, spacing, currWr->row, currWr->col,
currWr->rowSpan,currWr->colSpan);
int x = 0, y = 0;
if (wr->row < currWr->row) {
y = geo.y() - currGeo.y();
x = geo.x();
}
else if (wr->row > currWr->row) {
y = geo.y()
+ (winGeo.height()-currGeo.y())
- cellSize.height() + winGeo.y();
x = geo.x();
}
else { // same row
if (wr->col < currWr->col) {
y = geo.y();
x = geo.x() - currGeo.x();
}
else {
y = geo.y();
x = geo.x()
+ (winGeo.width()-currGeo.x())
- cellSize.width() + winGeo.x();
}
}
return QPoint(x,y);
}
QSize calculateCellSize(const QRect & geo, int spacing)
{
return QSize(
/*(double) */(geo.width()-((colCount-1)*spacing)) / colCount,
/*(double) */(geo.height()-((rowCount-1)*spacing)) / rowCount
);
}
QRect calculateCellGeometry(const QRect & adjustedGeo, const QSize & cellSize,
int spacing, int row, int col,
int rowSpan, int colSpan)
{
return QRect(
(cellSize.width()*col)+(spacing*col)+adjustedGeo.x(),
(cellSize.height()*row)+(spacing*row)+adjustedGeo.y(),
(cellSize.width()*colSpan)+(spacing*(colSpan-1)),
(cellSize.height()*rowSpan)+(spacing*(rowSpan-1))
);
}
};
QAnimatedGridLayout::QAnimatedGridLayout(QWidget *parent) :
QLayout(parent)
{
m_private = new QAnimatedGridLayoutPrivate(this);
connect(this, SIGNAL(animationFinished()), SLOT(animationFinishedSlot()));
}
QAnimatedGridLayout::~QAnimatedGridLayout()
{
if (m_private)
delete m_private;
}
void QAnimatedGridLayout::addItem(QLayoutItem *item)
{
Q_CHECK_PTR(item);
m_private->addItem(item,0,0,1,1);
}
void QAnimatedGridLayout::setGeometry(const QRect &rect)
{
if (m_private->dirty || rect != geometry()) {
int lm, tm, rm, bm;
getContentsMargins(&lm, &tm, &rm, &bm);
m_private->setGeometry(rect.adjusted(lm, tm, -rm, -bm));
QLayout::setGeometry(rect);
}
}
QSize QAnimatedGridLayout::sizeHint() const
{
return m_private->sizeHint();
}
QLayoutItem *QAnimatedGridLayout::itemAt(int index) const
{
return m_private->itemAt(index);
}
QLayoutItem *QAnimatedGridLayout::takeAt(int index)
{
return m_private->takeAt(index);
}
int QAnimatedGridLayout::count() const
{
return m_private->list.count();
}
QSize QAnimatedGridLayout::minimumSize() const
{
return m_private->minimumSize();
}
bool QAnimatedGridLayout::hasHeightForWidth()
{
return false;
}
bool QAnimatedGridLayout::isEmpty()
{
return m_private->list.isEmpty();
}
void QAnimatedGridLayout::invalidate()
{
m_private->dirty = true;
QLayout::invalidate();
}
void QAnimatedGridLayout::addWidget(QWidget *widget,
int row, int column,
int rowSpan, int colSpan)
{
Q_CHECK_PTR(widget);
m_private->addItem(new QWidgetItem(widget),row,column,rowSpan,colSpan);
}
int QAnimatedGridLayout::rowCount()
{
return m_private->rowCount;
}
int QAnimatedGridLayout::columnCount()
{
return m_private->colCount;
}
void QAnimatedGridLayout::setEasingCurve(const QEasingCurve &easing)
{
m_private->easing = easing;
}
QEasingCurve QAnimatedGridLayout::easingCurve() const
{
return m_private->easing;
}
void QAnimatedGridLayout::setAnimationDuration(int duration)
{
m_private->duration = duration;
}
int QAnimatedGridLayout::animationDuration()
{
return m_private->duration;
}
bool QAnimatedGridLayout::isZoomed()
{
return m_private->zoomedIndex >= 0;
}
QWidget *QAnimatedGridLayout::zoomedWidget()
{
return m_private->zoomedTo();
}
void QAnimatedGridLayout::setVisibleAreaWidget(QWidget *widget)
{
Q_CHECK_PTR(widget);
m_private->outerWidgetForRect = widget;
}
void QAnimatedGridLayout::zoomTo(QWidget *widget)
{
Q_CHECK_PTR(widget);
m_private->startZoomInAnimation(widget);
}
void QAnimatedGridLayout::showAll()
{
m_private->startZoomOutAnimation();
}
void QAnimatedGridLayout::animationFinishedSlot()
{
m_private->setAnimationFinished();
update();
}