mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
20 lines
358 B
C++
20 lines
358 B
C++
#ifndef SETTINGSNOTEBOOKTAB_H
|
|
#define SETTINGSNOTEBOOKTAB_H
|
|
|
|
#include <QWidget>
|
|
#include "QPaintEvent"
|
|
|
|
class SettingsDialogTab : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SettingsDialogTab(QWidget *parent, QString label, QImage& image);
|
|
|
|
private:
|
|
void paintEvent(QPaintEvent *);
|
|
QString label;
|
|
QImage& image;
|
|
};
|
|
|
|
#endif // SETTINGSNOTEBOOKTAB_H
|