diff options
| author | Manolo Gouy <Manolo> | 2016-03-27 07:47:52 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2016-03-27 07:47:52 +0000 |
| commit | 2fd4dde9f5d682898b7fc387bb364fff2febf8fb (patch) | |
| tree | 1d3ccbc3c7bea37356c6c54df8784d68c1f618a5 /src/Fl_Window_Driver.cxx | |
| parent | 5f14fc3e9b81d082966665209c4246cbdfee0005 (diff) | |
Rewrite Fl_Menu_Window class under the driver model.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11441 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Window_Driver.cxx')
| -rw-r--r-- | src/Fl_Window_Driver.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Fl_Window_Driver.cxx b/src/Fl_Window_Driver.cxx index 7cb42cbba..acb00712c 100644 --- a/src/Fl_Window_Driver.cxx +++ b/src/Fl_Window_Driver.cxx @@ -49,12 +49,16 @@ int Fl_Window_Driver::fullscreen_screen_top() {return pWindow->fullscreen_screen int Fl_Window_Driver::fullscreen_screen_bottom() {return pWindow->fullscreen_screen_bottom;} int Fl_Window_Driver::fullscreen_screen_left() {return pWindow->fullscreen_screen_left;} int Fl_Window_Driver::fullscreen_screen_right() {return pWindow->fullscreen_screen_right;} +void Fl_Window_Driver::current(Fl_Window *c) {pWindow->current_ = c;} + unsigned char Fl_Window_Driver::size_range_set() {return pWindow->size_range_set;} void Fl_Window_Driver::flush_single() { pWindow->Fl_Window::flush(); } +void Fl_Window_Driver::flush_menu() { pWindow->Fl_Window::flush(); } + void Fl_Window_Driver::draw() { pWindow->draw(); } void Fl_Window_Driver::make_current() { } |
