46   int start(
int XP, 
int YP, 
int WP, 
int HP, 
int &cx, 
int &cy, 
    47             int &X, 
int &Y, 
int &W, 
int &H);
    48 #if defined(__APPLE__) || defined(WIN32)    54 #endif // __APPLE__ || WIN32    60     Fl_Image(W,H,0), array(bits), alloc_array(0), id_(0) {
data((
const char **)&array, 1);}
    63     Fl_Image(W,H,0), array((const 
uchar *)bits), alloc_array(0), id_(0) {
data((
const char **)&array, 1);}
    67   virtual void draw(
int X, 
int Y, 
int W, 
int H, 
int cx=0, 
int cy=0);
    68   void draw(
int X, 
int Y) {
draw(X, Y, 
w(), 
h(), 0, 0);}
 
int h() const
 Returns the current image height in pixels. 
Definition: Fl_Image.H:115
virtual void label(Fl_Widget *w)
The label() methods are an obsolete way to set the image attribute of a widget or menu item...
Definition: Fl_Image.cxx:127
const char *const  * data() const
 Returns a pointer to the current image data array. 
Definition: Fl_Image.H:138
int alloc_array
Non-zero if array points to bitmap data allocated internally. 
Definition: Fl_Bitmap.H:43
 The Mac OS X-specific graphics class. 
Definition: Fl_Device.H:421
 Base class for image caching and drawing. 
Definition: Fl_Image.H:55
Fl_Image, Fl_RGB_Image classes. 
int w() const
 Returns the current image width in pixels. 
Definition: Fl_Image.H:111
virtual void draw(int X, int Y, int W, int H, int cx=0, int cy=0)
 Draws the image with a bounding box. 
Definition: Fl_Image.cxx:66
Fl_Image * copy()
 The copy() method creates a copy of the specified image. 
Definition: Fl_Image.H:150
 The Xlib-specific graphics class. 
Definition: Fl_Device.H:507
Fl_Bitmap(const char *bits, int W, int H)
The constructors create a new bitmap from the specified bitmap data. 
Definition: Fl_Bitmap.H:62
const uchar * array
pointer to raw bitmap data 
Definition: Fl_Bitmap.H:41
The Fl_Bitmap class supports caching and drawing of mono-color (bitmap) images. 
Definition: Fl_Bitmap.H:33
virtual void uncache()
If the image has been cached for display, delete the cache data. 
Definition: Fl_Image.cxx:63
 The graphics driver used when printing on MSWindows. 
Definition: Fl_Device.H:492
 The MSWindows-specific graphics class. 
Definition: Fl_Device.H:459
unsigned char uchar
unsigned char 
Definition: fl_types.h:30
Fl_Bitmap(const uchar *bits, int W, int H)
The constructors create a new bitmap from the specified bitmap data. 
Definition: Fl_Bitmap.H:59