2023-03-14 02:26:52 +00:00
|
|
|
/*
|
|
|
|
|
SPDX-FileCopyrightText: 2020 Tobias Fella <fella@posteo.de>
|
|
|
|
|
|
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <KLocalizedString>
|
|
|
|
|
#include <KPluginFactory>
|
|
|
|
|
|
2023-06-10 08:53:50 +00:00
|
|
|
#include <KQuickConfigModule>
|
2023-03-14 02:26:52 +00:00
|
|
|
|
2023-06-10 08:53:50 +00:00
|
|
|
class HotspotSettings : public KQuickConfigModule
|
2023-03-14 02:26:52 +00:00
|
|
|
{
|
2023-06-10 08:53:50 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
HotspotSettings(QObject *parent, const KPluginMetaData &metaData)
|
|
|
|
|
: KQuickConfigModule(parent, metaData)
|
|
|
|
|
{
|
2023-12-17 02:11:45 +00:00
|
|
|
setButtons({});
|
2023-06-10 08:53:50 +00:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
K_PLUGIN_CLASS_WITH_JSON(HotspotSettings, "kcm_mobile_hotspot.json")
|
2023-03-14 02:26:52 +00:00
|
|
|
|
|
|
|
|
#include "hotspotsettings.moc"
|