diff options
Diffstat (limited to 'src/itemactions/movetonewfolderitemaction.h')
| -rw-r--r-- | src/itemactions/movetonewfolderitemaction.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/itemactions/movetonewfolderitemaction.h b/src/itemactions/movetonewfolderitemaction.h new file mode 100644 index 000000000..e690a35e1 --- /dev/null +++ b/src/itemactions/movetonewfolderitemaction.h @@ -0,0 +1,28 @@ +/* + * SPDX-FileCopyrightText: 2024 Ahmet Hakan Çelik <[email protected]> + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#ifndef MOVETONEWFOLDERITEMACTION_H +#define MOVETONEWFOLDERITEMACTION_H + +#include <KAbstractFileItemActionPlugin> +#include <KFileItemListProperties> + +class QAction; +class QWidget; + +class KNewFileMenu; + +class MoveToNewFolderItemAction : public KAbstractFileItemActionPlugin +{ + Q_OBJECT + +public: + MoveToNewFolderItemAction(QObject *parent); + + QList<QAction *> actions(const KFileItemListProperties &fileItemInfos, QWidget *parentWidget) override; +}; + +#endif // MOVETONEWFOLDERITEMACTION_H |
