]> git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/src/image.i
C++ comments in C files are fun but break the compilation (for the Nth time)
[wxWidgets.git] / utils / wxPython / src / image.i
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: image.i
3 // Purpose: SWIG interface file for wxImage, wxImageHandler, etc.
4 //
5 // Author: Robin Dunn
6 //
7 // Created: 28-Apr-1999
8 // RCS-ID: $Id$
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
12
13
14 %module image
15
16 %{
17 #include "helpers.h"
18 #include <wx/image.h>
19 %}
20
21 //----------------------------------------------------------------------
22
23 %include typemaps.i
24 %include my_typemaps.i
25
26 // Import some definitions of other classes, etc.
27 %import _defs.i
28 %import misc.i
29 %import gdi.i
30
31 //---------------------------------------------------------------------------
32
33 class wxImageHandler {
34 public:
35 // wxImageHandler(); Abstract Base Class
36 wxString GetName();
37 wxString GetExtension();
38 long GetType();
39 wxString GetMimeType();
40
41 //bool LoadFile(wxImage* image, wxInputStream& stream);
42 //bool SaveFile(wxImage* image, wxOutputStream& stream);
43
44 void SetName(const wxString& name);
45 void SetExtension(const wxString& extension);
46 void SetType(long type);
47 void SetMimeType(const wxString& mimetype);
48 };
49
50 //---------------------------------------------------------------------------
51
52 class wxPNGHandler : public wxImageHandler {
53 public:
54 wxPNGHandler();
55 };
56
57
58 class wxJPEGHandler : public wxImageHandler {
59 public:
60 wxJPEGHandler();
61 };
62
63
64 class wxBMPHandler : public wxImageHandler {
65 public:
66 wxBMPHandler();
67 };
68
69
70 class wxGIFHandler : public wxImageHandler {
71 public:
72 wxGIFHandler();
73 };
74
75 class wxPNMHandler : public wxImageHandler {
76 public:
77 wxPNMHandler();
78 };
79
80 class wxPCXHandler : public wxImageHandler {
81 public:
82 wxPCXHandler();
83 };
84
85 class wxTIFFHandler : public wxImageHandler {
86 public:
87 wxTIFFHandler();
88 };
89
90
91 //---------------------------------------------------------------------------
92
93 class wxImage {
94 public:
95 wxImage( const wxString& name, long type = wxBITMAP_TYPE_PNG );
96 ~wxImage();
97
98 wxBitmap ConvertToBitmap();
99 void Create( int width, int height );
100 void Destroy();
101 wxImage Scale( int width, int height );
102 void Rescale(int width, int height);
103
104 void SetRGB( int x, int y, unsigned char r, unsigned char g, unsigned char b );
105 unsigned char GetRed( int x, int y );
106 unsigned char GetGreen( int x, int y );
107 unsigned char GetBlue( int x, int y );
108
109 bool LoadFile( const wxString& name, long type = wxBITMAP_TYPE_PNG );
110 %name(LoadMimeFile)bool LoadFile( const wxString& name, const wxString& mimetype );
111
112 bool SaveFile( const wxString& name, int type );
113 %name(SaveMimeFile)bool SaveFile( const wxString& name, const wxString& mimetype );
114
115 bool Ok();
116 int GetWidth();
117 int GetHeight();
118
119 wxImage GetSubImage(const wxRect& rect);
120
121 //unsigned char *GetData();
122 //void SetData( unsigned char *data );
123
124 %addmethods {
125 PyObject* GetData() {
126 unsigned char* data = self->GetData();
127 int len = self->GetWidth() * self->GetHeight() * 3;
128 return PyString_FromStringAndSize((char*)data, len);
129 }
130
131 void SetData(PyObject* data) {
132 unsigned char* dataPtr;
133
134 if (! PyString_Check(data)) {
135 PyErr_SetString(PyExc_TypeError, "Expected string object");
136 return /* NULL */ ;
137 }
138
139 size_t len = self->GetWidth() * self->GetHeight() * 3;
140 dataPtr = new unsigned char[len];
141 memcpy(dataPtr, PyString_AsString(data), len);
142 self->SetData(dataPtr);
143 }
144 }
145
146 void SetMaskColour( unsigned char r, unsigned char g, unsigned char b );
147 unsigned char GetMaskRed();
148 unsigned char GetMaskGreen();
149 unsigned char GetMaskBlue();
150 void SetMask( bool mask = TRUE );
151 bool HasMask();
152
153 };
154
155 // Alternate constructors
156 %new wxImage* wxNullImage();
157 %new wxImage* wxEmptyImage(int width, int height);
158 %new wxImage* wxImageFromMime(const wxString& name, const wxString& mimetype);
159 %new wxImage* wxImageFromBitmap(const wxBitmap &bitmap);
160 %{
161 wxImage* wxNullImage() {
162 return new wxImage;
163 }
164
165 wxImage* wxEmptyImage(int width, int height) {
166 return new wxImage(width, height);
167 }
168
169 wxImage* wxImageFromMime(const wxString& name, const wxString& mimetype) {
170 return new wxImage(name, mimetype);
171 }
172
173 wxImage* wxImageFromBitmap(const wxBitmap &bitmap) {
174 return new wxImage(bitmap);
175 }
176 %}
177
178 // Static Methods
179 void wxImage_AddHandler(wxImageHandler *handler);
180 %{
181 void wxImage_AddHandler(wxImageHandler *handler) {
182 wxImage::AddHandler(handler);
183 }
184 %}
185
186 void wxInitAllImageHandlers();
187
188 //---------------------------------------------------------------------------
189 //---------------------------------------------------------------------------