mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
30 lines
569 B
C++
30 lines
569 B
C++
#ifndef NOTEBOOKPAGEDROPPREVIEW_H
|
|
#define NOTEBOOKPAGEDROPPREVIEW_H
|
|
|
|
#include <QPropertyAnimation>
|
|
#include <QWidget>
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
|
|
class NotebookPageDropPreview : public QWidget
|
|
{
|
|
public:
|
|
NotebookPageDropPreview(QWidget *parent);
|
|
|
|
void setBounds(const QRect &rect);
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *);
|
|
|
|
void hideEvent(QHideEvent *);
|
|
|
|
QPropertyAnimation positionAnimation;
|
|
QRect desiredGeometry;
|
|
bool animate;
|
|
};
|
|
} // namespace widgets
|
|
} // namespace chatterino
|
|
|
|
#endif // NOTEBOOKPAGEDROPPREVIEW_H
|