mirror-chatterino2/notebookpagedroppreview.cpp

37 lines
860 B
C++
Raw Normal View History

2017-01-01 02:30:42 +01:00
#include "notebookpagedroppreview.h"
#include "QPainter"
#include "colorscheme.h"
2017-01-15 17:13:25 +01:00
NotebookPageDropPreview::NotebookPageDropPreview(QWidget *parent)
2017-01-01 02:30:42 +01:00
: QWidget(parent)
2017-01-18 04:33:30 +01:00
, positionAnimation(this, "geometry")
, desiredGeometry()
2017-01-01 02:30:42 +01:00
{
setHidden(true);
2017-01-01 02:30:42 +01:00
}
2017-01-11 18:52:09 +01:00
void
NotebookPageDropPreview::paintEvent(QPaintEvent *)
2017-01-01 02:30:42 +01:00
{
QPainter painter(this);
2017-01-11 18:52:09 +01:00
painter.fillRect(8, 8, width() - 17, height() - 17,
ColorScheme::instance().DropPreviewBackground);
2017-01-01 02:30:42 +01:00
}
void
NotebookPageDropPreview::setBounds(const QRect &rect)
{
2017-01-18 04:33:30 +01:00
if (rect == this->desiredGeometry) {
return;
}
2017-01-18 04:33:30 +01:00
this->positionAnimation.stop();
this->positionAnimation.setDuration(50);
this->positionAnimation.setStartValue(geometry());
this->positionAnimation.setEndValue(rect);
this->positionAnimation.start();
2017-01-18 04:33:30 +01:00
this->desiredGeometry = rect;
}