shift-shell/kcms/mobileshell/kcm.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
535 B
C
Raw Normal View History

/**
* 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>
#include <KSharedConfig>
2023-03-18 17:53:52 +00:00
class KCMMobileShell : public KQuickManagedConfigModule
{
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;
};