Fl_GIF_Image.H 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // "$Id: Fl_GIF_Image.H 10732 2015-05-23 23:42:26Z matt $"
  3. //
  4. // GIF 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. Distribution and use rights are outlined in
  9. // the file "COPYING" which should have been included with this file. If this
  10. // file is missing or damaged, see the license at:
  11. //
  12. // http://www.fltk.org/COPYING.php
  13. //
  14. // Please report all bugs and problems on the following page:
  15. //
  16. // http://www.fltk.org/str.php
  17. //
  18. /* \file
  19. Fl_GIF_Image widget . */
  20. #ifndef Fl_GIF_Image_H
  21. #define Fl_GIF_Image_H
  22. # include "Fl_Pixmap.H"
  23. /**
  24. The Fl_GIF_Image class supports loading, caching,
  25. and drawing of Compuserve GIF<SUP>SM</SUP> images. The class
  26. loads the first image and supports transparency.
  27. */
  28. class FL_EXPORT Fl_GIF_Image : public Fl_Pixmap {
  29. public:
  30. Fl_GIF_Image(const char* filename);
  31. DECLARE_CLASS_CHEAP_RTTI_2(Fl_GIF_Image, Fl_Pixmap)
  32. };
  33. #endif
  34. //
  35. // End of "$Id: Fl_GIF_Image.H 10732 2015-05-23 23:42:26Z matt $".
  36. //