summaryrefslogtreecommitdiff
path: root/libopie2/opiecore/ofilenotify.h
Side-by-side diff
Diffstat (limited to 'libopie2/opiecore/ofilenotify.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/ofilenotify.h36
1 files changed, 28 insertions, 8 deletions
diff --git a/libopie2/opiecore/ofilenotify.h b/libopie2/opiecore/ofilenotify.h
index 638eb6c..a14842a 100644
--- a/libopie2/opiecore/ofilenotify.h
+++ b/libopie2/opiecore/ofilenotify.h
@@ -32,4 +32,5 @@ _;:,     .>    :=|. This program is free software; you can
/* QT */
-#include <qstring.h>
#include <qobject.h>
+#include <qsignal.h>
+#include <qstring.h>
@@ -51,10 +52,26 @@ enum OFileNotificationType { Single = 0x0000000,
-class OFileNotifier : public QObject
+class OFileNotification : public QObject
{
+ Q_OBJECT
+
public:
- static void singleShot( const QString& path,
- QObject *receiver, const char *member,
- OFileNotificationType type = Modify );
+ OFileNotification( QObject* parent = 0, const char* name = 0 );
+ ~OFileNotification();
+
+ static void singleShot( const QString& path, QObject* receiver, const char* member, OFileNotificationType type = Modify );
+
+ int start( const QString& path, bool sshot = false, OFileNotificationType type = Modify );
+ void stop();
+
+ OFileNotificationType type() const;
+ QString path() const;
+ int fileno() const;
+ bool isActive() const;
+
+ signals:
+ void triggered();
+
protected:
- static void registerSignalHandler();
+ void activate();
+ static bool registerSignalHandler();
static void unregisterSignalHandler();
@@ -63,4 +80,7 @@ class OFileNotifier : public QObject
private:
- OFileNotifier();
- ~OFileNotifier();
+ QString _path;
+ OFileNotificationType _type;
+ QSignal _signal;
+ int _fd;
+ bool _active;
};