diff options
| author | Manolo Gouy <Manolo> | 2016-03-23 14:36:58 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2016-03-23 14:36:58 +0000 |
| commit | affdcdb525b3a606115b3a6444f0ab7dcc4b48ac (patch) | |
| tree | 8ea7b48838875022aae56edd038910399b517fd7 /src/Fl_Window_Driver.cxx | |
| parent | 979740ce91525cc301a9173731d6aaf3004a6c88 (diff) | |
Rewrite Fl_Window::fullscreen_x() under the driver model.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11407 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Window_Driver.cxx')
| -rw-r--r-- | src/Fl_Window_Driver.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Fl_Window_Driver.cxx b/src/Fl_Window_Driver.cxx index f9dc31c79..6122d69d4 100644 --- a/src/Fl_Window_Driver.cxx +++ b/src/Fl_Window_Driver.cxx @@ -43,6 +43,11 @@ int Fl_Window_Driver::maxh() {return pWindow->maxh;} void Fl_Window_Driver::force_position(int c) { pWindow->force_position(c); } void Fl_Window_Driver::x(int X) {pWindow->x(X); } void Fl_Window_Driver::y(int Y) {pWindow->y(Y); } +int Fl_Window_Driver::fullscreen_screen_top() {return pWindow->fullscreen_screen_top;} +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;} + unsigned char Fl_Window_Driver::size_range_set() {return pWindow->size_range_set;} |
