summaryrefslogtreecommitdiffstats
path: root/krusader/krusaderapp.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-22 18:58:28 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-22 18:58:28 +0000
commit83b9bf0e3bfb1d842b10b80bbe749095b2c661a1 (patch)
treeb05b1793361693ae88106648c2a953bed988f423 /krusader/krusaderapp.h
downloadkrusader-83b9bf0e3bfb1d842b10b80bbe749095b2c661a1.tar.gz
krusader-83b9bf0e3bfb1d842b10b80bbe749095b2c661a1.zip
Added old KDE3 version of Krusader
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/krusader@1094427 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'krusader/krusaderapp.h')
-rw-r--r--krusader/krusaderapp.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/krusader/krusaderapp.h b/krusader/krusaderapp.h
new file mode 100644
index 0000000..2004147
--- /dev/null
+++ b/krusader/krusaderapp.h
@@ -0,0 +1,31 @@
+#ifndef KRUSADERAPP_H
+#define KRUSADERAPP_H
+
+#include <kapplication.h>
+#include "X11/Xlib.h"
+
+// declare a dummy kapplication, just to get the X focusin focusout events
+class KrusaderApp: public KApplication {
+ Q_OBJECT
+public:
+ KrusaderApp(): KApplication() {}
+ bool x11EventFilter ( XEvent *e ) {
+ switch (e->type) {
+ case FocusIn:
+ emit windowActive();
+ break;
+ case FocusOut:
+ emit windowInactive();
+ break;
+
+ }
+ //return false; // event should be processed normally
+ return KApplication::x11EventFilter(e);
+ }
+signals:
+ void windowActive();
+ void windowInactive();
+};
+
+
+#endif // KRUSADERAPP_H