]> cloud.milkyroute.net Git - dolphin.git/blob - src/settings/kcm/kcmdolphinnavigation.h
Merge branch 'release/20.08'
[dolphin.git] / src / settings / kcm / kcmdolphinnavigation.h
1 /*
2 * SPDX-FileCopyrightText: 2009 Peter Penz <peter.penz19@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6
7 #ifndef KCMDOLPHINNAVIGATION_H
8 #define KCMDOLPHINNAVIGATION_H
9
10 #include <KCModule>
11
12 class NavigationSettingsPage;
13
14 /**
15 * @brief Allow to configure the Dolphin navigation.
16 */
17 class DolphinNavigationConfigModule : public KCModule
18 {
19 Q_OBJECT
20
21 public:
22 DolphinNavigationConfigModule(QWidget *parent, const QVariantList &args);
23 ~DolphinNavigationConfigModule() override;
24
25 void save() override;
26 void defaults() override;
27
28 private:
29 NavigationSettingsPage *m_navigation;
30 };
31
32 #endif