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

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

19 lines
403 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>
class HomeScreen : public Plasma::Containment
{
Q_OBJECT
public:
HomeScreen(QObject *parent, const KPluginMetaData &data, const QVariantList &args);
~HomeScreen() override;
Q_SIGNALS:
void showingDesktopChanged(bool showingDesktop);
2022-06-18 19:42:29 +00:00
};