diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2016-03-08 00:35:00 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2016-03-08 00:35:00 +0000 |
| commit | 00750d4c333a304366a1adbd8780f9f44c9cdafb (patch) | |
| tree | a95aad533893c6f7ca4dad9e2145e0925ac0192a /FL/Fl_Window_Driver.H | |
| parent | b73bf4a73eeda279042883139106eacbe4b3d791 (diff) | |
Add very basic graphics support to PicoSDL.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11311 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Window_Driver.H')
| -rw-r--r-- | FL/Fl_Window_Driver.H | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/FL/Fl_Window_Driver.H b/FL/Fl_Window_Driver.H index 9f938606f..e252d22bf 100644 --- a/FL/Fl_Window_Driver.H +++ b/FL/Fl_Window_Driver.H @@ -41,6 +41,9 @@ public: virtual ~Fl_Window_Driver(); static Fl_Window_Driver *newWindowDriver(Fl_Window *); + virtual Fl_X *makeWindow() { /* FIXME: move Fl_X::make(Fl_Window*) here for OSX, MSWin, and X11 */ return 0; } + virtual void flush() { /* FIXME: move Fl_X::flush() here for OSX, MSWin, and X11 */ } + virtual void take_focus() { } virtual int double_flush(int eraseoverlay); virtual void destroy_double_buffer(); |
