]>
Commit | Line | Data |
---|---|---|
8f493002 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: imagpng.h | |
3 | // Purpose: wxImage PNG handler | |
4 | // Author: Robert Roebling | |
5 | // RCS-ID: $Id$ | |
6 | // Copyright: (c) Robert Roebling | |
65571936 | 7 | // Licence: wxWindows licence |
8f493002 VS |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | #ifndef _WX_IMAGPNG_H_ | |
11 | #define _WX_IMAGPNG_H_ | |
12 | ||
12028905 | 13 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
8f493002 VS |
14 | #pragma interface "imagpng.h" |
15 | #endif | |
16 | ||
2ecf902b | 17 | #include "wx/defs.h" |
8f493002 VS |
18 | |
19 | //----------------------------------------------------------------------------- | |
20 | // wxPNGHandler | |
21 | //----------------------------------------------------------------------------- | |
22 | ||
23 | #if wxUSE_LIBPNG | |
a4efa721 | 24 | |
2ecf902b WS |
25 | #include "wx/image.h" |
26 | ||
a4efa721 VZ |
27 | #define wxIMAGE_OPTION_PNG_FORMAT wxT("PngFormat") |
28 | #define wxIMAGE_OPTION_PNG_BITDEPTH wxT("PngBitDepth") | |
29 | ||
30 | enum | |
31 | { | |
32 | wxPNG_TYPE_COLOUR = 0, | |
33 | wxPNG_TYPE_GREY = 2, | |
e8144c31 | 34 | wxPNG_TYPE_GREY_RED = 3 |
a4efa721 VZ |
35 | }; |
36 | ||
8f493002 VS |
37 | class WXDLLEXPORT wxPNGHandler: public wxImageHandler |
38 | { | |
8f493002 | 39 | public: |
2b5f62a0 VZ |
40 | inline wxPNGHandler() |
41 | { | |
42 | m_name = wxT("PNG file"); | |
43 | m_extension = wxT("png"); | |
44 | m_type = wxBITMAP_TYPE_PNG; | |
45 | m_mime = wxT("image/png"); | |
46 | } | |
8f493002 VS |
47 | |
48 | #if wxUSE_STREAMS | |
7beb59f3 WS |
49 | virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 ); |
50 | virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true ); | |
2b5f62a0 | 51 | virtual bool DoCanRead( wxInputStream& stream ); |
8f493002 | 52 | #endif |
2b5f62a0 VZ |
53 | |
54 | private: | |
55 | DECLARE_DYNAMIC_CLASS(wxPNGHandler) | |
8f493002 | 56 | }; |
8f493002 | 57 | |
2ecf902b WS |
58 | #endif |
59 | // wxUSE_LIBPNG | |
8f493002 VS |
60 | |
61 | #endif | |
62 | // _WX_IMAGPNG_H_ | |
63 |