/////////////////////////////////////////////////////////////////////////////
-// Name: imagtga.h
+// Name: wx/imagtga.h
// Purpose: wxImage TGA handler
// Author: Seth Jackson
// RCS-ID: $Id$
#if wxUSE_TGA
-class WXDLLEXPORT wxTGAHandler : public wxImageHandler
+class WXDLLIMPEXP_CORE wxTGAHandler : public wxImageHandler
{
public:
wxTGAHandler()
{
m_name = wxT("TGA file");
m_extension = wxT("tga");
+ m_altExtensions.Add(wxT("tpic"));
m_type = wxBITMAP_TYPE_TGA;
m_mime = wxT("image/tga");
}
bool verbose = true, int index = -1);
virtual bool SaveFile(wxImage* image, wxOutputStream& stream,
bool verbose = true);
+protected:
virtual bool DoCanRead(wxInputStream& stream);
#endif // wxUSE_STREAMS
-private:
DECLARE_DYNAMIC_CLASS(wxTGAHandler)
};