2001-08-02 01:24:49 +04:00
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// "$Id$"
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|
2001-11-24 05:46:19 +03:00
|
|
|
// Shared image header file for the Fast Light Tool Kit (FLTK).
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|
2017-10-02 14:18:41 +03:00
|
|
|
// Copyright 1998-2017 by Bill Spitzak and others.
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// This library is free software. Distribution and use rights are outlined in
|
|
|
|
// the file "COPYING" which should have been included with this file. If this
|
|
|
|
// file is missing or damaged, see the license at:
|
|
|
|
//
|
|
|
|
// http://www.fltk.org/COPYING.php
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|
2005-04-16 04:13:17 +04:00
|
|
|
// Please report all bugs and problems on the following page:
|
|
|
|
//
|
|
|
|
// http://www.fltk.org/str.php
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|
|
|
|
|
2010-04-15 00:47:34 +04:00
|
|
|
/** \file
|
|
|
|
Fl_Shared_Image class. */
|
2008-09-16 11:26:22 +04:00
|
|
|
|
2001-08-02 01:24:49 +04:00
|
|
|
#ifndef Fl_Shared_Image_H
|
2001-11-24 05:46:19 +03:00
|
|
|
# define Fl_Shared_Image_H
|
2001-08-02 01:24:49 +04:00
|
|
|
|
2001-11-24 05:46:19 +03:00
|
|
|
# include "Fl_Image.H"
|
2001-08-02 01:24:49 +04:00
|
|
|
|
|
|
|
|
2002-03-29 14:59:56 +03:00
|
|
|
// Test function for adding new formats
|
|
|
|
typedef Fl_Image *(*Fl_Shared_Handler)(const char *name, uchar *header,
|
|
|
|
int headerlen);
|
|
|
|
|
2016-10-02 01:43:56 +03:00
|
|
|
// Shared images class.
|
2008-09-14 22:19:41 +04:00
|
|
|
/**
|
2016-10-02 01:43:56 +03:00
|
|
|
This class supports caching, loading, scaling, 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
|
|
|
|
formats such as BMP, GIF, JPEG, and PNG.
|
|
|
|
|
|
|
|
Images can be requested (loaded) with Fl_Shared_Image::get(), find(),
|
|
|
|
and some other methods. All images are cached in an internal list of
|
|
|
|
shared images and should be released when they are no longer needed.
|
|
|
|
A refcount is used to determine if a released image is to be destroyed
|
|
|
|
with delete.
|
|
|
|
|
|
|
|
\see Fl_Shared_Image::get()
|
|
|
|
\see Fl_Shared_Image::find()
|
|
|
|
\see Fl_Shared_Image::release()
|
2008-09-14 22:19:41 +04:00
|
|
|
*/
|
2002-06-29 01:04:37 +04:00
|
|
|
class FL_EXPORT Fl_Shared_Image : public Fl_Image {
|
2016-10-02 01:43:56 +03:00
|
|
|
|
2011-01-24 20:04:22 +03:00
|
|
|
friend class Fl_JPEG_Image;
|
|
|
|
friend class Fl_PNG_Image;
|
2016-09-12 15:02:38 +03:00
|
|
|
friend class Fl_Graphics_Driver;
|
|
|
|
|
2015-03-11 00:06:22 +03:00
|
|
|
private:
|
|
|
|
static Fl_RGB_Scaling scaling_algorithm_; // method used to rescale RGB source images
|
|
|
|
Fl_Image *scaled_image_;
|
2011-01-24 20:04:22 +03:00
|
|
|
protected:
|
2001-11-24 05:46:19 +03:00
|
|
|
|
|
|
|
static Fl_Shared_Image **images_; // Shared images
|
|
|
|
static int num_images_; // Number of shared images
|
|
|
|
static int alloc_images_; // Allocated shared images
|
2002-05-25 17:38:25 +04:00
|
|
|
static Fl_Shared_Handler *handlers_; // Additional format handlers
|
2002-03-29 14:59:56 +03:00
|
|
|
static int num_handlers_; // Number of format handlers
|
|
|
|
static int alloc_handlers_; // Allocated format handlers
|
2001-11-24 05:46:19 +03:00
|
|
|
|
|
|
|
const char *name_; // Name of image file
|
|
|
|
int original_; // Original image?
|
|
|
|
int refcount_; // Number of times this image has been used
|
|
|
|
Fl_Image *image_; // The image that is shared
|
|
|
|
int alloc_image_; // Was the image allocated?
|
|
|
|
|
|
|
|
static int compare(Fl_Shared_Image **i0, Fl_Shared_Image **i1);
|
|
|
|
|
|
|
|
// Use get() and release() to load/delete images in memory...
|
2002-08-14 20:19:48 +04:00
|
|
|
Fl_Shared_Image();
|
|
|
|
Fl_Shared_Image(const char *n, Fl_Image *img = 0);
|
|
|
|
virtual ~Fl_Shared_Image();
|
|
|
|
void add();
|
|
|
|
void update();
|
2001-11-24 05:46:19 +03:00
|
|
|
|
2015-03-11 00:06:22 +03:00
|
|
|
public:
|
2008-09-14 22:19:41 +04:00
|
|
|
/** Returns the filename of the shared image */
|
2001-11-24 05:46:19 +03:00
|
|
|
const char *name() { return name_; }
|
2017-10-02 14:18:41 +03:00
|
|
|
|
|
|
|
/** Returns the number of references of this shared image.
|
|
|
|
When reference is below 1, the image is deleted.
|
|
|
|
*/
|
2001-11-24 05:46:19 +03:00
|
|
|
int refcount() { return refcount_; }
|
2017-10-02 14:18:41 +03:00
|
|
|
|
|
|
|
/** Returns whether this is an original image.
|
|
|
|
Images loaded from a file or from memory are marked \p original as
|
|
|
|
opposed to images created as a copy of another image with different
|
|
|
|
size (width or height).
|
|
|
|
\note This is useful for debugging (rarely used in user code).
|
|
|
|
\since FLTK 1.4.0
|
|
|
|
*/
|
|
|
|
int original() { return original_; }
|
|
|
|
|
2001-11-24 05:46:19 +03:00
|
|
|
void release();
|
|
|
|
void reload();
|
|
|
|
|
|
|
|
virtual Fl_Image *copy(int W, int H);
|
|
|
|
Fl_Image *copy() { return copy(w(), h()); }
|
|
|
|
virtual void color_average(Fl_Color c, float i);
|
|
|
|
virtual void desaturate();
|
2017-08-30 20:44:09 +03:00
|
|
|
virtual void draw(int X, int Y, int W, int H, int cx = 0, int cy = 0);
|
2001-11-24 05:46:19 +03:00
|
|
|
void draw(int X, int Y) { draw(X, Y, w(), h(), 0, 0); }
|
2015-03-11 00:06:22 +03:00
|
|
|
void scale(int width, int height, int proportional = 1, int can_expand = 0);
|
2002-10-20 07:13:56 +04:00
|
|
|
virtual void uncache();
|
2001-08-02 01:24:49 +04:00
|
|
|
|
2016-10-02 01:43:56 +03:00
|
|
|
static Fl_Shared_Image *find(const char *name, int W = 0, int H = 0);
|
|
|
|
static Fl_Shared_Image *get(const char *name, int W = 0, int H = 0);
|
2015-03-11 00:06:22 +03:00
|
|
|
static Fl_Shared_Image *get(Fl_RGB_Image *rgb, int own_it = 1);
|
2002-07-15 01:25:39 +04:00
|
|
|
static Fl_Shared_Image **images();
|
|
|
|
static int num_images();
|
2002-05-25 17:38:25 +04:00
|
|
|
static void add_handler(Fl_Shared_Handler f);
|
|
|
|
static void remove_handler(Fl_Shared_Handler f);
|
2015-03-11 00:06:22 +03:00
|
|
|
/** 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
|
2017-01-02 12:48:23 +03:00
|
|
|
and then drawing the resized copy. This occurs, e.g., when drawing to screen under Linux
|
2015-03-11 00:06:22 +03:00
|
|
|
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.
|
2016-04-24 22:39:27 +03:00
|
|
|
\version 1.3.4
|
2015-03-11 00:06:22 +03:00
|
|
|
*/
|
|
|
|
static void scaling_algorithm(Fl_RGB_Scaling algorithm) {scaling_algorithm_ = algorithm; }
|
2001-08-02 01:24:49 +04:00
|
|
|
};
|
|
|
|
|
2002-06-29 01:04:37 +04:00
|
|
|
//
|
|
|
|
// The following function is provided in the fltk_images library and
|
|
|
|
// registers all of the "extra" image file formats that are not part
|
|
|
|
// of the core FLTK library...
|
|
|
|
//
|
|
|
|
|
2002-07-15 01:25:39 +04:00
|
|
|
FL_EXPORT extern void fl_register_images();
|
2002-06-29 01:04:37 +04:00
|
|
|
|
2001-11-24 05:46:19 +03:00
|
|
|
#endif // !Fl_Shared_Image_H
|
2001-08-02 01:24:49 +04:00
|
|
|
|
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// End of "$Id$"
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|