nextcloud-desktop/src/mirall/folderwatcher_win.h

63 lines
1.4 KiB
C
Raw Normal View History

2012-12-04 20:46:44 +04:00
/*
* Copyright (C) by Daniel Molkentin <danimo@owncloud.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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.
*/
#ifndef MIRALL_FOLDERWATCHER_WIN_H
#define MIRALL_FOLDERWATCHER_WIN_H
#include <QThread>
2012-12-06 19:26:27 +04:00
#include <windows.h>
2012-12-04 20:46:44 +04:00
namespace Mirall {
class FolderWatcher;
2012-12-04 20:46:44 +04:00
// watcher thread
2012-12-04 20:46:44 +04:00
class WatcherThread : public QThread {
Q_OBJECT
public:
WatcherThread(const QString &path) :
2012-12-06 19:26:27 +04:00
QThread(), _path(path), _handle(0) {}
2012-12-04 20:46:44 +04:00
2012-12-06 19:26:27 +04:00
~WatcherThread();
protected:
void run();
2012-12-04 20:46:44 +04:00
signals:
2012-12-06 19:26:27 +04:00
void changed(const QString &path);
2012-12-04 20:46:44 +04:00
private:
QString _path;
2012-12-06 19:26:27 +04:00
HANDLE _handle;
};
2012-12-04 20:46:44 +04:00
class FolderWatcherPrivate : public QObject {
Q_OBJECT
public:
FolderWatcherPrivate(FolderWatcher *p, const QString& path);
~FolderWatcherPrivate();
void addPath(const QString &) {}
void removePath(const QString &) {}
private:
FolderWatcher *_parent;
WatcherThread *_thread;
};
2012-12-04 20:46:44 +04:00
}
#endif // MIRALL_FOLDERWATCHER_WIN_H