blob: ea94a98d46e3850db45de1c5b68f44892083a38a (
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 KCMDOLPHINSERVICES_H
#define KCMDOLPHINSERVICES_H
#include <KCModule>
class ServicesSettingsPage;
/**
* @brief Allow to configure the Dolphin services.
*/
class DolphinServicesConfigModule : public KCModule
{
Q_OBJECT
public:
DolphinServicesConfigModule(QWidget* parent, const QVariantList& args);
~DolphinServicesConfigModule() override;
void save() override;
void defaults() override;
private:
ServicesSettingsPage *m_services;
};
#endif
|