blob: a5253774cf43ff6dfa2a83bc0c9924bae10ac594 (
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 KCModule;
/**
* @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();
KCModule *m_kcm;
};
#endif
|