diff options
Diffstat (limited to 'FL/Fl_FormsBitmap.H')
| -rw-r--r-- | FL/Fl_FormsBitmap.H | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/FL/Fl_FormsBitmap.H b/FL/Fl_FormsBitmap.H index 33ea92a46..308a2eda9 100644 --- a/FL/Fl_FormsBitmap.H +++ b/FL/Fl_FormsBitmap.H @@ -33,6 +33,9 @@ #include "Fl_Bitmap.H" +/** + Forms compatibility Bitmap Image Widget +*/ class FL_EXPORT Fl_FormsBitmap : public Fl_Widget { Fl_Bitmap *b; protected: @@ -40,7 +43,9 @@ protected: public: Fl_FormsBitmap(Fl_Boxtype, int, int, int, int, const char * = 0); void set(int W, int H, const uchar *bits); + /** Sets a new bitmap. */ void bitmap(Fl_Bitmap *B) {b = B;} + /** Gets a the current associated Fl_Bitmap objects. */ Fl_Bitmap *bitmap() const {return b;} }; |
