summaryrefslogtreecommitdiffstats
path: root/src/ui_input.h
diff options
context:
space:
mode:
authorOlliver Schinagl <o.schinagl@ultimaker.com>2015-07-06 05:49:50 (GMT)
committerOlliver Schinagl <o.schinagl@ultimaker.com>2015-07-06 12:07:31 (GMT)
commit0ab6f4f9f4c2af88e4bbd10b0e11b1516577d319 (patch)
treebe0e67637b190e5c930f93a80a343f8e0d5c8b44 /src/ui_input.h
parentf217213dccab10e8af0953f48a7671855326c871 (diff)
downloadeulogium-0ab6f4f9f4c2af88e4bbd10b0e11b1516577d319.zip
eulogium-0ab6f4f9f4c2af88e4bbd10b0e11b1516577d319.tar.gz
eulogium-0ab6f4f9f4c2af88e4bbd10b0e11b1516577d319.tar.bz2
archival commitHEADmaster
Diffstat (limited to 'src/ui_input.h')
-rw-r--r--src/ui_input.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/ui_input.h b/src/ui_input.h
new file mode 100644
index 0000000..d036055
--- /dev/null
+++ b/src/ui_input.h
@@ -0,0 +1,19 @@
+/*
+ * functions, callbacks and data types for user input
+ *
+ * Copyright (c) 2015 Ultimaker B.V.
+ * Author: Olliver Schinagl <o.schinagl@ultimaker.com>
+ *
+ * SPDX-License-Identifier: AGPL-3.0+
+ */
+
+#ifndef _UI_INPUT_H
+#define _UI_INPUT_H
+
+extern int INPUT_MOUSE_WHEEL_UP;
+extern int INPUT_MOUSE_WHEEL_DOWN;
+
+void input_mouse_wheel_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_info);
+void input_init(void);
+
+#endif /* _UI_INPUT_H */