File indexing completed on 2024-05-12 17:18:54

0001 /*
0002  * SPDX-FileCopyrightText: 2009 Peter Penz <peter.penz19@gmail.com>
0003  *
0004  * SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef KCMDOLPHINNAVIGATION_H
0008 #define KCMDOLPHINNAVIGATION_H
0009 
0010 #include <KCModule>
0011 
0012 class NavigationSettingsPage;
0013 
0014 /**
0015  * @brief Allow to configure the Dolphin navigation.
0016  */
0017 class DolphinNavigationConfigModule : public KCModule
0018 {
0019     Q_OBJECT
0020 
0021 public:
0022     DolphinNavigationConfigModule(QObject *parent);
0023     ~DolphinNavigationConfigModule() override;
0024 
0025     void save() override;
0026     void defaults() override;
0027 
0028 private:
0029     NavigationSettingsPage *m_navigation;
0030 };
0031 
0032 #endif