mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
48 lines
909 B
C++
48 lines
909 B
C++
#ifndef SETTINGSDIALOG_H
|
|
#define SETTINGSDIALOG_H
|
|
|
|
#include "widgets/settingsdialogtab.h"
|
|
|
|
#include <QButtonGroup>
|
|
#include <QCheckBox>
|
|
#include <QDialogButtonBox>
|
|
#include <QHBoxLayout>
|
|
#include <QListView>
|
|
#include <QMainWindow>
|
|
#include <QPushButton>
|
|
#include <QStackedLayout>
|
|
#include <QVBoxLayout>
|
|
#include <QWidget>
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
|
|
class SettingsDialog : public QWidget
|
|
{
|
|
public:
|
|
SettingsDialog();
|
|
|
|
void select(SettingsDialogTab *tab);
|
|
|
|
private:
|
|
QVBoxLayout tabs;
|
|
QVBoxLayout vbox;
|
|
QHBoxLayout hbox;
|
|
QStackedLayout pageStack;
|
|
QDialogButtonBox buttonBox;
|
|
QPushButton okButton;
|
|
QPushButton cancelButton;
|
|
|
|
void addTab(QLayout *layout, QString title, QString imageRes);
|
|
|
|
void addTabs();
|
|
|
|
SettingsDialogTab *selectedTab = NULL;
|
|
|
|
QCheckBox *createCheckbox(QString title, QString settingsId);
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif // SETTINGSDIALOG_H
|