diff options
| author | Manolo Gouy <Manolo> | 2016-03-23 20:42:13 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2016-03-23 20:42:13 +0000 |
| commit | abc12cd376a615af7182b81a435fa2ccb63e4e5d (patch) | |
| tree | 58f898451ade103a102e0b7a712e1a1f85490b24 /FL/Fl_Window_Driver.H | |
| parent | d3b33cdaeaa17d5ee1f7208d467fd2edbb617c16 (diff) | |
Rewrite Fl_Window::show(int argc, char **argv) under the driver model.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11413 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Window_Driver.H')
| -rw-r--r-- | FL/Fl_Window_Driver.H | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/FL/Fl_Window_Driver.H b/FL/Fl_Window_Driver.H index 94a25c9fa..416a8c5f6 100644 --- a/FL/Fl_Window_Driver.H +++ b/FL/Fl_Window_Driver.H @@ -98,6 +98,8 @@ public: virtual void iconize() {} virtual void decoration_sizes(int *top, int *left, int *right, int *bottom) { *top = *left = *right = *bottom = 0; } + virtual void show_with_args_begin() {} + virtual void show_with_args_end(int argc, char **argv) {} // --- window shape stuff void shape_pixmap_(Fl_Image* pixmap); // TODO: check @@ -111,7 +113,7 @@ public: virtual void free_icons() {} // TODO: check // --- 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); // TODO: check + virtual void capture_titlebar_and_borders(Fl_Shared_Image*& top, Fl_Shared_Image*& left, Fl_Shared_Image*& bottom, Fl_Shared_Image*& right); }; |
