summaryrefslogtreecommitdiff
path: root/libopie2/opiecore/ofilenotify.h
authormickeyl <mickeyl>2004-04-20 14:34:17 (UTC)
committer mickeyl <mickeyl>2004-04-20 14:34:17 (UTC)
commit3fb65729e122d85a27b2a6194f96e37eaed3edd1 (patch) (unidiff)
tree6168c3efa9a41dc5d56669ce0f36f58196b3dabb /libopie2/opiecore/ofilenotify.h
parentccba33667c0152cb58a6d0502170b388889571c9 (diff)
downloadopie-3fb65729e122d85a27b2a6194f96e37eaed3edd1.zip
opie-3fb65729e122d85a27b2a6194f96e37eaed3edd1.tar.gz
opie-3fb65729e122d85a27b2a6194f96e37eaed3edd1.tar.bz2
2nd milestone reached: Notification now works with deleted, renamed, and
inode-modified files. Next milestone: Make it work for files which are not yet there (DN_CREATE)
Diffstat (limited to 'libopie2/opiecore/ofilenotify.h') (more/less context) (show whitespace changes)
-rw-r--r--libopie2/opiecore/ofilenotify.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/libopie2/opiecore/ofilenotify.h b/libopie2/opiecore/ofilenotify.h
index 5315896..13b5a6b 100644
--- a/libopie2/opiecore/ofilenotify.h
+++ b/libopie2/opiecore/ofilenotify.h
@@ -76,7 +76,7 @@ class OFileNotification : public QObject
76 76
77 protected: 77 protected:
78 bool activate(); 78 bool activate();
79 bool hasChanged(); 79 virtual bool hasChanged();
80 static bool registerSignalHandler(); 80 static bool registerSignalHandler();
81 static void unregisterSignalHandler(); 81 static void unregisterSignalHandler();
82 static void __signalHandler( int sig, siginfo_t *si, void *data ); 82 static void __signalHandler( int sig, siginfo_t *si, void *data );
@@ -90,6 +90,14 @@ class OFileNotification : public QObject
90 struct stat _stat; 90 struct stat _stat;
91}; 91};
92 92
93
94class ODirectoryNotification : public OFileNotification
95{
96 public:
97 virtual bool hasChanged() { return true; };
98};
99
100
93} 101}
94} 102}
95 103