Fl_XPM_Image.H 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // "$Id: Fl_XPM_Image.H 8864 2011-07-19 04:49:30Z greg.ercolano $"
  3. //
  4. // XPM 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_XPM_Image class . */
  20. #ifndef Fl_XPM_Image_H
  21. #define Fl_XPM_Image_H
  22. # include "Fl_Pixmap.H"
  23. /**
  24. The Fl_XPM_Image class supports loading, caching,
  25. and drawing of X Pixmap (XPM) images, including transparency.
  26. */
  27. class FL_EXPORT Fl_XPM_Image : public Fl_Pixmap {
  28. public:
  29. Fl_XPM_Image(const char* filename);
  30. DECLARE_CLASS_CHEAP_RTTI_2(Fl_XPM_Image, Fl_Pixmap)
  31. };
  32. #endif // !Fl_XPM_Image
  33. //
  34. // End of "$Id: Fl_XPM_Image.H 8864 2011-07-19 04:49:30Z greg.ercolano $".
  35. //