shift-shell/containments/taskpanel/taskpanel.h

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

90 lines
2.4 KiB
C
Raw Normal View History

2021-03-01 20:03:25 +00:00
/*
* SPDX-FileCopyrightText: 2015 Marco Martin <mart@kde.org>
*
2021-03-01 20:03:25 +00:00
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef TASKPANEL_H
#define TASKPANEL_H
#include <Plasma/Containment>
class OutputsModel;
class QAbstractItemModel;
namespace KWayland
{
namespace Client
{
class Output;
class PlasmaWindowManagement;
class PlasmaWindow;
class PlasmaShell;
class PlasmaShellSurface;
class Surface;
}
}
class TaskPanel : public Plasma::Containment
{
Q_OBJECT
Q_PROPERTY(bool showDesktop READ isShowingDesktop WRITE requestShowingDesktop NOTIFY showingDesktopChanged)
2020-07-23 11:47:40 +00:00
Q_PROPERTY(bool allMinimized READ allMinimized NOTIFY allMinimizedChanged)
Q_PROPERTY(bool hasCloseableActiveWindow READ hasCloseableActiveWindow NOTIFY hasCloseableActiveWindowChanged)
Q_PROPERTY(QWindow *panel READ panel WRITE setPanel NOTIFY panelChanged)
Q_PROPERTY(Plasma::Types::Location location READ location WRITE setLocation NOTIFY locationChanged)
Q_PROPERTY(QAbstractItemModel *outputs READ outputs CONSTANT)
public:
TaskPanel(QObject *parent, const QVariantList &args);
2018-12-31 03:13:55 +00:00
~TaskPanel() override;
QWindow *panel();
void setPanel(QWindow *panel);
Q_INVOKABLE void closeActiveWindow();
bool isShowingDesktop() const
{
return m_showingDesktop;
}
void requestShowingDesktop(bool showingDesktop);
2020-07-23 11:47:40 +00:00
bool allMinimized() const
{
return m_allMinimized;
}
bool hasCloseableActiveWindow() const;
QAbstractItemModel *outputs() const;
Q_INVOKABLE void sendWindowToOutput(const QString &uuid, KWayland::Client::Output *output);
public Q_SLOTS:
void forgetActiveWindow();
Q_SIGNALS:
void showingDesktopChanged(bool);
void hasCloseableActiveWindowChanged();
void panelChanged();
2020-07-23 11:47:40 +00:00
void allMinimizedChanged();
void locationChanged();
private:
void initWayland();
void updateActiveWindow();
2017-09-14 11:01:07 +00:00
void updatePanelVisibility();
2020-07-23 11:47:40 +00:00
bool m_showingDesktop = false;
bool m_allMinimized = true;
QWindow *m_panel = nullptr;
KWayland::Client::PlasmaShellSurface *m_shellSurface = nullptr;
KWayland::Client::Surface *m_surface = nullptr;
KWayland::Client::PlasmaShell *m_shellInterface = nullptr;
KWayland::Client::PlasmaWindowManagement *m_windowManagement = nullptr;
QPointer<KWayland::Client::PlasmaWindow> m_activeWindow;
QTimer *m_activeTimer;
OutputsModel *m_outputsModel;
};
#endif