File indexing completed on 2024-04-21 04:56:46

0001 /*
0002  * SPDX-FileCopyrightText: 2011 Alejandro Fiestas Olivares <afiestas@kde.org>
0003  * SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez <aleixpol@kde.org>
0004  *
0005  * SPDX-License-Identifier: GPL-2.0-or-later
0006  */
0007 
0008 #ifndef SENDFILEITEMACTION_H
0009 #define SENDFILEITEMACTION_H
0010 
0011 #include <KAbstractFileItemActionPlugin>
0012 #include <KFileItemListProperties>
0013 
0014 class QAction;
0015 class KFileItemListProperties;
0016 class QWidget;
0017 
0018 class SendFileItemAction : public KAbstractFileItemActionPlugin
0019 {
0020     Q_OBJECT
0021 public:
0022     SendFileItemAction(QObject *parent, const QVariantList &args); // TODO KF6 remove args
0023     QList<QAction *> actions(const KFileItemListProperties &fileItemInfos, QWidget *parentWidget) override;
0024 };
0025 
0026 #endif // SENDFILEITEMACTION_H