]>
Commit | Line | Data |
---|---|---|
01111366 | 1 | ///////////////////////////////////////////////////////////////////////////// |
155ecd4c | 2 | // Name: wx/image.h |
01111366 RR |
3 | // Purpose: wxImage class |
4 | // Author: Robert Roebling | |
5 | // RCS-ID: $Id$ | |
6 | // Copyright: (c) Robert Roebling | |
65571936 | 7 | // Licence: wxWindows licence |
01111366 RR |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | #ifndef _WX_IMAGE_H_ | |
11 | #define _WX_IMAGE_H_ | |
12 | ||
2ecf902b | 13 | #include "wx/defs.h" |
155ecd4c WS |
14 | |
15 | #if wxUSE_IMAGE | |
16 | ||
01111366 RR |
17 | #include "wx/object.h" |
18 | #include "wx/string.h" | |
19 | #include "wx/gdicmn.h" | |
952ae1e8 | 20 | #include "wx/hashmap.h" |
bf38cbff JS |
21 | |
22 | #if wxUSE_STREAMS | |
b9943f8e | 23 | # include "wx/stream.h" |
bf38cbff | 24 | #endif |
01111366 | 25 | |
66f21994 VZ |
26 | // on some systems (Unixware 7.x) index is defined as a macro in the headers |
27 | // which breaks the compilation below | |
28 | #undef index | |
29 | ||
1fe7a7c7 | 30 | #define wxIMAGE_OPTION_QUALITY wxString(_T("quality")) |
fd94e8aa VS |
31 | #define wxIMAGE_OPTION_FILENAME wxString(_T("FileName")) |
32 | ||
fe9308c6 VZ |
33 | #define wxIMAGE_OPTION_RESOLUTION wxString(_T("Resolution")) |
34 | #define wxIMAGE_OPTION_RESOLUTIONX wxString(_T("ResolutionX")) | |
35 | #define wxIMAGE_OPTION_RESOLUTIONY wxString(_T("ResolutionY")) | |
36 | ||
37 | #define wxIMAGE_OPTION_RESOLUTIONUNIT wxString(_T("ResolutionUnit")) | |
38 | ||
39 | // constants used with wxIMAGE_OPTION_RESOLUTIONUNIT | |
40 | enum | |
41 | { | |
42 | wxIMAGE_RESOLUTION_INCHES = 1, | |
43 | wxIMAGE_RESOLUTION_CM = 2 | |
44 | }; | |
45 | ||
07aaa1a4 RR |
46 | // Constants for wxImage::Scale() for determining the level of quality |
47 | enum | |
48 | { | |
49 | wxIMAGE_QUALITY_NORMAL = 0, | |
50 | wxIMAGE_QUALITY_HIGH = 1 | |
51 | }; | |
52 | ||
21dc4be5 VZ |
53 | // alpha channel values: fully transparent, default threshold separating |
54 | // transparent pixels from opaque for a few functions dealing with alpha and | |
55 | // fully opaque | |
56 | const unsigned char wxIMAGE_ALPHA_TRANSPARENT = 0; | |
57 | const unsigned char wxIMAGE_ALPHA_THRESHOLD = 0x80; | |
58 | const unsigned char wxIMAGE_ALPHA_OPAQUE = 0xff; | |
59 | ||
01111366 RR |
60 | //----------------------------------------------------------------------------- |
61 | // classes | |
62 | //----------------------------------------------------------------------------- | |
63 | ||
64 | class WXDLLEXPORT wxImageHandler; | |
01111366 | 65 | class WXDLLEXPORT wxImage; |
ed39ff57 | 66 | class WXDLLEXPORT wxPalette; |
01111366 | 67 | |
6f5d7825 RR |
68 | //----------------------------------------------------------------------------- |
69 | // wxVariant support | |
70 | //----------------------------------------------------------------------------- | |
71 | ||
72 | #if wxUSE_VARIANT | |
73 | #include "wx/variant.h" | |
74 | DECLARE_VARIANT_OBJECT_EXPORTED(wxImage,WXDLLEXPORT) | |
75 | #endif | |
76 | ||
01111366 RR |
77 | //----------------------------------------------------------------------------- |
78 | // wxImageHandler | |
79 | //----------------------------------------------------------------------------- | |
80 | ||
81 | class WXDLLEXPORT wxImageHandler: public wxObject | |
82 | { | |
01111366 | 83 | public: |
d84afea9 | 84 | wxImageHandler() |
fda7962d | 85 | : m_name(wxEmptyString), m_extension(wxEmptyString), m_mime(), m_type(0) |
d84afea9 | 86 | { } |
01111366 | 87 | |
bf38cbff | 88 | #if wxUSE_STREAMS |
7beb59f3 WS |
89 | virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 ); |
90 | virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true ); | |
8f177c8e | 91 | |
649d13e8 | 92 | virtual int GetImageCount( wxInputStream& stream ); |
0828c087 | 93 | |
39d16996 | 94 | bool CanRead( wxInputStream& stream ) { return CallDoCanRead(stream); } |
be25e480 | 95 | bool CanRead( const wxString& name ); |
8f177c8e | 96 | #endif // wxUSE_STREAMS |
01111366 | 97 | |
be25e480 RR |
98 | void SetName(const wxString& name) { m_name = name; } |
99 | void SetExtension(const wxString& ext) { m_extension = ext; } | |
100 | void SetType(long type) { m_type = type; } | |
101 | void SetMimeType(const wxString& type) { m_mime = type; } | |
452418c4 PC |
102 | const wxString& GetName() const { return m_name; } |
103 | const wxString& GetExtension() const { return m_extension; } | |
be25e480 | 104 | long GetType() const { return m_type; } |
452418c4 | 105 | const wxString& GetMimeType() const { return m_mime; } |
9e9ee68e | 106 | |
01111366 | 107 | protected: |
8f177c8e | 108 | #if wxUSE_STREAMS |
be25e480 | 109 | virtual bool DoCanRead( wxInputStream& stream ) = 0; |
995612e2 | 110 | |
39d16996 VZ |
111 | // save the stream position, call DoCanRead() and restore the position |
112 | bool CallDoCanRead(wxInputStream& stream); | |
55472691 | 113 | #endif // wxUSE_STREAMS |
39d16996 | 114 | |
be25e480 RR |
115 | wxString m_name; |
116 | wxString m_extension; | |
117 | wxString m_mime; | |
118 | long m_type; | |
aaf46fd6 | 119 | |
be25e480 RR |
120 | private: |
121 | DECLARE_CLASS(wxImageHandler) | |
8f177c8e VZ |
122 | }; |
123 | ||
01111366 | 124 | //----------------------------------------------------------------------------- |
952ae1e8 | 125 | // wxImageHistogram |
01111366 RR |
126 | //----------------------------------------------------------------------------- |
127 | ||
952ae1e8 | 128 | class WXDLLEXPORT wxImageHistogramEntry |
c9d01afd GRG |
129 | { |
130 | public: | |
66f21994 | 131 | wxImageHistogramEntry() { index = value = 0; } |
c9d01afd GRG |
132 | unsigned long index; |
133 | unsigned long value; | |
134 | }; | |
135 | ||
952ae1e8 VS |
136 | WX_DECLARE_EXPORTED_HASH_MAP(unsigned long, wxImageHistogramEntry, |
137 | wxIntegerHash, wxIntegerEqual, | |
3f5c62f9 | 138 | wxImageHistogramBase); |
487659e0 | 139 | |
bf78c81c | 140 | class WXDLLEXPORT wxImageHistogram : public wxImageHistogramBase |
487659e0 VZ |
141 | { |
142 | public: | |
143 | wxImageHistogram() : wxImageHistogramBase(256) { } | |
144 | ||
145 | // get the key in the histogram for the given RGB values | |
146 | static unsigned long MakeKey(unsigned char r, | |
147 | unsigned char g, | |
148 | unsigned char b) | |
149 | { | |
150 | return (r << 16) | (g << 8) | b; | |
151 | } | |
152 | ||
153 | // find first colour that is not used in the image and has higher | |
154 | // RGB values than RGB(startR, startG, startB) | |
155 | // | |
156 | // returns true and puts this colour in r, g, b (each of which may be NULL) | |
157 | // on success or returns false if there are no more free colours | |
158 | bool FindFirstUnusedColour(unsigned char *r, | |
159 | unsigned char *g, | |
160 | unsigned char *b, | |
161 | unsigned char startR = 1, | |
162 | unsigned char startG = 0, | |
163 | unsigned char startB = 0 ) const; | |
164 | }; | |
952ae1e8 VS |
165 | |
166 | //----------------------------------------------------------------------------- | |
167 | // wxImage | |
168 | //----------------------------------------------------------------------------- | |
169 | ||
01111366 RR |
170 | class WXDLLEXPORT wxImage: public wxObject |
171 | { | |
01111366 | 172 | public: |
978d3d36 VZ |
173 | // red, green and blue are 8 bit unsigned integers in the range of 0..255 |
174 | // We use the identifier RGBValue instead of RGB, since RGB is #defined | |
175 | class RGBValue | |
176 | { | |
177 | public: | |
178 | RGBValue(unsigned char r=0, unsigned char g=0, unsigned char b=0) | |
179 | : red(r), green(g), blue(b) {} | |
ec85956a | 180 | unsigned char red; |
978d3d36 VZ |
181 | unsigned char green; |
182 | unsigned char blue; | |
183 | }; | |
184 | ||
185 | // hue, saturation and value are doubles in the range 0.0..1.0 | |
186 | class HSVValue | |
187 | { | |
188 | public: | |
189 | HSVValue(double h=0.0, double s=0.0, double v=0.0) | |
190 | : hue(h), saturation(s), value(v) {} | |
ec85956a | 191 | double hue; |
978d3d36 VZ |
192 | double saturation; |
193 | double value; | |
194 | }; | |
978d3d36 | 195 | |
1b941f2d | 196 | wxImage(){} |
ff865c13 | 197 | wxImage( int width, int height, bool clear = true ); |
7beb59f3 | 198 | wxImage( int width, int height, unsigned char* data, bool static_data = false ); |
4ea56379 | 199 | wxImage( int width, int height, unsigned char* data, unsigned char* alpha, bool static_data = false ); |
60d43ad8 VS |
200 | wxImage( const wxString& name, long type = wxBITMAP_TYPE_ANY, int index = -1 ); |
201 | wxImage( const wxString& name, const wxString& mimetype, int index = -1 ); | |
452418c4 | 202 | wxImage( const char* const* xpmData ); |
aaf46fd6 VZ |
203 | |
204 | #if wxUSE_STREAMS | |
60d43ad8 VS |
205 | wxImage( wxInputStream& stream, long type = wxBITMAP_TYPE_ANY, int index = -1 ); |
206 | wxImage( wxInputStream& stream, const wxString& mimetype, int index = -1 ); | |
aaf46fd6 | 207 | #endif // wxUSE_STREAMS |
01111366 | 208 | |
aaa97828 | 209 | bool Create( int width, int height, bool clear = true ); |
7beb59f3 | 210 | bool Create( int width, int height, unsigned char* data, bool static_data = false ); |
4ea56379 | 211 | bool Create( int width, int height, unsigned char* data, unsigned char* alpha, bool static_data = false ); |
452418c4 | 212 | bool Create( const char* const* xpmData ); |
be25e480 | 213 | void Destroy(); |
01111366 | 214 | |
f6bcfd97 BP |
215 | // creates an identical copy of the image (the = operator |
216 | // just raises the ref count) | |
217 | wxImage Copy() const; | |
aaf46fd6 | 218 | |
be25e480 | 219 | // return the new image with size width*height |
b737ad10 RR |
220 | wxImage GetSubImage( const wxRect& rect) const; |
221 | ||
222 | // Paste the image or part of this image into an image of the given size at the pos | |
223 | // any newly exposed areas will be filled with the rgb colour | |
2ecf902b | 224 | // by default if r = g = b = -1 then fill with this image's mask colour or find and |
b737ad10 | 225 | // set a suitable mask colour |
2ecf902b | 226 | wxImage Size( const wxSize& size, const wxPoint& pos, |
b737ad10 | 227 | int r = -1, int g = -1, int b = -1 ) const; |
aaf46fd6 | 228 | |
f6bcfd97 BP |
229 | // pastes image into this instance and takes care of |
230 | // the mask colour and out of bounds problems | |
aaf46fd6 | 231 | void Paste( const wxImage &image, int x, int y ); |
23280650 | 232 | |
be25e480 | 233 | // return the new image with size width*height |
07aaa1a4 RR |
234 | wxImage Scale( int width, int height, int quality = wxIMAGE_QUALITY_NORMAL ) const; |
235 | ||
236 | // box averager and bicubic filters for up/down sampling | |
237 | wxImage ResampleBox(int width, int height) const; | |
238 | wxImage ResampleBicubic(int width, int height) const; | |
239 | ||
240 | // blur the image according to the specified pixel radius | |
241 | wxImage Blur(int radius); | |
242 | wxImage BlurHorizontal(int radius); | |
243 | wxImage BlurVertical(int radius); | |
bf78c81c | 244 | |
534f0312 | 245 | wxImage ShrinkBy( int xFactor , int yFactor ) const ; |
7b2471a0 | 246 | |
be25e480 | 247 | // rescales the image in place |
07aaa1a4 | 248 | wxImage& Rescale( int width, int height, int quality = wxIMAGE_QUALITY_NORMAL ) { return *this = Scale(width, height, quality); } |
ce9a75d2 | 249 | |
b737ad10 | 250 | // resizes the image in place |
2ecf902b | 251 | wxImage& Resize( const wxSize& size, const wxPoint& pos, |
b737ad10 RR |
252 | int r = -1, int g = -1, int b = -1 ) { return *this = Size(size, pos, r, g, b); } |
253 | ||
7a632f10 JS |
254 | // Rotates the image about the given point, 'angle' radians. |
255 | // Returns the rotated image, leaving this image intact. | |
256 | wxImage Rotate(double angle, const wxPoint & centre_of_rotation, | |
7beb59f3 | 257 | bool interpolating = true, wxPoint * offset_after_rotation = (wxPoint*) NULL) const; |
f6bcfd97 | 258 | |
7beb59f3 WS |
259 | wxImage Rotate90( bool clockwise = true ) const; |
260 | wxImage Mirror( bool horizontally = true ) const; | |
7a632f10 | 261 | |
be25e480 RR |
262 | // replace one colour with another |
263 | void Replace( unsigned char r1, unsigned char g1, unsigned char b1, | |
264 | unsigned char r2, unsigned char g2, unsigned char b2 ); | |
aaf46fd6 | 265 | |
ec85956a JS |
266 | // Convert to greyscale image. Uses the luminance component (Y) of the image. |
267 | // The luma value (YUV) is calculated using (R * lr) + (G * lg) + (B * lb), defaults to ITU-T BT.601 | |
268 | wxImage ConvertToGreyscale( double lr = 0.299, double lg = 0.587, double lb = 0.114 ) const; | |
269 | ||
ff5ad794 VS |
270 | // convert to monochrome image (<r,g,b> will be replaced by white, |
271 | // everything else by black) | |
f515c25a | 272 | wxImage ConvertToMono( unsigned char r, unsigned char g, unsigned char b ) const; |
ce9a75d2 | 273 | |
be25e480 RR |
274 | // these routines are slow but safe |
275 | void SetRGB( int x, int y, unsigned char r, unsigned char g, unsigned char b ); | |
b737ad10 | 276 | void SetRGB( const wxRect& rect, unsigned char r, unsigned char g, unsigned char b ); |
f6bcfd97 BP |
277 | unsigned char GetRed( int x, int y ) const; |
278 | unsigned char GetGreen( int x, int y ) const; | |
279 | unsigned char GetBlue( int x, int y ) const; | |
23280650 | 280 | |
487659e0 | 281 | void SetAlpha(int x, int y, unsigned char alpha); |
d30ee785 | 282 | unsigned char GetAlpha(int x, int y) const; |
487659e0 | 283 | |
1f5b2017 VS |
284 | // find first colour that is not used in the image and has higher |
285 | // RGB values than <startR,startG,startB> | |
286 | bool FindFirstUnusedColour( unsigned char *r, unsigned char *g, unsigned char *b, | |
aaf46fd6 | 287 | unsigned char startR = 1, unsigned char startG = 0, |
e0a76d8d | 288 | unsigned char startB = 0 ) const; |
1f5b2017 | 289 | // Set image's mask to the area of 'mask' that has <r,g,b> colour |
aaf46fd6 | 290 | bool SetMaskFromImage(const wxImage & mask, |
1f5b2017 | 291 | unsigned char mr, unsigned char mg, unsigned char mb); |
52b64b0a | 292 | |
ff5ad794 VS |
293 | // converts image's alpha channel to mask, if it has any, does nothing |
294 | // otherwise: | |
21dc4be5 | 295 | bool ConvertAlphaToMask(unsigned char threshold = wxIMAGE_ALPHA_THRESHOLD); |
ff5ad794 | 296 | |
6408deed RR |
297 | // This method converts an image where the original alpha |
298 | // information is only available as a shades of a colour | |
299 | // (actually shades of grey) typically when you draw anti- | |
300 | // aliased text into a bitmap. The DC drawinf routines | |
301 | // draw grey values on the black background although they | |
302 | // actually mean to draw white with differnt alpha values. | |
303 | // This method reverses it, assuming a black (!) background | |
16cba29d | 304 | // and white text (actually only the red channel is read). |
6408deed RR |
305 | // The method will then fill up the whole image with the |
306 | // colour given. | |
16cba29d | 307 | bool ConvertColourToAlpha( unsigned char r, unsigned char g, unsigned char b ); |
6408deed | 308 | |
be25e480 | 309 | static bool CanRead( const wxString& name ); |
649d13e8 | 310 | static int GetImageCount( const wxString& name, long type = wxBITMAP_TYPE_ANY ); |
60d43ad8 VS |
311 | virtual bool LoadFile( const wxString& name, long type = wxBITMAP_TYPE_ANY, int index = -1 ); |
312 | virtual bool LoadFile( const wxString& name, const wxString& mimetype, int index = -1 ); | |
bf38cbff JS |
313 | |
314 | #if wxUSE_STREAMS | |
be25e480 | 315 | static bool CanRead( wxInputStream& stream ); |
649d13e8 | 316 | static int GetImageCount( wxInputStream& stream, long type = wxBITMAP_TYPE_ANY ); |
60d43ad8 VS |
317 | virtual bool LoadFile( wxInputStream& stream, long type = wxBITMAP_TYPE_ANY, int index = -1 ); |
318 | virtual bool LoadFile( wxInputStream& stream, const wxString& mimetype, int index = -1 ); | |
bf38cbff JS |
319 | #endif |
320 | ||
45647dcf | 321 | virtual bool SaveFile( const wxString& name ) const; |
e0a76d8d VS |
322 | virtual bool SaveFile( const wxString& name, int type ) const; |
323 | virtual bool SaveFile( const wxString& name, const wxString& mimetype ) const; | |
bf38cbff JS |
324 | |
325 | #if wxUSE_STREAMS | |
e0a76d8d VS |
326 | virtual bool SaveFile( wxOutputStream& stream, int type ) const; |
327 | virtual bool SaveFile( wxOutputStream& stream, const wxString& mimetype ) const; | |
bf38cbff | 328 | #endif |
01111366 | 329 | |
b7cacb43 VZ |
330 | bool Ok() const { return IsOk(); } |
331 | bool IsOk() const; | |
be25e480 RR |
332 | int GetWidth() const; |
333 | int GetHeight() const; | |
334 | ||
487659e0 VZ |
335 | // these functions provide fastest access to wxImage data but should be |
336 | // used carefully as no checks are done | |
337 | unsigned char *GetData() const; | |
4013de12 RD |
338 | void SetData( unsigned char *data, bool static_data=false ); |
339 | void SetData( unsigned char *data, int new_width, int new_height, bool static_data=false ); | |
487659e0 VZ |
340 | |
341 | unsigned char *GetAlpha() const; // may return NULL! | |
342 | bool HasAlpha() const { return GetAlpha() != NULL; } | |
4013de12 | 343 | void SetAlpha(unsigned char *alpha = NULL, bool static_data=false); |
828f0936 | 344 | void InitAlpha(); |
5e5437e0 | 345 | |
21dc4be5 VZ |
346 | // return true if this pixel is masked or has alpha less than specified |
347 | // threshold | |
348 | bool IsTransparent(int x, int y, | |
349 | unsigned char threshold = wxIMAGE_ALPHA_THRESHOLD) const; | |
350 | ||
5e5437e0 | 351 | // Mask functions |
be25e480 | 352 | void SetMaskColour( unsigned char r, unsigned char g, unsigned char b ); |
b737ad10 RR |
353 | // Get the current mask colour or find a suitable colour |
354 | // returns true if using current mask colour | |
355 | bool GetOrFindMaskColour( unsigned char *r, unsigned char *g, unsigned char *b ) const; | |
be25e480 RR |
356 | unsigned char GetMaskRed() const; |
357 | unsigned char GetMaskGreen() const; | |
358 | unsigned char GetMaskBlue() const; | |
7beb59f3 | 359 | void SetMask( bool mask = true ); |
be25e480 RR |
360 | bool HasMask() const; |
361 | ||
d275c7eb | 362 | #if wxUSE_PALETTE |
5e5437e0 JS |
363 | // Palette functions |
364 | bool HasPalette() const; | |
365 | const wxPalette& GetPalette() const; | |
366 | void SetPalette(const wxPalette& palette); | |
d275c7eb | 367 | #endif // wxUSE_PALETTE |
5e5437e0 JS |
368 | |
369 | // Option functions (arbitrary name/value mapping) | |
370 | void SetOption(const wxString& name, const wxString& value); | |
371 | void SetOption(const wxString& name, int value); | |
372 | wxString GetOption(const wxString& name) const; | |
373 | int GetOptionInt(const wxString& name) const; | |
374 | bool HasOption(const wxString& name) const; | |
3f4fc796 | 375 | |
e0a76d8d | 376 | unsigned long CountColours( unsigned long stopafter = (unsigned long) -1 ) const; |
952ae1e8 VS |
377 | |
378 | // Computes the histogram of the image and fills a hash table, indexed | |
379 | // with integer keys built as 0xRRGGBB, containing wxImageHistogramEntry | |
bf78c81c RD |
380 | // objects. Each of them contains an 'index' (useful to build a palette |
381 | // with the image colours) and a 'value', which is the number of pixels | |
952ae1e8 VS |
382 | // in the image with that colour. |
383 | // Returned value: # of entries in the histogram | |
e0a76d8d | 384 | unsigned long ComputeHistogram( wxImageHistogram &h ) const; |
be25e480 | 385 | |
978d3d36 VZ |
386 | // Rotates the hue of each pixel of the image. angle is a double in the range |
387 | // -1.0..1.0 where -1.0 is -360 degrees and 1.0 is 360 degrees | |
388 | void RotateHue(double angle); | |
978d3d36 | 389 | |
2b5f62a0 | 390 | bool operator == (const wxImage& image) const |
be25e480 | 391 | { return m_refData == image.m_refData; } |
2b5f62a0 | 392 | bool operator != (const wxImage& image) const |
be25e480 RR |
393 | { return m_refData != image.m_refData; } |
394 | ||
395 | static wxList& GetHandlers() { return sm_handlers; } | |
396 | static void AddHandler( wxImageHandler *handler ); | |
397 | static void InsertHandler( wxImageHandler *handler ); | |
398 | static bool RemoveHandler( const wxString& name ); | |
399 | static wxImageHandler *FindHandler( const wxString& name ); | |
400 | static wxImageHandler *FindHandler( const wxString& extension, long imageType ); | |
401 | static wxImageHandler *FindHandler( long imageType ); | |
402 | static wxImageHandler *FindHandlerMime( const wxString& mimetype ); | |
403 | ||
939fadc8 JS |
404 | static wxString GetImageExtWildcard(); |
405 | ||
be25e480 RR |
406 | static void CleanUpHandlers(); |
407 | static void InitStandardHandlers(); | |
c9d01afd | 408 | |
978d3d36 VZ |
409 | static HSVValue RGBtoHSV(const RGBValue& rgb); |
410 | static RGBValue HSVtoRGB(const HSVValue& hsv); | |
978d3d36 VZ |
411 | |
412 | ||
01111366 | 413 | protected: |
5e5437e0 | 414 | static wxList sm_handlers; |
01111366 | 415 | |
5644ac46 VZ |
416 | // return the index of the point with the given coordinates or -1 if the |
417 | // image is invalid of the coordinates are out of range | |
418 | // | |
419 | // note that index must be multiplied by 3 when using it with RGB array | |
420 | long XYToIndex(int x, int y) const; | |
421 | ||
a0f81e9f PC |
422 | virtual wxObjectRefData* CreateRefData() const; |
423 | virtual wxObjectRefData* CloneRefData(const wxObjectRefData* data) const; | |
424 | ||
be25e480 RR |
425 | private: |
426 | friend class WXDLLEXPORT wxImageHandler; | |
23280650 | 427 | |
be25e480 | 428 | DECLARE_DYNAMIC_CLASS(wxImage) |
01111366 RR |
429 | }; |
430 | ||
8f493002 | 431 | |
a091d18c | 432 | extern void WXDLLEXPORT wxInitAllImageHandlers(); |
b5a4a47d | 433 | |
16cba29d | 434 | extern WXDLLEXPORT_DATA(wxImage) wxNullImage; |
8f493002 VS |
435 | |
436 | //----------------------------------------------------------------------------- | |
437 | // wxImage handlers | |
438 | //----------------------------------------------------------------------------- | |
439 | ||
440 | #include "wx/imagbmp.h" | |
441 | #include "wx/imagpng.h" | |
442 | #include "wx/imaggif.h" | |
443 | #include "wx/imagpcx.h" | |
444 | #include "wx/imagjpeg.h" | |
445 | #include "wx/imagtiff.h" | |
446 | #include "wx/imagpnm.h" | |
775c6f0c | 447 | #include "wx/imagxpm.h" |
4b6b4dfc | 448 | #include "wx/imagiff.h" |
775c6f0c VS |
449 | |
450 | #endif // wxUSE_IMAGE | |
8f493002 | 451 | |
01111366 RR |
452 | #endif |
453 | // _WX_IMAGE_H_ |