diff options
Diffstat (limited to 'FL/Fl_Shared_Image.H')
| -rw-r--r-- | FL/Fl_Shared_Image.H | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/FL/Fl_Shared_Image.H b/FL/Fl_Shared_Image.H index a62f4db97..9b5dad13d 100644 --- a/FL/Fl_Shared_Image.H +++ b/FL/Fl_Shared_Image.H @@ -31,7 +31,7 @@ typedef Fl_Image *(*Fl_Shared_Handler)(const char *name, uchar *header, // Shared images class. /** - This class supports caching, loading, scaling, and drawing of image files. + This class supports caching, loading, and drawing of image files. Most applications will also want to link against the fltk_images library and call the fl_register_images() function to support standard image @@ -54,9 +54,6 @@ class FL_EXPORT Fl_Shared_Image : public Fl_Image { friend class Fl_PNG_Image; friend class Fl_Graphics_Driver; -private: - static Fl_RGB_Scaling scaling_algorithm_; // method used to rescale RGB source images - Fl_Image *scaled_image_; protected: static Fl_Shared_Image **images_; // Shared images @@ -108,7 +105,6 @@ public: virtual void desaturate(); virtual void draw(int X, int Y, int W, int H, int cx = 0, int cy = 0); void draw(int X, int Y) { draw(X, Y, w(), h(), 0, 0); } - void scale(int width, int height, int proportional = 1, int can_expand = 0); virtual void uncache(); static Fl_Shared_Image *find(const char *name, int W = 0, int H = 0); @@ -118,15 +114,6 @@ public: static int num_images(); static void add_handler(Fl_Shared_Handler f); static void remove_handler(Fl_Shared_Handler f); - /** Sets what algorithm is used when resizing a source image. - The default algorithm is FL_RGB_SCALING_BILINEAR. - Drawing an Fl_Shared_Image is sometimes performed by first resizing the source image - and then drawing the resized copy. This occurs, e.g., when drawing to screen under Linux - after having called Fl_Shared_Image::scale(). - This function controls what method is used when the image to be resized is an Fl_RGB_Image. - \version 1.3.4 - */ - static void scaling_algorithm(Fl_RGB_Scaling algorithm) {scaling_algorithm_ = algorithm; } }; // |
