blob: 33c0b77a520eb1902c08596635022befee047188 (
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
|