diff options
| author | Manolo Gouy <Manolo> | 2016-04-03 14:25:42 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2016-04-03 14:25:42 +0000 |
| commit | d292de92ef6b99762d149fd1effef42d26c86466 (patch) | |
| tree | 243159197199b6f4a5d47731f1c99a55eb7fa3e1 /FL | |
| parent | 7c8e3379428a73b98395b07106759d24f3118514 (diff) | |
Rewrite fl_scroll_area.cxx under the driver model.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11520 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_Window_Driver.H | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/FL/Fl_Window_Driver.H b/FL/Fl_Window_Driver.H index 0bcc5eca1..d2d485a52 100644 --- a/FL/Fl_Window_Driver.H +++ b/FL/Fl_Window_Driver.H @@ -149,7 +149,13 @@ public: static void default_icons(const Fl_RGB_Image *icons[], int count); // --- window printing helper - virtual void capture_titlebar_and_borders(Fl_Shared_Image*& top, Fl_Shared_Image*& left, Fl_Shared_Image*& bottom, Fl_Shared_Image*& right); + virtual void capture_titlebar_and_borders(Fl_Shared_Image*& top, Fl_Shared_Image*& left, + Fl_Shared_Image*& bottom, Fl_Shared_Image*& right); +#if defined(FL_PORTING) +# pragma message "FL_PORTING: implement scrolling of the screen contents" +#endif + virtual int scroll(int src_x, int src_y, int src_w, int src_h, int dest_x, int dest_y, + void (*draw_area)(void*, int,int,int,int), void* data) { return 0; } }; |
