diff options
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_Bitmap.H | 4 | ||||
| -rw-r--r-- | FL/Fl_Device.H | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/FL/Fl_Bitmap.H b/FL/Fl_Bitmap.H index 196ad9fe4..a5a9b4590 100644 --- a/FL/Fl_Bitmap.H +++ b/FL/Fl_Bitmap.H @@ -33,6 +33,7 @@ struct Fl_Menu_Item; class FL_EXPORT Fl_Bitmap : public Fl_Image { friend class Fl_Quartz_Graphics_Driver; friend class Fl_GDI_Graphics_Driver; + friend class Fl_GDI_Printer_Graphics_Driver; friend class Fl_Xlib_Graphics_Driver; public: @@ -42,7 +43,8 @@ public: int alloc_array; private: - + int start(int XP, int YP, int WP, int HP, int &cx, int &cy, + int &X, int &Y, int &W, int &H); #if defined(__APPLE__) || defined(WIN32) /** for internal use */ void *id_; diff --git a/FL/Fl_Device.H b/FL/Fl_Device.H index 217fd468e..460fb278e 100644 --- a/FL/Fl_Device.H +++ b/FL/Fl_Device.H @@ -482,6 +482,7 @@ public: static const char *class_id; const char *class_name() {return class_id;}; void draw(Fl_Pixmap *pxm, int XP, int YP, int WP, int HP, int cx, int cy); + void draw(Fl_Bitmap *bm, int XP, int YP, int WP, int HP, int cx, int cy); }; #endif #if !(defined(__APPLE__) || defined(WIN32)) |
