┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/settings/kcm/kcmdolphinnavigation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/settings/kcm/kcmdolphinnavigation.h')
-rw-r--r--src/settings/kcm/kcmdolphinnavigation.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/settings/kcm/kcmdolphinnavigation.h b/src/settings/kcm/kcmdolphinnavigation.h
new file mode 100644
index 000000000..a25405155
--- /dev/null
+++ b/src/settings/kcm/kcmdolphinnavigation.h
@@ -0,0 +1,32 @@
+/*
+ * SPDX-FileCopyrightText: 2009 Peter Penz <[email protected]>
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef KCMDOLPHINNAVIGATION_H
+#define KCMDOLPHINNAVIGATION_H
+
+#include <KCModule>
+
+class NavigationSettingsPage;
+
+/**
+ * @brief Allow to configure the Dolphin navigation.
+ */
+class DolphinNavigationConfigModule : public KCModule
+{
+ Q_OBJECT
+
+public:
+ DolphinNavigationConfigModule(QObject *parent);
+ ~DolphinNavigationConfigModule() override;
+
+ void save() override;
+ void defaults() override;
+
+private:
+ NavigationSettingsPage *m_navigation;
+};
+
+#endif