c61fad5561
We do not need those methods to be marked as slots and the KCMUtils classes like KPluginWidget also don't need it. Meaning it just results in more moc code being generated.
34 lines
671 B
C++
34 lines
671 B
C++
/**
|
|
* SPDX-FileCopyrightText: 2022 Yuchen Shi <bolshaya_schists@mail.gravitide.co>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
#ifndef CLIPBOARD_CONFIG_H
|
|
#define CLIPBOARD_CONFIG_H
|
|
|
|
#include "kcmplugin/kdeconnectpluginkcm.h"
|
|
|
|
namespace Ui
|
|
{
|
|
class ClipboardConfigUi;
|
|
}
|
|
|
|
class ClipboardConfig : public KdeConnectPluginKcm
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ClipboardConfig(QObject *parent, const QVariantList &);
|
|
~ClipboardConfig() override;
|
|
|
|
void save() override;
|
|
void load() override;
|
|
void defaults() override;
|
|
public Q_SLOTS:
|
|
void autoShareChanged();
|
|
|
|
private:
|
|
Ui::ClipboardConfigUi *m_ui;
|
|
};
|
|
|
|
#endif
|