diff options
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_Copy_Surface.H | 1 | ||||
| -rw-r--r-- | FL/Fl_Paged_Device.H | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/FL/Fl_Copy_Surface.H b/FL/Fl_Copy_Surface.H index aa2af3ed9..6b3f50799 100644 --- a/FL/Fl_Copy_Surface.H +++ b/FL/Fl_Copy_Surface.H @@ -76,6 +76,7 @@ public: ~Fl_Copy_Surface(); void set_current(); void draw(Fl_Widget* widget, int delta_x = 0, int delta_y = 0); + void draw_decorated_window(Fl_Window* win, int delta_x = 0, int delta_y = 0); /** Returns the pixel width of the copy surface */ int w() { return width; } /** Returns the pixel height of the copy surface */ diff --git a/FL/Fl_Paged_Device.H b/FL/Fl_Paged_Device.H index 48367fab1..5869018b5 100644 --- a/FL/Fl_Paged_Device.H +++ b/FL/Fl_Paged_Device.H @@ -36,6 +36,10 @@ or Fl_PostScript_File_Device instead. */ class FL_EXPORT Fl_Paged_Device : public Fl_Surface_Device { +#ifndef __APPLE__ + friend class Fl_Copy_Surface; + void draw_decorated_window(Fl_Window *win, int x_offset, int y_offset, Fl_Surface_Device *toset); +#endif public: /** \brief Possible page formats. |
