mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
59 lines
1.2 KiB
C++
59 lines
1.2 KiB
C++
#ifndef SETTINGSDIALOG_H
|
|
#define SETTINGSDIALOG_H
|
|
|
|
#include "settingsmanager.h"
|
|
#include "settingssnapshot.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);
|
|
|
|
static void showDialog();
|
|
|
|
private:
|
|
SettingsSnapshot _snapshot;
|
|
|
|
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;
|
|
|
|
/// Widget creation helpers
|
|
QCheckBox *createCheckbox(const QString &title, Setting<bool> &setting);
|
|
|
|
void okButtonClicked();
|
|
void cancelButtonClicked();
|
|
};
|
|
|
|
} // namespace widgets
|
|
} // namespace chatterino
|
|
|
|
#endif // SETTINGSDIALOG_H
|