You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
446 B
26 lines
446 B
/* |
|
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 *const m_action; |
|
};
|
|
|