shift-shell/containments/homescreens/halcyon/homescreen.h

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

27 lines
590 B
C
Raw Normal View History

// SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
2022-06-18 19:42:29 +00:00
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <Plasma/Containment>
#include "halcyonsettings.h"
2022-06-18 19:42:29 +00:00
class HomeScreen : public Plasma::Containment
{
Q_OBJECT
Q_PROPERTY(HalcyonSettings *settings READ settings CONSTANT)
2022-06-18 19:42:29 +00:00
public:
HomeScreen(QObject *parent, const KPluginMetaData &data, const QVariantList &args);
~HomeScreen() override;
HalcyonSettings *settings() const;
Q_SIGNALS:
void showingDesktopChanged(bool showingDesktop);
private:
HalcyonSettings *m_settings{nullptr};
2022-06-18 19:42:29 +00:00
};