blob: 0a158fb0895e071da1302137b80507a7e459bfb0 (
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
|
/*
* SPDX-FileCopyrightText: 2009 Shaun Reich <[email protected]>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef TRASHSETTINGSPAGE_H
#define TRASHSETTINGSPAGE_H
#include "settings/settingspagebase.h"
class KCModuleProxy;
/**
* @brief Tab page for the 'Trash' settings of the Dolphin settings dialog, it uses the KCM.
*/
class TrashSettingsPage : public SettingsPageBase
{
Q_OBJECT
public:
explicit TrashSettingsPage(QWidget* parent);
~TrashSettingsPage() override;
/** @see SettingsPageBase::applySettings() */
void applySettings() override;
/** @see SettingsPageBase::restoreDefaults() */
void restoreDefaults() override;
private:
void loadSettings();
KCModuleProxy *m_proxy;
};
#endif
|