mirror-chatterino2/settingsdialog.h

39 lines
763 B
C
Raw Normal View History

2017-01-01 18:43:52 +01:00
#ifndef SETTINGSDIALOG_H
#define SETTINGSDIALOG_H
#include "QWidget"
#include "QMainWindow"
#include "QHBoxLayout"
2017-01-02 03:02:32 +01:00
#include "QVBoxLayout"
2017-01-01 18:43:52 +01:00
#include "QListView"
2017-01-02 03:02:32 +01:00
#include "QButtonGroup"
#include "QPushButton"
#include "QDialogButtonBox"
#include "QStackedLayout"
#include "settingsdialogtab.h"
2017-01-01 18:43:52 +01:00
2017-01-02 03:02:32 +01:00
class SettingsDialog : public QWidget
2017-01-01 18:43:52 +01:00
{
public:
SettingsDialog();
2017-01-02 03:02:32 +01:00
void select(SettingsDialogTab* tab);
2017-01-01 18:43:52 +01:00
private:
2017-01-02 03:02:32 +01:00
QVBoxLayout tabs;
QVBoxLayout vbox;
2017-01-01 18:43:52 +01:00
QHBoxLayout hbox;
2017-01-02 03:02:32 +01:00
QStackedLayout pageStack;
QDialogButtonBox buttonBox;
QPushButton okButton;
QPushButton cancelButton;
void addTab(QLayout* layout, QString title, QString imageRes);
void addTabs();
2017-01-01 18:43:52 +01:00
2017-01-02 03:02:32 +01:00
SettingsDialogTab* selectedTab = NULL;
2017-01-01 18:43:52 +01:00
};
#endif // SETTINGSDIALOG_H