You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.7 KiB
64 lines
1.7 KiB
/* |
|
* Copyright (C) 2007 Ivan Cukic <ivan.cukic+kde@gmail.com> |
|
* |
|
* This program is free software; you can redistribute it and/or modify |
|
* it under the terms of the GNU General Public License either version 2, or |
|
* (at your option) any later version as published by the Free Software |
|
* Foundation. |
|
* |
|
* This program is distributed in the hope that it will be useful, |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
* GNU General Public License for more details |
|
* |
|
* You should have received a copy of the GNU General Public |
|
* License along with this program; if not, write to the |
|
* Free Software Foundation, Inc., |
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include <Plasma/DataEngine> |
|
|
|
class KDirWatch; |
|
|
|
/** |
|
* This class evaluates the basic expressions given in the interface. |
|
*/ |
|
class FileBrowserEngine : public Plasma::DataEngine |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
FileBrowserEngine(QObject *parent, const QVariantList &args); |
|
~FileBrowserEngine() override; |
|
|
|
protected: |
|
bool sourceRequestEvent(const QString &path) override; |
|
void init(); |
|
|
|
protected Q_SLOTS: |
|
void dirDirty(const QString &path); |
|
void dirCreated(const QString &path); |
|
void dirDeleted(const QString &path); |
|
|
|
private: |
|
enum EventType { |
|
INIT, |
|
DIRTY, |
|
CREATED, |
|
DELETED, |
|
}; |
|
enum ObjectType { |
|
NOTHING, |
|
FILE, |
|
DIRECTORY, |
|
}; |
|
|
|
KDirWatch *m_dirWatch; |
|
void updateData(const QString &path, EventType event); |
|
void clearData(const QString &path); |
|
|
|
// QMap < QString, QStringList > m_regiteredListeners; |
|
};
|
|
|