blob: 8b4781b44793c0a32263ed763ff5d16e1267985c (
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
|
/*
* SPDX-FileCopyrightText: 2009 Peter Penz <[email protected]>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef NAVIGATIONSETTINGSPAGE_H
#define NAVIGATIONSETTINGSPAGE_H
#include "settings/settingspagebase.h"
class QCheckBox;
/**
* @brief Page for the 'Navigation' settings of the Dolphin settings dialog.
*/
class NavigationSettingsPage : public SettingsPageBase
{
Q_OBJECT
public:
explicit NavigationSettingsPage(QWidget* parent);
~NavigationSettingsPage() override;
/** @see SettingsPageBase::applySettings() */
void applySettings() override;
/** @see SettingsPageBase::restoreDefaults() */
void restoreDefaults() override;
private:
void loadSettings();
private:
QCheckBox* m_openArchivesAsFolder;
QCheckBox* m_autoExpandFolders;
};
#endif
|