mirror-chatterino2/src/widgets/helper/droppreview.hpp
2018-05-08 20:35:31 +02:00

29 lines
561 B
C++

#pragma once
#include "widgets/basewidget.hpp"
#include <QPropertyAnimation>
#include <QWidget>
namespace chatterino {
namespace widgets {
class NotebookPageDropPreview : public BaseWidget
{
public:
NotebookPageDropPreview(BaseWidget *parent);
void setBounds(const QRect &rect);
protected:
void paintEvent(QPaintEvent *) override;
void hideEvent(QHideEvent *) override;
// QPropertyAnimation positionAnimation;
// QRect desiredGeometry;
// bool animate = false;
};
} // namespace widgets
} // namespace chatterino