summaryrefslogtreecommitdiff
path: root/src/Fl.cxx
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2016-04-06 20:30:28 +0000
committerManolo Gouy <Manolo>2016-04-06 20:30:28 +0000
commitf3462a2abe3d0a09dcd4ed99f0fb1b3385200ffc (patch)
treee2209c64183392c6c241d782f3f3d6264373c793 /src/Fl.cxx
parenta2eeca92f09617c10e6f2b6d15a33e19b73ff8bc (diff)
Rewrite Fl_get_key.cxx under the driver model.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11545 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl.cxx')
-rw-r--r--src/Fl.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Fl.cxx b/src/Fl.cxx
index 88934c23e..d1793cdce 100644
--- a/src/Fl.cxx
+++ b/src/Fl.cxx
@@ -1896,6 +1896,14 @@ void Fl::insertion_point_location(int x, int y, int height) { // sets window coo
Fl::screen_driver()->insertion_point_location(x, y, height);
}
+int Fl::event_key(int k) {
+ return system_driver()->event_key(k);
+}
+
+int Fl::get_key(int k) {
+ return system_driver()->get_key(k);
+}
+
//
// End of "$Id$".
//