mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
25 lines
550 B
C++
25 lines
550 B
C++
/**
|
|
* SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <KConfigGroup>
|
|
#include <KQuickAddons/ManagedConfigModule>
|
|
#include <KSharedConfig>
|
|
|
|
class KCMMobileShell : public KQuickAddons::ManagedConfigModule
|
|
{
|
|
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;
|
|
};
|