1999-12-15 17:38:02 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2011-03-19 20:14:35 -04:00
|
|
|
// Name: wx/imagpnm.h
|
1999-12-15 17:38:02 -05:00
|
|
|
// Purpose: wxImage PNM handler
|
|
|
|
// Author: Sylvain Bougnoux
|
|
|
|
// Copyright: (c) Sylvain Bougnoux
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1999-12-15 17:38:02 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_IMAGPNM_H_
|
|
|
|
#define _WX_IMAGPNM_H_
|
|
|
|
|
|
|
|
#include "wx/image.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxPNMHandler
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#if wxUSE_PNM
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxPNMHandler : public wxImageHandler
|
1999-12-15 17:38:02 -05:00
|
|
|
{
|
|
|
|
public:
|
2002-12-04 09:11:26 -05:00
|
|
|
inline wxPNMHandler()
|
|
|
|
{
|
|
|
|
m_name = wxT("PNM file");
|
|
|
|
m_extension = wxT("pnm");
|
2009-03-09 19:13:34 -04:00
|
|
|
m_altExtensions.Add(wxT("ppm"));
|
|
|
|
m_altExtensions.Add(wxT("pgm"));
|
|
|
|
m_altExtensions.Add(wxT("pbm"));
|
2002-12-04 09:11:26 -05:00
|
|
|
m_type = wxBITMAP_TYPE_PNM;
|
|
|
|
m_mime = wxT("image/pnm");
|
|
|
|
}
|
1999-12-15 17:38:02 -05:00
|
|
|
|
|
|
|
#if wxUSE_STREAMS
|
2014-03-29 20:02:23 -04:00
|
|
|
virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 ) wxOVERRIDE;
|
|
|
|
virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true ) wxOVERRIDE;
|
2006-02-08 16:47:09 -05:00
|
|
|
protected:
|
2014-03-29 20:02:23 -04:00
|
|
|
virtual bool DoCanRead( wxInputStream& stream ) wxOVERRIDE;
|
1999-12-15 17:38:02 -05:00
|
|
|
#endif
|
2002-12-04 09:11:26 -05:00
|
|
|
|
|
|
|
private:
|
2015-04-23 07:49:01 -04:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxPNMHandler);
|
1999-12-15 17:38:02 -05:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_IMAGPNM_H_
|
|
|
|
|