]>
Commit | Line | Data |
---|---|---|
8f493002 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: imagpnm.h | |
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 | |
20 | class WXDLLEXPORT wxPNMHandler : public wxImageHandler | |
21 | { | |
8f493002 | 22 | public: |
2b5f62a0 VZ |
23 | inline wxPNMHandler() |
24 | { | |
25 | m_name = wxT("PNM file"); | |
26 | m_extension = wxT("pnm"); | |
27 | m_type = wxBITMAP_TYPE_PNM; | |
28 | m_mime = wxT("image/pnm"); | |
29 | } | |
8f493002 VS |
30 | |
31 | #if wxUSE_STREAMS | |
7beb59f3 WS |
32 | virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 ); |
33 | virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true ); | |
6f02a879 | 34 | protected: |
2b5f62a0 | 35 | virtual bool DoCanRead( wxInputStream& stream ); |
8f493002 | 36 | #endif |
2b5f62a0 VZ |
37 | |
38 | private: | |
39 | DECLARE_DYNAMIC_CLASS(wxPNMHandler) | |
8f493002 VS |
40 | }; |
41 | #endif | |
42 | ||
43 | ||
44 | #endif | |
45 | // _WX_IMAGPNM_H_ | |
46 |