]> cloud.milkyroute.net Git - dolphin.git/blob - src/settings/navigation/navigationsettingspage.h
Output of licensedigger + manual cleanup afterwards.
[dolphin.git] / src / settings / navigation / navigationsettingspage.h
1 /*
2 * SPDX-FileCopyrightText: 2009 Peter Penz <peter.penz19@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6 #ifndef NAVIGATIONSETTINGSPAGE_H
7 #define NAVIGATIONSETTINGSPAGE_H
8
9 #include "settings/settingspagebase.h"
10
11 class QCheckBox;
12
13 /**
14 * @brief Page for the 'Navigation' settings of the Dolphin settings dialog.
15 */
16 class NavigationSettingsPage : public SettingsPageBase
17 {
18 Q_OBJECT
19
20 public:
21 explicit NavigationSettingsPage(QWidget* parent);
22 ~NavigationSettingsPage() override;
23
24 /** @see SettingsPageBase::applySettings() */
25 void applySettings() override;
26
27 /** @see SettingsPageBase::restoreDefaults() */
28 void restoreDefaults() override;
29
30 private:
31 void loadSettings();
32
33 private:
34 QCheckBox* m_openArchivesAsFolder;
35 QCheckBox* m_autoExpandFolders;
36 };
37
38 #endif