3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-07 23:03:06 +00:00

27 lines
440 B
C
Raw Normal View History

2022-03-05 22:41:29 +05:00
/*
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;
};