1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface file for wxImage, wxImageHandler, etc.
7 // Created: 28-Apr-1999
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
21 //----------------------------------------------------------------------
24 %include my_typemaps.i
26 // Import some definitions of other classes, etc.
31 //---------------------------------------------------------------------------
33 class wxImageHandler {
37 wxString GetExtension();
39 wxString GetMimeType();
41 //bool LoadFile(wxImage* image, wxInputStream& stream);
42 //bool SaveFile(wxImage* image, wxOutputStream& stream);
44 void SetName(const wxString& name);
45 void SetExtension(const wxString& extension);
46 void SetType(long type);
47 void SetMimeType(const wxString& mimetype);
50 //---------------------------------------------------------------------------
52 class wxPNGHandler : public wxImageHandler {
58 class wxJPEGHandler : public wxImageHandler {
64 class wxBMPHandler : public wxImageHandler {
70 class wxGIFHandler : public wxImageHandler {
77 //---------------------------------------------------------------------------
81 wxImage( const wxString& name, long type = wxBITMAP_TYPE_PNG );
84 wxBitmap ConvertToBitmap();
85 void Create( int width, int height );
87 wxImage Scale( int width, int height );
89 void SetRGB( int x, int y, unsigned char r, unsigned char g, unsigned char b );
90 unsigned char GetRed( int x, int y );
91 unsigned char GetGreen( int x, int y );
92 unsigned char GetBlue( int x, int y );
94 bool LoadFile( const wxString& name, long type = wxBITMAP_TYPE_PNG );
95 %name(LoadMimeFile)bool LoadFile( const wxString& name, const wxString& mimetype );
97 bool SaveFile( const wxString& name, int type );
98 %name(SaveMimeFile)bool SaveFile( const wxString& name, const wxString& mimetype );
104 unsigned char *GetData();
105 void SetData( unsigned char *data );
107 void SetMaskColour( unsigned char r, unsigned char g, unsigned char b );
108 unsigned char GetMaskRed();
109 unsigned char GetMaskGreen();
110 unsigned char GetMaskBlue();
111 void SetMask( bool mask = TRUE );
116 // Alternate constructors
117 %new wxImage* wxNullImage();
118 %new wxImage* wxEmptyImage(int width, int height);
119 %new wxImage* wxImageFromMime(const wxString& name, const wxString& mimetype);
120 %new wxImage* wxImageFromBitmap(const wxBitmap &bitmap);
122 wxImage* wxNullImage() {
126 wxImage* wxEmptyImage(int width, int height) {
127 return new wxImage(width, height);
130 wxImage* wxImageFromMime(const wxString& name, const wxString& mimetype) {
131 return new wxImage(name, mimetype);
134 wxImage* wxImageFromBitmap(const wxBitmap &bitmap) {
135 return new wxImage(bitmap);
140 void wxImage_AddHandler(wxImageHandler *handler);
142 void wxImage_AddHandler(wxImageHandler *handler) {
143 wxImage::AddHandler(handler);
147 //---------------------------------------------------------------------------
148 //---------------------------------------------------------------------------