]>
Commit | Line | Data |
---|---|---|
3af706cc | 1 | ///////////////////////////////////////////////////////////////////////////// |
ce7208d4 | 2 | // Name: wx/imagtga.h |
3af706cc VZ |
3 | // Purpose: wxImage TGA handler |
4 | // Author: Seth Jackson | |
5 | // RCS-ID: $Id$ | |
6 | // Copyright: (c) 2005 Seth Jackson | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifndef _WX_IMAGTGA_H_ | |
11 | #define _WX_IMAGTGA_H_ | |
12 | ||
13 | #include "wx/image.h" | |
14 | ||
15 | //----------------------------------------------------------------------------- | |
16 | // wxTGAHandler | |
17 | //----------------------------------------------------------------------------- | |
18 | ||
19 | #if wxUSE_TGA | |
20 | ||
53a2db12 | 21 | class WXDLLIMPEXP_CORE wxTGAHandler : public wxImageHandler |
3af706cc VZ |
22 | { |
23 | public: | |
24 | wxTGAHandler() | |
25 | { | |
26 | m_name = wxT("TGA file"); | |
27 | m_extension = wxT("tga"); | |
28 | m_type = wxBITMAP_TYPE_TGA; | |
29 | m_mime = wxT("image/tga"); | |
30 | } | |
31 | ||
32 | #if wxUSE_STREAMS | |
33 | virtual bool LoadFile(wxImage* image, wxInputStream& stream, | |
34 | bool verbose = true, int index = -1); | |
35 | virtual bool SaveFile(wxImage* image, wxOutputStream& stream, | |
36 | bool verbose = true); | |
3498362e | 37 | protected: |
3af706cc VZ |
38 | virtual bool DoCanRead(wxInputStream& stream); |
39 | #endif // wxUSE_STREAMS | |
40 | ||
3af706cc VZ |
41 | DECLARE_DYNAMIC_CLASS(wxTGAHandler) |
42 | }; | |
43 | ||
44 | #endif // wxUSE_TGA | |
45 | ||
46 | #endif // _WX_IMAGTGA_H_ |