┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/settings/kcm/kcmdolphinviewmodes.h
blob: ea61bcf892a845e81589795b56b30d479656fdc0 (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
33
34
35
36
37
38
/*
 * SPDX-FileCopyrightText: 2008 Peter Penz <[email protected]>
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#ifndef KCMDOLPHINVIEWMODES_H
#define KCMDOLPHINVIEWMODES_H

#include <KCModule>

class ViewSettingsTab;

/**
 * @brief Allow to configure the Dolphin views.
 */
class DolphinViewModesConfigModule : public KCModule
{
    Q_OBJECT

public:
    DolphinViewModesConfigModule(QWidget *parent, const QVariantList &args);
    ~DolphinViewModesConfigModule() override;

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

private:
    void reparseConfiguration();

private Q_SLOTS:
   void viewModeChanged();

private:
    QList<ViewSettingsTab*> m_tabs;
};

#endif