┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/settings/kcm/kcmdolphinnavigation.h
blob: 97d7bff85a15d5d3527c79f22933a18922fde947 (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(QWidget *parent, const QVariantList &args);
    ~DolphinNavigationConfigModule() override;

    void save() override;
    void defaults() override;

private:
    NavigationSettingsPage *m_navigation;
};

#endif