blob: 61334c0b586fff11d359a0ee97eee33611e29261 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef SETTINGSDIALOGTHEME_H
#define SETTINGSDIALOGTHEME_H
#include <QCheckBox>
#include "settingsdialog.h"
#include "settings.h"
class ThemeSettingsTab : public SettingsTab
{
public:
ThemeSettingsTab(Settings& settings, SettingsDialog& dialog);
void update() override;
private:
void addStyles();
void selectStyle();
void onExploreStyles();
};
#endif // SETTINGSDIALOGGENERAL_H
|