mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
21 lines
325 B
C++
21 lines
325 B
C++
#ifndef NOTEBOOKPAGE_H
|
|
#define NOTEBOOKPAGE_H
|
|
|
|
#include "QWidget"
|
|
#include "notebookpage.h"
|
|
#include "notebooktab.h"
|
|
|
|
class NotebookPage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
NotebookPage(NotebookTab *tab);
|
|
NotebookTab* tab;
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *) Q_DECL_OVERRIDE;
|
|
};
|
|
|
|
#endif // NOTEBOOKPAGE_H
|