┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/itemactions/movetonewfolderitemaction.h
blob: e690a35e1dc48945f902b3dc6fbb67ebcb3add03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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