-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathfloatingtoolbar.cpp
467 lines (395 loc) · 13.6 KB
/
floatingtoolbar.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
463
464
465
466
467
/*
SPDX-FileCopyrightText: 2007-2008 Urs Wolfer <[email protected]>
Parts of this file have been take from okular:
SPDX-FileCopyrightText: 2004-2005 Enrico Ros <[email protected]>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "floatingtoolbar.h"
#include "krdc_debug.h"
#include <QApplication>
#include <QBitmap>
#include <QMouseEvent>
#include <QPainter>
#include <QStyle>
#include <QTimer>
static const int actionIconSize = 22;
static const int toolBarRBMargin = 2;
static const double toolBarOpacity = 0.8;
static const int visiblePixelWhenAutoHidden = 6;
static const int autoHideTimeout = 500;
static const int initialAutoHideTimeout = 2000;
/**
* Denotes the various states of the animation.
*/
enum AnimState {
Hiding,
Showing,
Still
};
class FloatingToolBarPrivate
{
public:
FloatingToolBarPrivate(FloatingToolBar *qq)
: q(qq)
, anchorSide(FloatingToolBar::Left)
, offsetPlaceHolder(new QWidget(qq))
, animState(Still)
, toDelete(false)
, visible(false)
, sticky(false)
, opacity(toolBarOpacity)
// set queuedShow to true so we show the toolbar if we get a resize event on the anchorWidget
, queuedShow(true)
{
}
// rebuild contents and reposition then widget
void buildToolBar();
void reposition();
// compute the visible and hidden positions along current side
QPoint getInnerPoint() const;
QPoint getOuterPoint() const;
FloatingToolBar *q;
QWidget *anchorWidget;
FloatingToolBar::Side anchorSide;
QWidget *offsetPlaceHolder;
QTimer *animTimer;
QTimer *autoHideTimer;
QPoint currentPosition;
QPoint endPosition;
AnimState animState;
bool toDelete;
bool visible;
bool sticky;
qreal opacity;
bool queuedShow;
QPixmap backgroundPixmap;
};
FloatingToolBar::FloatingToolBar(QWidget *parent, QWidget *anchorWidget)
: QToolBar(parent)
, d(new FloatingToolBarPrivate(this))
{
;
addWidget(d->offsetPlaceHolder);
setMouseTracking(true);
setIconSize(QSize(actionIconSize, actionIconSize));
d->anchorWidget = anchorWidget;
d->animTimer = new QTimer(this);
connect(d->animTimer, SIGNAL(timeout()), this, SLOT(animate()));
d->autoHideTimer = new QTimer(this);
connect(d->autoHideTimer, SIGNAL(timeout()), this, SLOT(hide()));
// apply a filter to get notified when anchor changes geometry
d->anchorWidget->installEventFilter(this);
}
FloatingToolBar::~FloatingToolBar()
{
delete d;
}
void FloatingToolBar::addAction(QAction *action)
{
QToolBar::addAction(action);
// rebuild toolbar shape and contents only if the toolbar is already visible,
// otherwise it will be done in showAndAnimate()
if (isVisible())
d->reposition();
}
void FloatingToolBar::setSide(Side side)
{
d->anchorSide = side;
if (isVisible())
d->reposition();
}
void FloatingToolBar::setSticky(bool sticky)
{
d->sticky = sticky;
if (sticky)
d->autoHideTimer->stop();
}
void FloatingToolBar::showAndAnimate()
{
if (d->animState == Showing)
return;
d->animState = Showing;
show();
// force update for case when toolbar has not been built yet
d->reposition();
// start scrolling in
d->animTimer->start(20);
// This permits to show the toolbar for a while when going full screen.
if (!d->sticky)
d->autoHideTimer->start(initialAutoHideTimeout);
}
void FloatingToolBar::hideAndDestroy()
{
if (d->animState == Hiding)
return;
// set parameters for sliding out
d->animState = Hiding;
d->toDelete = true;
d->endPosition = d->getOuterPoint();
// start scrolling out
d->animTimer->start(20);
}
void FloatingToolBar::hide()
{
if (underMouse())
return;
if (d->visible) {
QPoint diff;
switch (d->anchorSide) {
case Left:
diff = QPoint(visiblePixelWhenAutoHidden, 0);
break;
case Right:
diff = QPoint(-visiblePixelWhenAutoHidden, 0);
break;
case Top:
diff = QPoint(0, visiblePixelWhenAutoHidden);
break;
case Bottom:
diff = QPoint(0, -visiblePixelWhenAutoHidden);
break;
}
d->animState = Hiding;
d->endPosition = d->getOuterPoint() + diff;
// start scrolling out
d->animTimer->start(20);
}
}
bool FloatingToolBar::eventFilter(QObject *obj, QEvent *e)
{
if (obj == d->anchorWidget && e->type() == QEvent::Resize) {
if (d->queuedShow) { // if the toolbar is not visible yet, try to show it if the anchor widget is in fullscreen already
d->queuedShow = false;
showAndAnimate();
return true;
}
// if anchorWidget changed geometry reposition toolbar
d->animTimer->stop();
if ((d->animState == Hiding || !d->visible) && d->toDelete)
deleteLater();
else
d->reposition();
}
return QToolBar::eventFilter(obj, e);
}
void FloatingToolBar::paintEvent(QPaintEvent *e)
{
QToolBar::paintEvent(e);
// paint the internal pixmap over the widget
QPainter p(this);
p.setOpacity(d->opacity);
p.drawImage(e->rect().topLeft(), d->backgroundPixmap.toImage(), e->rect());
}
void FloatingToolBar::mousePressEvent(QMouseEvent *e)
{
if (e->button() == Qt::LeftButton)
setCursor(Qt::SizeAllCursor);
QToolBar::mousePressEvent(e);
}
void FloatingToolBar::mouseMoveEvent(QMouseEvent *e)
{
// show the toolbar again when it is auto-hidden
if (!d->visible) {
showAndAnimate();
return;
}
if ((QApplication::mouseButtons() & Qt::LeftButton) != Qt::LeftButton)
return;
// compute the nearest side to attach the widget to
const QPoint parentPos = mapToParent(e->pos());
const float nX = (float)parentPos.x() / (float)d->anchorWidget->width();
const float nY = (float)parentPos.y() / (float)d->anchorWidget->height();
if (nX > 0.3 && nX < 0.7 && nY > 0.3 && nY < 0.7)
return;
bool LT = nX < (1.0 - nY);
bool LB = nX < (nY);
Side side = LT ? (LB ? Left : Top) : (LB ? Bottom : Right);
// check if side changed
if (side == d->anchorSide)
return;
d->anchorSide = side;
d->reposition();
Q_EMIT orientationChanged((int)side);
QToolBar::mouseMoveEvent(e);
}
void FloatingToolBar::enterEvent(QEnterEvent *e)
{
// Stop the autohide timer while the mouse is inside
d->autoHideTimer->stop();
if (!d->visible)
showAndAnimate();
QToolBar::enterEvent(e);
}
void FloatingToolBar::leaveEvent(QEvent *e)
{
if (!d->sticky)
d->autoHideTimer->start(autoHideTimeout);
QToolBar::leaveEvent(e);
}
void FloatingToolBar::mouseReleaseEvent(QMouseEvent *e)
{
if (e->button() == Qt::LeftButton)
setCursor(Qt::ArrowCursor);
QToolBar::mouseReleaseEvent(e);
}
void FloatingToolBar::wheelEvent(QWheelEvent *e)
{
e->accept();
const qreal diff = e->angleDelta().y() / 100.0 / 15.0;
// qCDebug(KRDC) << diff;
if (((d->opacity <= 1) && (diff > 0)) || ((d->opacity >= 0) && (diff < 0)))
d->opacity += diff;
update();
QToolBar::wheelEvent(e);
}
void FloatingToolBarPrivate::buildToolBar()
{
const bool prevUpdates = q->updatesEnabled();
q->setUpdatesEnabled(false);
// 1. init numbers we are going to use
const bool topLeft = anchorSide == FloatingToolBar::Left || anchorSide == FloatingToolBar::Top;
const bool vertical = anchorSide == FloatingToolBar::Left || anchorSide == FloatingToolBar::Right;
if (vertical) {
offsetPlaceHolder->setFixedSize(1, 7);
q->setOrientation(Qt::Vertical);
} else {
offsetPlaceHolder->setFixedSize(7, 1);
q->setOrientation(Qt::Horizontal);
}
// 2. compute widget size
const int myWidth = q->sizeHint().width() - 1;
const int myHeight = q->sizeHint().height() - 1;
// 3. resize pixmap, mask and widget
QBitmap mask(myWidth + 1, myHeight + 1);
backgroundPixmap = QPixmap(myWidth + 1, myHeight + 1);
backgroundPixmap.fill(Qt::transparent);
q->resize(myWidth + 1, myHeight + 1);
// 4. create and set transparency mask
QPainter maskPainter(&mask);
mask.fill(Qt::white);
maskPainter.setBrush(Qt::black);
if (vertical)
maskPainter.drawRoundedRect(topLeft ? -10 : 0, 0, myWidth + 10, myHeight, 2000 / (myWidth + 10), 2000 / myHeight, Qt::RelativeSize);
else
maskPainter.drawRoundedRect(0, topLeft ? -10 : 0, myWidth, myHeight + 10, 2000 / myWidth, 2000 / (myHeight + 10), Qt::RelativeSize);
maskPainter.end();
q->setMask(mask);
// 5. draw background
QPainter bufferPainter(&backgroundPixmap);
bufferPainter.translate(0.5, 0.5);
QPalette pal = q->palette();
// 5.1. draw horizontal/vertical gradient
QLinearGradient grad;
switch (anchorSide) {
case FloatingToolBar::Left:
grad = QLinearGradient(0, 1, myWidth + 1, 1);
break;
case FloatingToolBar::Right:
grad = QLinearGradient(myWidth + 1, 1, 0, 1);
break;
case FloatingToolBar::Top:
grad = QLinearGradient(1, 0, 1, myHeight + 1);
break;
case FloatingToolBar::Bottom:
grad = QLinearGradient(1, myHeight + 1, 0, 1);
break;
}
grad.setColorAt(0, pal.color(QPalette::Active, QPalette::Button));
grad.setColorAt(1, pal.color(QPalette::Active, QPalette::Light));
bufferPainter.setBrush(QBrush(grad));
// 5.2. draw rounded border
bufferPainter.setPen(pal.color(QPalette::Active, QPalette::Dark).lighter(40));
bufferPainter.setRenderHints(QPainter::Antialiasing);
if (vertical)
bufferPainter.drawRoundedRect(topLeft ? -10 : 0, 0, myWidth + 10, myHeight, 2000 / (myWidth + 10), 2000 / myHeight, Qt::RelativeSize);
else
bufferPainter.drawRoundedRect(0, topLeft ? -10 : 0, myWidth, myHeight + 10, 2000 / myWidth, 2000 / (myHeight + 10), Qt::RelativeSize);
// 5.3. draw handle
bufferPainter.translate(-0.5, -0.5);
bufferPainter.setPen(pal.color(QPalette::Active, QPalette::Mid));
if (vertical) {
int dx = anchorSide == FloatingToolBar::Left ? 2 : 4;
bufferPainter.drawLine(dx, 6, dx + myWidth - 8, 6);
bufferPainter.drawLine(dx, 9, dx + myWidth - 8, 9);
bufferPainter.setPen(pal.color(QPalette::Active, QPalette::Light));
bufferPainter.drawLine(dx + 1, 7, dx + myWidth - 7, 7);
bufferPainter.drawLine(dx + 1, 10, dx + myWidth - 7, 10);
} else {
int dy = anchorSide == FloatingToolBar::Top ? 2 : 4;
bufferPainter.drawLine(6, dy, 6, dy + myHeight - 8);
bufferPainter.drawLine(9, dy, 9, dy + myHeight - 8);
bufferPainter.setPen(pal.color(QPalette::Active, QPalette::Light));
bufferPainter.drawLine(7, dy + 1, 7, dy + myHeight - 7);
bufferPainter.drawLine(10, dy + 1, 10, dy + myHeight - 7);
}
q->setUpdatesEnabled(prevUpdates);
}
void FloatingToolBarPrivate::reposition()
{
// note: hiding widget here will gives better gfx, but ends drag operation
// rebuild widget and move it to its final place
buildToolBar();
if (!visible) {
currentPosition = getOuterPoint();
endPosition = getInnerPoint();
} else {
currentPosition = getInnerPoint();
endPosition = getOuterPoint();
}
q->move(currentPosition);
}
QPoint FloatingToolBarPrivate::getInnerPoint() const
{
// returns the final position of the widget
if (anchorSide == FloatingToolBar::Left)
return QPoint(0, (anchorWidget->height() - q->height()) / 2);
if (anchorSide == FloatingToolBar::Top)
return QPoint((anchorWidget->width() - q->width()) / 2, 0);
if (anchorSide == FloatingToolBar::Right)
return QPoint(anchorWidget->width() - q->width() + toolBarRBMargin, (anchorWidget->height() - q->height()) / 2);
return QPoint((anchorWidget->width() - q->width()) / 2, anchorWidget->height() - q->height() + toolBarRBMargin);
}
QPoint FloatingToolBarPrivate::getOuterPoint() const
{
// returns the point from which the transition starts
if (anchorSide == FloatingToolBar::Left)
return QPoint(-q->width(), (anchorWidget->height() - q->height()) / 2);
if (anchorSide == FloatingToolBar::Top)
return QPoint((anchorWidget->width() - q->width()) / 2, -q->height());
if (anchorSide == FloatingToolBar::Right)
return QPoint(anchorWidget->width() + toolBarRBMargin, (anchorWidget->height() - q->height()) / 2);
return QPoint((anchorWidget->width() - q->width()) / 2, anchorWidget->height() + toolBarRBMargin);
}
void FloatingToolBar::animate()
{
if (style()->styleHint(QStyle::SH_Widget_Animate, nullptr, this)) {
// move currentPosition towards endPosition
int dX = d->endPosition.x() - d->currentPosition.x();
int dY = d->endPosition.y() - d->currentPosition.y();
dX = dX / 6 + qMax(-1, qMin(1, dX));
dY = dY / 6 + qMax(-1, qMin(1, dY));
d->currentPosition.setX(d->currentPosition.x() + dX);
d->currentPosition.setY(d->currentPosition.y() + dY);
} else {
d->currentPosition = d->endPosition;
}
move(d->currentPosition);
// handle arrival to the end
if (d->currentPosition == d->endPosition) {
d->animTimer->stop();
switch (d->animState) {
case Hiding:
d->visible = false;
d->animState = Still;
if (d->toDelete)
deleteLater();
break;
case Showing:
d->visible = true;
d->animState = Still;
break;
default:
qCDebug(KRDC) << "Illegal state";
}
}
}