summaryrefslogtreecommitdiff
path: root/src/c_fl_event.cpp
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-08-06 13:34:40 +1000
committerJed Barber <jjbarber@y7mail.com>2017-08-06 13:34:40 +1000
commit577c8306c16b756ba1bf0106b300cc5dc8af21bc (patch)
tree11ae6b9ed8a4e14aa50d158b515f608dd885606a /src/c_fl_event.cpp
parente70e81e7f08105474a01858b38a7e27d028a1972 (diff)
Some mouse functions added to FLTK.Event
Diffstat (limited to 'src/c_fl_event.cpp')
-rw-r--r--src/c_fl_event.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/c_fl_event.cpp b/src/c_fl_event.cpp
index 526ed44..17f3ee8 100644
--- a/src/c_fl_event.cpp
+++ b/src/c_fl_event.cpp
@@ -8,3 +8,26 @@ int fl_event_key() {
return Fl::event_key();
}
+
+
+
+int fl_event_x() {
+ return Fl::event_x();
+}
+
+int fl_event_x_root() {
+ return Fl::event_x_root();
+}
+
+int fl_event_y() {
+ return Fl::event_y();
+}
+
+int fl_event_y_root() {
+ return Fl::event_y_root();
+}
+
+int fl_event_is_click() {
+ return Fl::event_is_click();
+}
+