projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Implement monitoring of file descriptors in wxMotif event loop.
[wxWidgets.git]
/
include
/
wx
/
imagtga.h
diff --git
a/include/wx/imagtga.h
b/include/wx/imagtga.h
index c921a8aca789bcf577687b22c32b138dac111a7f..e5fd30f9be5512f3acfceb225f583848d7d47f0f 100644
(file)
--- a/
include/wx/imagtga.h
+++ b/
include/wx/imagtga.h
@@
-1,5
+1,5
@@
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
-// Name: imagtga.h
+// Name:
wx/
imagtga.h
// Purpose: wxImage TGA handler
// Author: Seth Jackson
// RCS-ID: $Id$
// Purpose: wxImage TGA handler
// Author: Seth Jackson
// RCS-ID: $Id$
@@
-18,13
+18,14
@@
#if wxUSE_TGA
#if wxUSE_TGA
-class WXDLL
EXPORT
wxTGAHandler : public wxImageHandler
+class WXDLL
IMPEXP_CORE
wxTGAHandler : public wxImageHandler
{
public:
wxTGAHandler()
{
m_name = wxT("TGA file");
m_extension = wxT("tga");
{
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");
}
m_type = wxBITMAP_TYPE_TGA;
m_mime = wxT("image/tga");
}
@@
-34,10
+35,10
@@
public:
bool verbose = true, int index = -1);
virtual bool SaveFile(wxImage* image, wxOutputStream& stream,
bool verbose = true);
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
virtual bool DoCanRead(wxInputStream& stream);
#endif // wxUSE_STREAMS
-private:
DECLARE_DYNAMIC_CLASS(wxTGAHandler)
};
DECLARE_DYNAMIC_CLASS(wxTGAHandler)
};