Fl_Shared_Image.H 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. //
  2. // "$Id: Fl_Shared_Image.H 7903 2010-11-28 21:06:39Z 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. protected:
  45. static Fl_Shared_Image **images_; // Shared images
  46. static int num_images_; // Number of shared images
  47. static int alloc_images_; // Allocated shared images
  48. static Fl_Shared_Handler *handlers_; // Additional format handlers
  49. static int num_handlers_; // Number of format handlers
  50. static int alloc_handlers_; // Allocated format handlers
  51. const char *name_; // Name of image file
  52. int original_; // Original image?
  53. int refcount_; // Number of times this image has been used
  54. Fl_Image *image_; // The image that is shared
  55. int alloc_image_; // Was the image allocated?
  56. static int compare(Fl_Shared_Image **i0, Fl_Shared_Image **i1);
  57. // Use get() and release() to load/delete images in memory...
  58. Fl_Shared_Image();
  59. Fl_Shared_Image(const char *n, Fl_Image *img = 0);
  60. virtual ~Fl_Shared_Image();
  61. void add();
  62. void update();
  63. public:
  64. /** Returns the filename of the shared image */
  65. const char *name() { return name_; }
  66. /** Returns the number of references of this shared image. When reference is below 1, the image is deleted. */
  67. int refcount() { return refcount_; }
  68. void release();
  69. void reload();
  70. virtual Fl_Image *copy(int W, int H);
  71. Fl_Image *copy() { return copy(w(), h()); }
  72. virtual void color_average(Fl_Color c, float i);
  73. virtual void desaturate();
  74. virtual void draw(int X, int Y, int W, int H, int cx, int cy);
  75. void draw(int X, int Y) { draw(X, Y, w(), h(), 0, 0); }
  76. virtual void uncache();
  77. static Fl_Shared_Image *find(const char *n, int W = 0, int H = 0);
  78. static Fl_Shared_Image *get(const char *n, int W = 0, int H = 0);
  79. static Fl_Shared_Image **images();
  80. static int num_images();
  81. static void add_handler(Fl_Shared_Handler f);
  82. static void remove_handler(Fl_Shared_Handler f);
  83. };
  84. //
  85. // The following function is provided in the fltk_images library and
  86. // registers all of the "extra" image file formats that are not part
  87. // of the core FLTK library...
  88. //
  89. FL_EXPORT extern void fl_register_images();
  90. #endif // !Fl_Shared_Image_H
  91. //
  92. // End of "$Id: Fl_Shared_Image.H 7903 2010-11-28 21:06:39Z matt $"
  93. //