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/UDSEntry>
0009 
0010 #include "busobject.h"
0011 
0012 class StatCommand : public BusObject
0013 {
0014     Q_OBJECT
0015     Q_CLASSINFO("D-Bus Interface", "org.kde.kio.admin.StatCommand")
0016 public:
0017     explicit StatCommand(const QUrl &url, const QString &remoteService, const QDBusObjectPath &objectPath, QObject *parent = nullptr);
0018 
0019 public Q_SLOTS:
0020     void start();
0021 
0022 Q_SIGNALS:
0023     void statEntry(const KIO::UDSEntry &entry);
0024     void result(int error, const QString &errorString);
0025 
0026 private:
0027     QUrl m_url;
0028 };