blob: 4609ae540f4ecdc8d03d3d4a8dbf4eda2b942dfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef SETTINGSDIALOGUSERINTERFACE_H
#define SETTINGSDIALOGUSERINTERFACE_H
#include "settingsdialog.h"
#include "settings.h"
class UserInterfaceSettingsTab : public SettingsTab
{
public:
UserInterfaceSettingsTab(Settings& settings, SettingsDialog& dialog);
void update() override;
protected slots:
// enable/disable the collapsible separators group depending on
// the checkbox states
void updateCollapsibleSeparatorsGroup();
};
#endif // SETTINGSDIALOGGENERAL_H
|