diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2016-02-10 19:49:35 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2016-02-10 19:49:35 +0000 |
| commit | e83bc2527fd412bc235f1f8743659e31b12bdc31 (patch) | |
| tree | 8c807e8b0c7af5f8ec1c67da1eec8e17bf4ad963 /src/Fl.cxx | |
| parent | 478d6336200d18630abd0d77c512e28fb2b931d0 (diff) | |
Basic Screen Driver Structure. LIMBO!
Creating the basic structure for a screen driver system.
OS X works X11 and WinAPI are in limbo and will be fixed in the next hour or so.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11148 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl.cxx')
| -rw-r--r-- | src/Fl.cxx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Fl.cxx b/src/Fl.cxx index 9e421f0ff..52208b58f 100644 --- a/src/Fl.cxx +++ b/src/Fl.cxx @@ -46,6 +46,7 @@ #endif #include <FL/Fl.H> +#include <FL/Fl_Screen_Driver.H> #include <FL/Fl_Window.H> #include <FL/Fl_Tooltip.H> #include <FL/x.H> @@ -208,6 +209,21 @@ Fl_Window *Fl::modal_; // topmost modal() window char const * const Fl::clipboard_plain_text = "text/plain"; char const * const Fl::clipboard_image = "image"; + +// +// Drivers +// + +Fl_Screen_Driver *Fl::screen_driver_ = Fl_Screen_Driver::newScreenDriver(); + +Fl_Screen_Driver *Fl::screen_driver() +{ + if (!screen_driver_) + screen_driver_ = Fl_Screen_Driver::newScreenDriver(); + return screen_driver_; +} + + // // 'Fl::version()' - Return the API version number... // @@ -2350,6 +2366,8 @@ Fl_Widget_Tracker::~Fl_Widget_Tracker() } int Fl::use_high_res_GL_ = 0; + + // // End of "$Id$". // |
