]> git.saurik.com Git - wxWidgets.git/blame - include/wx/imagpnm.h
Forward events to active child at MSW, not wx, level in wxMDIParentFrame.
[wxWidgets.git] / include / wx / imagpnm.h
CommitLineData
8f493002 1/////////////////////////////////////////////////////////////////////////////
80fdcdb9 2// Name: wx/imagpnm.h
8f493002
VS
3// Purpose: wxImage PNM handler
4// Author: Sylvain Bougnoux
5// RCS-ID: $Id$
6// Copyright: (c) Sylvain Bougnoux
65571936 7// Licence: wxWindows licence
8f493002
VS
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_IMAGPNM_H_
11#define _WX_IMAGPNM_H_
12
8f493002
VS
13#include "wx/image.h"
14
15//-----------------------------------------------------------------------------
16// wxPNMHandler
17//-----------------------------------------------------------------------------
18
19#if wxUSE_PNM
53a2db12 20class WXDLLIMPEXP_CORE wxPNMHandler : public wxImageHandler
8f493002 21{
8f493002 22public:
2b5f62a0
VZ
23 inline wxPNMHandler()
24 {
25 m_name = wxT("PNM file");
26 m_extension = wxT("pnm");
ba4800d3
VZ
27 m_altExtensions.Add(wxT("ppm"));
28 m_altExtensions.Add(wxT("pgm"));
29 m_altExtensions.Add(wxT("pbm"));
2b5f62a0
VZ
30 m_type = wxBITMAP_TYPE_PNM;
31 m_mime = wxT("image/pnm");
32 }
8f493002
VS
33
34#if wxUSE_STREAMS
7beb59f3
WS
35 virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 );
36 virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true );
6f02a879 37protected:
2b5f62a0 38 virtual bool DoCanRead( wxInputStream& stream );
8f493002 39#endif
2b5f62a0
VZ
40
41private:
42 DECLARE_DYNAMIC_CLASS(wxPNMHandler)
8f493002
VS
43};
44#endif
45
46
47#endif
48 // _WX_IMAGPNM_H_
49