2022-02-13 04:23:57 +00:00
|
|
|
/**
|
|
|
|
|
* SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <KConfigGroup>
|
2023-03-18 17:53:52 +00:00
|
|
|
#include <KQuickManagedConfigModule>
|
2022-02-13 04:23:57 +00:00
|
|
|
#include <KSharedConfig>
|
|
|
|
|
|
2023-03-18 17:53:52 +00:00
|
|
|
class KCMMobileShell : public KQuickManagedConfigModule
|
2022-02-13 04:23:57 +00:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
KCMMobileShell(QObject *parent, const KPluginMetaData &data, const QVariantList &args);
|
|
|
|
|
virtual ~KCMMobileShell() override = default;
|
|
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
|
void navigationPanelEnabledChanged();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
KSharedConfig::Ptr m_config;
|
|
|
|
|
};
|