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

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

23 lines
532 B
C
Raw Normal View History

// SPDX-FileCopyrightText: 2015 Marco Martin <mart@kde.org>
// SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <Plasma/Containment>
#include <QSortFilterProxyModel>
class HomeScreen : public Plasma::Containment
{
Q_OBJECT
public:
2022-04-24 11:44:41 +00:00
HomeScreen(QObject *parent, const KPluginMetaData &data, const QVariantList &args);
2018-12-31 03:13:55 +00:00
~HomeScreen() override;
2019-09-17 11:00:07 +00:00
void configChanged() override;
Q_SIGNALS:
void showingDesktopChanged(bool showingDesktop);
};