Warning, file /plasma/plasma-mobile/containments/homescreens/halcyon/homescreen.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
0002 // SPDX-License-Identifier: GPL-2.0-or-later
0003 
0004 #pragma once
0005 
0006 #include <Plasma/Containment>
0007 
0008 #include <applicationlistmodel.h>
0009 
0010 class HomeScreen : public Plasma::Containment
0011 {
0012     Q_OBJECT
0013     Q_PROPERTY(bool showingDesktop READ showingDesktop WRITE setShowingDesktop NOTIFY showingDesktopChanged)
0014 
0015 public:
0016     HomeScreen(QObject *parent, const KPluginMetaData &data, const QVariantList &args);
0017     ~HomeScreen() override;
0018 
0019     bool showingDesktop() const;
0020     void setShowingDesktop(bool showingDesktop);
0021 
0022 Q_SIGNALS:
0023     void showingDesktopChanged(bool showingDesktop);
0024 };