mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 23:32:17 +00:00
27 lines
440 B
C++
27 lines
440 B
C++
/*
|
|
SPDX-FileCopyrightText: 2009 Chani Armitage <chani@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <plasma/containmentactions.h>
|
|
|
|
class QAction;
|
|
|
|
class Paste : public Plasma::ContainmentActions
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Paste(QObject *parent, const QVariantList &args);
|
|
|
|
QList<QAction *> contextualActions() override;
|
|
|
|
private Q_SLOTS:
|
|
void doPaste();
|
|
|
|
private:
|
|
QAction *m_action;
|
|
};
|