KIO

kioexecd.h
1/*
2 This file is part of the KDE libraries
3 SPDX-FileCopyrightText: 2017 Elvis Angelaccio <elvis.angelaccio@kde.org>
4
5 SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
6*/
7
8#ifndef KIOEXECD_H
9#define KIOEXECD_H
10
11#include <KDEDModule>
12
13#include <QMap>
14#include <QTimer>
15#include <QUrl>
16
17class KDirWatch;
18
19class KIOExecd : public KDEDModule
20{
22 Q_CLASSINFO("D-Bus Interface", "org.kde.KIOExecd")
23
24public:
25 KIOExecd(QObject *parent, const QList<QVariant> &);
26 ~KIOExecd() override;
27
28public Q_SLOTS:
29 void watch(const QString &path, const QString &destUrl);
30
31private Q_SLOTS:
32 void slotDirty(const QString &path);
33 void slotDeleted(const QString &path);
34 void slotCreated(const QString &path);
35 void slotCheckDeletedFiles();
36
37private:
38 KDirWatch *m_watcher;
39 // temporary file and associated remote file
40 QMap<QString, QUrl> m_watched;
41 // temporary file and the last date it was removed
42 QMap<QString, QDateTime> m_deleted;
43 QTimer m_timer;
44};
45
46#endif
Q_CLASSINFO(Name, Value)
Q_OBJECTQ_OBJECT
Q_SLOTSQ_SLOTS
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:18:52 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.