home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / include / wx / xpmdecod.h < prev    next >
C/C++ Source or Header  |  2002-08-31  |  1KB  |  47 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name:        xpmdecod.h
  3. // Purpose:     wxXPMDecoder, XPM reader for wxImage and wxBitmap
  4. // Author:      Vaclav Slavik
  5. // CVS-ID:      $Id: xpmdecod.h,v 1.3 2002/08/31 11:29:11 GD Exp $
  6. // Copyright:   (c) 2001 Vaclav Slavik
  7. // Licence:     wxWindows licence
  8. /////////////////////////////////////////////////////////////////////////////
  9.  
  10. #ifndef _WX_XPMDECOD_H_
  11. #define _WX_XPMDECOD_H_
  12.  
  13. #if defined(__GNUG__) && !defined(__APPLE__)
  14. #pragma interface "xpmdecod.h"
  15. #endif
  16.  
  17. #include "wx/setup.h"
  18.  
  19.  
  20. class WXDLLEXPORT wxImage;
  21. class WXDLLEXPORT wxInputStream;
  22.  
  23. // --------------------------------------------------------------------------
  24. // wxXPMDecoder class
  25. // --------------------------------------------------------------------------
  26.  
  27. class WXDLLEXPORT wxXPMDecoder
  28. {
  29. public:
  30.     // constructor, destructor, etc.
  31.     wxXPMDecoder() {}
  32.     ~wxXPMDecoder() {}
  33.  
  34. #if wxUSE_STREAMS
  35.     // Is the stream XPM file?
  36.     bool CanRead(wxInputStream& stream);
  37.     // Read XPM file from the stream, parse it and create image from it
  38.     wxImage ReadFile(wxInputStream& stream);
  39. #endif
  40.     // Read directly from XPM data (as passed to wxBitmap ctor):
  41.     wxImage ReadData(const char **xpm_data);
  42. };
  43.  
  44.  
  45. #endif  // _WX_GIFDECOD_H_
  46.  
  47.