summaryrefslogtreecommitdiff
path: root/src/Fl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Fl.cxx')
-rw-r--r--src/Fl.cxx12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Fl.cxx b/src/Fl.cxx
index bdd68d9f9..9a4dda794 100644
--- a/src/Fl.cxx
+++ b/src/Fl.cxx
@@ -1920,6 +1920,18 @@ int Fl::get_key(int k) {
return system_driver()->get_key(k);
}
+void Fl::get_mouse(int &x, int &y) {
+ Fl::screen_driver()->get_mouse(x, y);
+}
+
+const char * fl_filename_name(const char *name) {
+ return Fl::system_driver()->filename_name(name);
+}
+
+void Fl::copy(const char *stuff, int len, int clipboard, const char *type) {
+ Fl::system_driver()->copy(stuff, len, clipboard, type);
+}
+
//
// End of "$Id$".
//