mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
16 lines
280 B
C
16 lines
280 B
C
|
#ifndef NOTEBOOKPAGEDROPPREVIEW_H
|
||
|
#define NOTEBOOKPAGEDROPPREVIEW_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
class NotebookPageDropPreview : public QWidget
|
||
|
{
|
||
|
public:
|
||
|
NotebookPageDropPreview(QWidget *parent);
|
||
|
|
||
|
protected:
|
||
|
void paintEvent(QPaintEvent *);
|
||
|
};
|
||
|
|
||
|
#endif // NOTEBOOKPAGEDROPPREVIEW_H
|