File indexing completed on 2024-05-12 05:48:11

0001 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0002 // SPDX-FileCopyrightText: 2022 Harald Sitter <sitter@kde.org>
0003 
0004 #pragma once
0005 
0006 #include <QUrl>
0007 
0008 #include <KIO/Job>
0009 
0010 #include "busobject.h"
0011 
0012 class RenameCommand : public BusObject
0013 {
0014     Q_OBJECT
0015     Q_CLASSINFO("D-Bus Interface", "org.kde.kio.admin.RenameCommand")
0016 public:
0017     explicit RenameCommand(const QUrl &src,
0018                            const QUrl &dst,
0019                            KIO::JobFlags flags,
0020                            const QString &remoteService,
0021                            const QDBusObjectPath &objectPath,
0022                            QObject *parent = nullptr);
0023 
0024 public Q_SLOTS:
0025     void start();
0026 
0027 Q_SIGNALS:
0028     void result(int error, const QString &errorString);
0029 
0030 private:
0031     const QUrl m_src;
0032     const QUrl m_dst;
0033     const KIO::JobFlags m_flags;
0034 };