mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
19 lines
375 B
C++
19 lines
375 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2015 Marco Martin <mart@kde.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <Plasma/Containment>
|
|
|
|
class TaskPanel : public Plasma::Containment
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TaskPanel(QObject *parent, const KPluginMetaData &data, const QVariantList &args);
|
|
|
|
Q_INVOKABLE void triggerTaskSwitcher() const;
|
|
};
|