summaryrefslogtreecommitdiff
path: root/navit/graphics/qt5/event_qt5.h
diff options
context:
space:
mode:
authorpohlinkzei <pohlinkzei@gmx-topmail.de>2017-02-28 15:36:42 +0100
committerpohlinkzei <pohlinkzei@gmx-topmail.de>2017-02-28 15:36:42 +0100
commitd6361fac800b3bae8d8b37920fddb2bbedfc8c1a (patch)
treefcb7f52123710f6df61d805c68d6bbf47e050733 /navit/graphics/qt5/event_qt5.h
parent98702c661f58978f56b1e6d10defb322f7ad4252 (diff)
parente1b8340c662516353028e05abe0570fc4ae7bb9a (diff)
downloadnavit-pr-5-hide-keys.tar.gz
Merge remote-tracking branch 'navit/trunk' into pr-5-hide-keyspr-5-hide-keys
Diffstat (limited to 'navit/graphics/qt5/event_qt5.h')
-rw-r--r--navit/graphics/qt5/event_qt5.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/navit/graphics/qt5/event_qt5.h b/navit/graphics/qt5/event_qt5.h
new file mode 100644
index 000000000..f999d3a46
--- /dev/null
+++ b/navit/graphics/qt5/event_qt5.h
@@ -0,0 +1,18 @@
+#include <glib.h>
+#include <QObject>
+
+class qt5_navit_timer : public QObject
+{
+ Q_OBJECT
+public:
+ qt5_navit_timer(QObject * parent = 0);
+ GHashTable *timer_type;
+ GHashTable *timer_callback;
+ GHashTable *watches;
+protected:
+ void timerEvent(QTimerEvent * event);
+};
+
+
+void
+qt5_event_init(void);