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:
|
2023-06-10 08:50:37 +00:00
|
|
|
KCMMobileShell(QObject *parent, const KPluginMetaData &data);
|
2022-02-13 04:23:57 +00:00
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
|
void navigationPanelEnabledChanged();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
KSharedConfig::Ptr m_config;
|
|
|
|
|
};
|