blob: a2540515597bf12066b4a2b32bc9427410600e78 (
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
|
/*
* 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
|