blob: adff05dc14b103156f096c93732a9fbd823d199c (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/*
* SPDX-FileCopyrightText: 2009 Peter Penz <[email protected]>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef STATUSBARSETTINGSPAGE_H
#define STATUSBARSETTINGSPAGE_H
#include "settings/settingspagebase.h"
class QCheckBox;
/**
* @brief Tab page for the 'Status Bar' settings of the Dolphin settings dialog.
*/
class StatusBarSettingsPage : public SettingsPageBase
{
Q_OBJECT
public:
explicit StatusBarSettingsPage(QWidget *parent);
~StatusBarSettingsPage() override;
/** @see SettingsPageBase::applySettings() */
void applySettings() override;
/** @see SettingsPageBase::restoreDefaults() */
void restoreDefaults() override;
private:
void loadSettings();
void onShowStatusBarToggled();
private:
QCheckBox *m_showStatusBar;
QCheckBox *m_showZoomSlider;
QCheckBox *m_showSpaceInfo;
};
#endif
|