You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
3.8KB

  1. //
  2. // "$Id: Fl_Shared_Image.H 8306 2011-01-24 17:04:22Z matt $"
  3. //
  4. // Shared image header file for the Fast Light Tool Kit (FLTK).
  5. //
  6. // Copyright 1998-2010 by Bill Spitzak and others.
  7. //
  8. // This library is free software; you can redistribute it and/or
  9. // modify it under the terms of the GNU Library General Public
  10. // License as published by the Free Software Foundation; either
  11. // version 2 of the License, or (at your option) any later version.
  12. //
  13. // This library is distributed in the hope that it will be useful,
  14. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. // Library General Public License for more details.
  17. //
  18. // You should have received a copy of the GNU Library General Public
  19. // License along with this library; if not, write to the Free Software
  20. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  21. // USA.
  22. //
  23. // Please report all bugs and problems on the following page:
  24. //
  25. // http://www.fltk.org/str.php
  26. //
  27. /** \file
  28. Fl_Shared_Image class. */
  29. #ifndef Fl_Shared_Image_H
  30. # define Fl_Shared_Image_H
  31. # include "Fl_Image.H"
  32. // Test function for adding new formats
  33. typedef Fl_Image *(*Fl_Shared_Handler)(const char *name, uchar *header,
  34. int headerlen);
  35. // Shared images class.
  36. /**
  37. This class supports caching, loading,
  38. and drawing of image files. Most applications will also want to
  39. link against the fltk_images library and call the
  40. fl_register_images()
  41. function to support standard image formats such as BMP, GIF, JPEG, and PNG.
  42. */
  43. class FL_EXPORT Fl_Shared_Image : public Fl_Image {
  44. friend class Fl_JPEG_Image;
  45. friend class Fl_PNG_Image;
  46. protected:
  47. static Fl_Shared_Image **images_; // Shared images
  48. static int num_images_; // Number of shared images
  49. static int alloc_images_; // Allocated shared images
  50. static Fl_Shared_Handler *handlers_; // Additional format handlers
  51. static int num_handlers_; // Number of format handlers
  52. static int alloc_handlers_; // Allocated format handlers
  53. const char *name_; // Name of image file
  54. int original_; // Original image?
  55. int refcount_; // Number of times this image has been used
  56. Fl_Image *image_; // The image that is shared
  57. int alloc_image_; // Was the image allocated?
  58. static int compare(Fl_Shared_Image **i0, Fl_Shared_Image **i1);
  59. // Use get() and release() to load/delete images in memory...
  60. Fl_Shared_Image();
  61. Fl_Shared_Image(const char *n, Fl_Image *img = 0);
  62. virtual ~Fl_Shared_Image();
  63. void add();
  64. void update();
  65. public:
  66. /** Returns the filename of the shared image */
  67. const char *name() { return name_; }
  68. /** Returns the number of references of this shared image. When reference is below 1, the image is deleted. */
  69. int refcount() { return refcount_; }
  70. void release();
  71. void reload();
  72. virtual Fl_Image *copy(int W, int H);
  73. Fl_Image *copy() { return copy(w(), h()); }
  74. virtual void color_average(Fl_Color c, float i);
  75. virtual void desaturate();
  76. virtual void draw(int X, int Y, int W, int H, int cx, int cy);
  77. void draw(int X, int Y) { draw(X, Y, w(), h(), 0, 0); }
  78. virtual void uncache();
  79. static Fl_Shared_Image *find(const char *n, int W = 0, int H = 0);
  80. static Fl_Shared_Image *get(const char *n, int W = 0, int H = 0);
  81. static Fl_Shared_Image **images();
  82. static int num_images();
  83. static void add_handler(Fl_Shared_Handler f);
  84. static void remove_handler(Fl_Shared_Handler f);
  85. };
  86. //
  87. // The following function is provided in the fltk_images library and
  88. // registers all of the "extra" image file formats that are not part
  89. // of the core FLTK library...
  90. //
  91. FL_EXPORT extern void fl_register_images();
  92. #endif // !Fl_Shared_Image_H
  93. //
  94. // End of "$Id: Fl_Shared_Image.H 8306 2011-01-24 17:04:22Z matt $"
  95. //