mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
22 lines
356 B
C
22 lines
356 B
C
|
#ifndef SETTINGSDIALOG_H
|
||
|
#define SETTINGSDIALOG_H
|
||
|
|
||
|
#include "QWidget"
|
||
|
#include "QMainWindow"
|
||
|
#include "QHBoxLayout"
|
||
|
#include "QListView"
|
||
|
|
||
|
class SettingsDialog : QMainWindow
|
||
|
{
|
||
|
public:
|
||
|
SettingsDialog();
|
||
|
|
||
|
private:
|
||
|
QListView tabs;
|
||
|
QHBoxLayout hbox;
|
||
|
|
||
|
void addTab(QWidget* widget, QString title, QString imageRes);
|
||
|
};
|
||
|
|
||
|
#endif // SETTINGSDIALOG_H
|