]> git.saurik.com Git - wxWidgets.git/blame - samples/image/image.cpp
New --with-gtk=VALUE syntax
[wxWidgets.git] / samples / image / image.cpp
CommitLineData
5a566d89
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: samples/image/image.cpp
3// Purpose: sample showing operations with wxImage
4// Author: Robert Roebling
5// Modified by:
6// Created: 1998
7// RCS-ID: $Id$
8// Copyright: (c) 1998-2005 Robert Roebling
9// License: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
01111366 11
3d05544e
JS
12// For compilers that support precompilation, includes "wx/wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
16#pragma hdrstop
17#endif
18
19#ifndef WX_PRECOMP
01111366 20#include "wx/wx.h"
3d05544e
JS
21#endif
22
01111366 23#include "wx/image.h"
a23fd0e1 24#include "wx/file.h"
5a566d89 25#include "wx/filename.h"
a8d4e3ac
VS
26#include "wx/mstream.h"
27#include "wx/wfstream.h"
1971d23c 28#include "wx/quantize.h"
a23fd0e1 29
da9df1f5
VZ
30#if wxUSE_CLIPBOARD
31 #include "wx/dataobj.h"
32 #include "wx/clipbrd.h"
33#endif // wxUSE_CLIPBOARD
34
dc1dbfc6 35#include "smile.xbm"
3ef37e7f 36#include "smile.xpm"
dc1dbfc6 37
284f2b59 38#if defined(__WXMSW__)
481721e8 39 #ifdef wxHAVE_RAW_BITMAP
9b24b388 40 #include "wx/rawbmp.h"
481721e8 41 #endif
c698eae5 42#endif
a8d4e3ac 43
284f2b59
RR
44#if defined(__WXMAC__) || defined(__WXGTK__)
45 #define wxHAVE_RAW_BITMAP
46 #include "wx/rawbmp.h"
47#endif
48
01111366
RR
49// derived classes
50
51class MyFrame;
52class MyApp;
53
54// MyCanvas
55
56class MyCanvas: public wxScrolledWindow
57{
1d5b7a0b 58public:
51b07644 59 MyCanvas() {}
01111366 60 MyCanvas( wxWindow *parent, wxWindowID, const wxPoint &pos, const wxSize &size );
1d5b7a0b 61 ~MyCanvas();
01111366 62 void OnPaint( wxPaintEvent &event );
9390a202 63 void CreateAntiAliasedBitmap();
1d5b7a0b 64
e1929140
RR
65 wxBitmap *my_horse_png;
66 wxBitmap *my_horse_jpeg;
67 wxBitmap *my_horse_gif;
ca26177c 68 wxBitmap *my_horse_bmp;
51b07644 69 wxBitmap *my_horse_bmp2;
cbd4be25 70 wxBitmap *my_horse_pcx;
6319afe3 71 wxBitmap *my_horse_pnm;
60a41aee 72 wxBitmap *my_horse_tiff;
9d8bdf2d 73 wxBitmap *my_horse_xpm;
bf504f98
VS
74 wxBitmap *my_horse_ico32;
75 wxBitmap *my_horse_ico16;
76 wxBitmap *my_horse_ico;
77 wxBitmap *my_horse_cur;
2b5f62a0 78 wxBitmap *my_horse_ani;
51b07644 79
dc1dbfc6 80 wxBitmap *my_smile_xbm;
e8fdc264 81 wxBitmap *my_square;
9390a202 82 wxBitmap *my_anti;
1d5b7a0b 83
bf504f98 84 int xH, yH ;
2b5f62a0 85 int m_ani_images ;
bf504f98 86
bea56879
VZ
87protected:
88 wxBitmap m_bmpSmileXpm;
89 wxIcon m_iconSmileXpm;
90
60a41aee 91private:
1d5b7a0b
VZ
92 DECLARE_DYNAMIC_CLASS(MyCanvas)
93 DECLARE_EVENT_TABLE()
01111366
RR
94};
95
18134a1c 96
01111366
RR
97// MyFrame
98
18134a1c 99
01111366
RR
100class MyFrame: public wxFrame
101{
1d5b7a0b
VZ
102public:
103 MyFrame();
01111366 104
01111366 105 void OnAbout( wxCommandEvent &event );
ab0f0386 106 void OnNewFrame( wxCommandEvent &event );
b3f04dc2
VZ
107#ifdef wxHAVE_RAW_BITMAP
108 void OnTestRawBitmap( wxCommandEvent &event );
109#endif // wxHAVE_RAW_BITMAP
01111366 110 void OnQuit( wxCommandEvent &event );
1d5b7a0b 111
dd38c875 112#if wxUSE_CLIPBOARD
da9df1f5
VZ
113 void OnCopy(wxCommandEvent& event);
114 void OnPaste(wxCommandEvent& event);
115#endif // wxUSE_CLIPBOARD
116
01111366 117 MyCanvas *m_canvas;
1d5b7a0b 118
60a41aee 119private:
1d5b7a0b
VZ
120 DECLARE_DYNAMIC_CLASS(MyFrame)
121 DECLARE_EVENT_TABLE()
01111366
RR
122};
123
ab0f0386
VZ
124class MyImageFrame : public wxFrame
125{
126public:
127 MyImageFrame(wxFrame *parent, const wxBitmap& bitmap)
47f797bd 128 : wxFrame(parent, wxID_ANY, _T("Double click to save"),
ab0f0386 129 wxDefaultPosition, wxDefaultSize,
40c79fab 130 wxCAPTION | wxSYSTEM_MENU | wxCLOSE_BOX),
1971d23c 131 m_bitmap(bitmap)
ab0f0386
VZ
132 {
133 SetClientSize(bitmap.GetWidth(), bitmap.GetHeight());
134 }
135
0c543b7a
VZ
136 void OnEraseBackground(wxEraseEvent& WXUNUSED(event))
137 {
138 // do nothing here to be able to see how transparent images are shown
139 }
140
ab0f0386
VZ
141 void OnPaint(wxPaintEvent& WXUNUSED(event))
142 {
143 wxPaintDC dc( this );
47f797bd 144 dc.DrawBitmap( m_bitmap, 0, 0, true /* use mask */ );
ab0f0386
VZ
145 }
146
c5c843e0 147 void OnSave(wxMouseEvent& WXUNUSED(event))
1971d23c 148 {
368d59f0 149 wxImage image = m_bitmap.ConvertToImage();
1971d23c 150
4693b20c
MB
151 wxString savefilename = wxFileSelector( wxT("Save Image"),
152 wxT(""),
5a566d89 153 wxT(""),
4693b20c
MB
154 (const wxChar *)NULL,
155 wxT("BMP files (*.bmp)|*.bmp|")
156 wxT("PNG files (*.png)|*.png|")
157 wxT("JPEG files (*.jpg)|*.jpg|")
158 wxT("GIF files (*.gif)|*.gif|")
159 wxT("TIFF files (*.tif)|*.tif|")
bf504f98
VS
160 wxT("PCX files (*.pcx)|*.pcx|")
161 wxT("ICO files (*.ico)|*.ico|")
162 wxT("CUR files (*.cur)|*.cur"),
47f797bd
WS
163 wxSAVE,
164 this);
1971d23c
VZ
165
166 if ( savefilename.empty() )
167 return;
168
5a566d89
VZ
169 wxString extension;
170 wxFileName::SplitPath(savefilename, NULL, NULL, &extension);
1971d23c 171
5a566d89
VZ
172 bool saved = false;
173 if ( extension == _T("bpp") )
174 {
175 static const int bppvalues[] =
176 {
177 wxBMP_1BPP,
178 wxBMP_1BPP_BW,
179 wxBMP_4BPP,
180 wxBMP_8BPP,
181 wxBMP_8BPP_GREY,
182 wxBMP_8BPP_RED,
183 wxBMP_8BPP_PALETTE,
184 wxBMP_24BPP
185 };
186
24207dfc 187 const wxString bppchoices[] =
5a566d89
VZ
188 {
189 _T("1 bpp color"),
190 _T("1 bpp B&W"),
191 _T("4 bpp color"),
192 _T("8 bpp color"),
193 _T("8 bpp greyscale"),
194 _T("8 bpp red"),
195 _T("8 bpp own palette"),
196 _T("24 bpp")
197 };
198
199 int bppselection = wxGetSingleChoiceIndex(_T("Set BMP BPP"),
200 _T("Image sample: save file"),
201 WXSIZEOF(bppchoices),
202 bppchoices,
203 this);
204 if ( bppselection != -1 )
205 {
206 int format = bppvalues[bppselection];
207 image.SetOption(wxIMAGE_OPTION_BMP_FORMAT, format);
208
209 if ( format == wxBMP_8BPP_PALETTE )
210 {
211 unsigned char *cmap = new unsigned char [256];
212 for ( int i = 0; i < 256; i++ )
213 cmap[i] = (unsigned char)i;
214 image.SetPalette(wxPalette(256, cmap, cmap, cmap));
215
216 delete cmap;
217 }
218 }
1971d23c 219 }
5a566d89
VZ
220 else if ( extension == _T("png") )
221 {
222 static const int pngvalues[] =
223 {
224 wxPNG_TYPE_COLOUR,
225 wxPNG_TYPE_COLOUR,
226 wxPNG_TYPE_GREY,
227 wxPNG_TYPE_GREY,
228 wxPNG_TYPE_GREY_RED,
229 wxPNG_TYPE_GREY_RED,
230 };
231
24207dfc 232 const wxString pngchoices[] =
5a566d89
VZ
233 {
234 _T("Colour 8bpp"),
235 _T("Colour 16bpp"),
236 _T("Grey 8bpp"),
237 _T("Grey 16bpp"),
238 _T("Grey red 8bpp"),
239 _T("Grey red 16bpp"),
240 };
241
242 int sel = wxGetSingleChoiceIndex(_T("Set PNG format"),
243 _T("Image sample: save file"),
244 WXSIZEOF(pngchoices),
245 pngchoices,
246 this);
247 if ( sel != -1 )
248 {
249 image.SetOption(wxIMAGE_OPTION_PNG_FORMAT, pngvalues[sel]);
250 image.SetOption(wxIMAGE_OPTION_PNG_BITDEPTH, sel % 2 ? 16 : 8);
251 }
252 }
253 else if ( extension == _T("cur") )
45647dcf 254 {
51b07644
VZ
255 image.Rescale(32,32);
256 image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X, 0);
45647dcf
VS
257 image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y, 0);
258 // This shows how you can save an image with explicitly
259 // specified image format:
5a566d89 260 saved = image.SaveFile(savefilename, wxBITMAP_TYPE_CUR);
45647dcf 261 }
5a566d89
VZ
262
263 if ( !saved )
45647dcf
VS
264 {
265 // This one guesses image format from filename extension
266 // (it may fail if the extension is not recognized):
5a566d89 267 image.SaveFile(savefilename);
45647dcf 268 }
1971d23c
VZ
269 }
270
ab0f0386
VZ
271private:
272 wxBitmap m_bitmap;
273
274 DECLARE_EVENT_TABLE()
275};
276
b3f04dc2
VZ
277#ifdef wxHAVE_RAW_BITMAP
278
279#include "wx/rawbmp.h"
280
281class MyRawBitmapFrame : public wxFrame
282{
283public:
284 enum
285 {
286 BORDER = 15,
287 SIZE = 150,
288 REAL_SIZE = SIZE - 2*BORDER
289 };
290
291 MyRawBitmapFrame(wxFrame *parent)
47f797bd 292 : wxFrame(parent, wxID_ANY, _T("Raw bitmaps (how exciting)")),
b3f04dc2
VZ
293 m_bitmap(SIZE, SIZE, 32)
294 {
295 SetClientSize(SIZE, SIZE);
296
095980e1
VZ
297 // another possibility: wxNativePixelData (don't forget to remove code
298 // setting alpha in the loop below then)
299 typedef wxAlphaPixelData Data;
300
301 Data data(m_bitmap, wxPoint(BORDER, BORDER), wxSize(REAL_SIZE, REAL_SIZE));
b3f04dc2
VZ
302 if ( !data )
303 {
304 wxLogError(_T("Failed to gain raw access to bitmap data"));
305 return;
306 }
307
4a101327 308 data.UseAlpha();
10b41b53 309
095980e1 310 Data::Iterator p(data);
b3f04dc2 311
b3f04dc2
VZ
312 for ( int y = 0; y < REAL_SIZE; ++y )
313 {
095980e1 314 Data::Iterator rowStart = p;
b3f04dc2
VZ
315
316 int r = y < REAL_SIZE/3 ? 255 : 0,
317 g = (REAL_SIZE/3 <= y) && (y < 2*(REAL_SIZE/3)) ? 255 : 0,
318 b = 2*(REAL_SIZE/3) <= y ? 255 : 0;
319
320 for ( int x = 0; x < REAL_SIZE; ++x )
321 {
b068dfe2
VZ
322 // note that RGB must be premultiplied by alpha
323 unsigned a = (Data::Iterator::ChannelType)((x*255.)/REAL_SIZE);
324 p.Red() = r * alpha / 256;
325 p.Green() = g * alpha / 256;
326 p.Blue() = b * alpha / 256;
327 p.Alpha() = a;
b3f04dc2
VZ
328
329 ++p; // same as p.OffsetX(1)
330 }
331
332 p = rowStart;
1d2f48b6 333 p.OffsetY(data, 1);
b3f04dc2
VZ
334 }
335 }
336
337 void OnPaint(wxPaintEvent& WXUNUSED(event))
338 {
339 wxPaintDC dc( this );
340 dc.DrawText(_T("This is alpha and raw bitmap test"), 0, BORDER);
341 dc.DrawText(_T("This is alpha and raw bitmap test"), 0, SIZE/2 - BORDER);
342 dc.DrawText(_T("This is alpha and raw bitmap test"), 0, SIZE - 2*BORDER);
47f797bd 343 dc.DrawBitmap( m_bitmap, 0, 0, true /* use mask */ );
b3f04dc2
VZ
344 }
345
346private:
347 wxBitmap m_bitmap;
348
349 DECLARE_EVENT_TABLE()
350};
351
352#endif // wxHAVE_RAW_BITMAP
353
01111366
RR
354// MyApp
355
356class MyApp: public wxApp
357{
1d5b7a0b
VZ
358public:
359 virtual bool OnInit();
01111366
RR
360};
361
362// main program
363
364IMPLEMENT_APP(MyApp)
365
366// MyCanvas
367
368IMPLEMENT_DYNAMIC_CLASS(MyCanvas, wxScrolledWindow)
369
ab0f0386 370BEGIN_EVENT_TABLE(MyImageFrame, wxFrame)
0c543b7a
VZ
371 EVT_ERASE_BACKGROUND(MyImageFrame::OnEraseBackground)
372 EVT_PAINT(MyImageFrame::OnPaint)
373 EVT_LEFT_DCLICK(MyImageFrame::OnSave)
ab0f0386
VZ
374END_EVENT_TABLE()
375
b3f04dc2
VZ
376#ifdef wxHAVE_RAW_BITMAP
377
378BEGIN_EVENT_TABLE(MyRawBitmapFrame, wxFrame)
379 EVT_PAINT(MyRawBitmapFrame::OnPaint)
380END_EVENT_TABLE()
381
382#endif // wxHAVE_RAW_BITMAP
383
1d5b7a0b
VZ
384BEGIN_EVENT_TABLE(MyCanvas, wxScrolledWindow)
385 EVT_PAINT(MyCanvas::OnPaint)
01111366
RR
386END_EVENT_TABLE()
387
acbd13a3 388MyCanvas::MyCanvas( wxWindow *parent, wxWindowID id,
1d5b7a0b 389 const wxPoint &pos, const wxSize &size )
81278df2 390 : wxScrolledWindow( parent, id, pos, size, wxSUNKEN_BORDER )
81278df2
VZ
391 , m_bmpSmileXpm((const char **) smile_xpm)
392 , m_iconSmileXpm((const char **) smile_xpm)
01111366 393{
60a41aee
RR
394 my_horse_png = (wxBitmap*) NULL;
395 my_horse_jpeg = (wxBitmap*) NULL;
396 my_horse_gif = (wxBitmap*) NULL;
397 my_horse_bmp = (wxBitmap*) NULL;
51b07644 398 my_horse_bmp2 = (wxBitmap*) NULL;
60a41aee
RR
399 my_horse_pcx = (wxBitmap*) NULL;
400 my_horse_pnm = (wxBitmap*) NULL;
401 my_horse_tiff = (wxBitmap*) NULL;
9d8bdf2d 402 my_horse_xpm = (wxBitmap*) NULL;
bf504f98
VS
403 my_horse_ico32 = (wxBitmap*) NULL;
404 my_horse_ico16 = (wxBitmap*) NULL;
405 my_horse_ico = (wxBitmap*) NULL;
406 my_horse_cur = (wxBitmap*) NULL;
2b5f62a0 407 my_horse_ani = (wxBitmap*) NULL;
bf504f98 408
dc1dbfc6 409 my_smile_xbm = (wxBitmap*) NULL;
60a41aee
RR
410 my_square = (wxBitmap*) NULL;
411 my_anti = (wxBitmap*) NULL;
412
2b5f62a0
VZ
413 m_ani_images = 0 ;
414
60a41aee
RR
415 SetBackgroundColour(* wxWHITE);
416
417 wxBitmap bitmap( 100, 100 );
418
419 wxMemoryDC dc;
420 dc.SelectObject( bitmap );
a60b1f5d 421 dc.SetBrush( wxBrush( wxT("orange"), wxSOLID ) );
cf3da716 422 dc.SetPen( *wxBLACK_PEN );
60a41aee 423 dc.DrawRectangle( 0, 0, 100, 100 );
cf3da716
RR
424 dc.SetBrush( *wxWHITE_BRUSH );
425 dc.DrawRectangle( 20, 20, 60, 60 );
60a41aee
RR
426 dc.SelectObject( wxNullBitmap );
427
428 // try to find the directory with our images
429 wxString dir;
4693b20c 430 if ( wxFile::Exists(wxT("./horse.png")) )
2b5f62a0 431 dir = wxT("./");
4693b20c 432 else if ( wxFile::Exists(wxT("../horse.png")) )
2b5f62a0 433 dir = wxT("../");
60a41aee 434 else
4693b20c 435 wxLogWarning(wxT("Can't find image files in either '.' or '..'!"));
60a41aee 436
a8d4e3ac 437 wxImage image = bitmap.ConvertToImage();
60a41aee 438
bea56879 439#if wxUSE_LIBPNG
51b07644 440 if ( !image.SaveFile( dir + _T("test.png"), wxBITMAP_TYPE_PNG ))
4693b20c 441 wxLogError(wxT("Can't save file"));
f6bcfd97 442
176fe5af 443 image.Destroy();
60a41aee 444
30ad0a14
VZ
445 if ( image.LoadFile( dir + _T("test.png") ) )
446 my_square = new wxBitmap( image );
f6bcfd97 447
176fe5af 448 image.Destroy();
cc977e5f 449
51b07644 450 if ( !image.LoadFile( dir + _T("horse.png")) )
4693b20c 451 wxLogError(wxT("Can't load PNG image"));
60a41aee 452 else
a8d4e3ac 453 my_horse_png = new wxBitmap( image );
bea56879 454#endif // wxUSE_LIBPNG
60a41aee 455
bea56879 456#if wxUSE_LIBJPEG
176fe5af 457 image.Destroy();
279ababf 458
51b07644 459 if ( !image.LoadFile( dir + _T("horse.jpg")) )
4693b20c 460 wxLogError(wxT("Can't load JPG image"));
60a41aee 461 else
9d8bdf2d 462 my_horse_jpeg = new wxBitmap( image );
bea56879 463#endif // wxUSE_LIBJPEG
6e47faf1
JS
464
465#if wxUSE_GIF
176fe5af 466 image.Destroy();
279ababf 467
2b5f62a0 468 if ( !image.LoadFile( dir + _T("horse.gif" )) )
4693b20c 469 wxLogError(wxT("Can't load GIF image"));
60a41aee 470 else
9d8bdf2d 471 my_horse_gif = new wxBitmap( image );
6e47faf1 472#endif
cbd4be25 473
6e47faf1 474#if wxUSE_PCX
176fe5af 475 image.Destroy();
279ababf 476
51b07644 477 if ( !image.LoadFile( dir + _T("horse.pcx"), wxBITMAP_TYPE_PCX ) )
4693b20c 478 wxLogError(wxT("Can't load PCX image"));
60a41aee 479 else
9d8bdf2d 480 my_horse_pcx = new wxBitmap( image );
6e47faf1 481#endif
cbd4be25 482
176fe5af 483 image.Destroy();
279ababf 484
51b07644 485 if ( !image.LoadFile( dir + _T("horse.bmp"), wxBITMAP_TYPE_BMP ) )
4693b20c 486 wxLogError(wxT("Can't load BMP image"));
60a41aee 487 else
9d8bdf2d 488 my_horse_bmp = new wxBitmap( image );
6319afe3 489
a8d4e3ac 490#if wxUSE_XPM
9d8bdf2d
VS
491 image.Destroy();
492
51b07644 493 if ( !image.LoadFile( dir + _T("horse.xpm"), wxBITMAP_TYPE_XPM ) )
4693b20c 494 wxLogError(wxT("Can't load XPM image"));
9d8bdf2d
VS
495 else
496 my_horse_xpm = new wxBitmap( image );
497
51b07644 498 if ( !image.SaveFile( dir + _T("test.xpm"), wxBITMAP_TYPE_XPM ))
4693b20c 499 wxLogError(wxT("Can't save file"));
a8d4e3ac
VS
500#endif
501
6e47faf1 502#if wxUSE_PNM
176fe5af 503 image.Destroy();
279ababf 504
51b07644 505 if ( !image.LoadFile( dir + _T("horse.pnm"), wxBITMAP_TYPE_PNM ) )
4693b20c 506 wxLogError(wxT("Can't load PNM image"));
60a41aee 507 else
9d8bdf2d 508 my_horse_pnm = new wxBitmap( image );
6e47faf1 509#endif
f048e32f 510
60a41aee 511#if wxUSE_LIBTIFF
176fe5af 512 image.Destroy();
279ababf 513
51b07644 514 if ( !image.LoadFile( dir + _T("horse.tif"), wxBITMAP_TYPE_TIF ) )
4693b20c 515 wxLogError(wxT("Can't load TIFF image"));
60a41aee 516 else
9d8bdf2d 517 my_horse_tiff = new wxBitmap( image );
60a41aee
RR
518#endif
519
60a41aee 520 CreateAntiAliasedBitmap();
dc1dbfc6
RL
521
522 my_smile_xbm = new wxBitmap( (const char*)smile_bits, smile_width,
523 smile_height, 1 );
bfef20bf
GRG
524
525 // demonstrates XPM automatically using the mask when saving
526 if ( m_bmpSmileXpm.Ok() )
51b07644 527 m_bmpSmileXpm.SaveFile(_T("saved.xpm"), wxBITMAP_TYPE_XPM);
bf504f98
VS
528
529#if wxUSE_ICO_CUR
530 image.Destroy();
531
51b07644 532 if ( !image.LoadFile( dir + _T("horse.ico"), wxBITMAP_TYPE_ICO, 0 ) )
bf504f98
VS
533 wxLogError(wxT("Can't load first ICO image"));
534 else
535 my_horse_ico32 = new wxBitmap( image );
51b07644 536
bf504f98
VS
537 image.Destroy();
538
51b07644 539 if ( !image.LoadFile( dir + _T("horse.ico"), wxBITMAP_TYPE_ICO, 1 ) )
bf504f98
VS
540 wxLogError(wxT("Can't load second ICO image"));
541 else
542 my_horse_ico16 = new wxBitmap( image );
543
544 image.Destroy();
545
51b07644 546 if ( !image.LoadFile( dir + _T("horse.ico") ) )
bf504f98
VS
547 wxLogError(wxT("Can't load best ICO image"));
548 else
549 my_horse_ico = new wxBitmap( image );
550
551 image.Destroy();
552
51b07644 553 if ( !image.LoadFile( dir + _T("horse.cur"), wxBITMAP_TYPE_CUR ) )
bf504f98
VS
554 wxLogError(wxT("Can't load best ICO image"));
555 else
51b07644 556 {
bf504f98 557 my_horse_cur = new wxBitmap( image );
fd94e8aa
VS
558 xH = 30 + image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X) ;
559 yH = 2420 + image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y) ;
51b07644 560 }
2b5f62a0 561
08811762 562 m_ani_images = wxImage::GetImageCount ( dir + _T("horse3.ani"), wxBITMAP_TYPE_ANI );
2b5f62a0
VZ
563 if (m_ani_images==0)
564 wxLogError(wxT("No ANI-format images found"));
565 else
566 my_horse_ani = new wxBitmap [m_ani_images];
567 int i ;
568 for (i=0; i < m_ani_images; i++)
569 {
570 image.Destroy();
08811762 571 if (!image.LoadFile( dir + _T("horse3.ani"), wxBITMAP_TYPE_ANI, i ))
2b5f62a0
VZ
572 {
573 wxString tmp = wxT("Can't load image number ");
574 tmp << i ;
575 wxLogError(tmp);
576 }
925e9792 577 else
2b5f62a0
VZ
578 my_horse_ani [i] = wxBitmap( image );
579 }
da9df1f5 580#endif // wxUSE_ICO_CUR
bf504f98 581
51b07644
VZ
582 image.Destroy();
583
584 // test image loading from stream
585 wxFile file(dir + _T("horse.bmp"));
30ad0a14 586 if ( file.IsOpened() )
51b07644 587 {
9386cb75
WS
588 wxFileOffset len = file.Length();
589 size_t dataSize = (size_t)len;
590 void *data = malloc(dataSize);
591 if ( file.Read(data, dataSize) != len )
30ad0a14 592 wxLogError(_T("Reading bitmap file failed"));
51b07644 593 else
30ad0a14 594 {
9386cb75 595 wxMemoryInputStream mis(data, dataSize);
30ad0a14
VZ
596 if ( !image.LoadFile(mis) )
597 wxLogError(wxT("Can't load BMP image from stream"));
598 else
599 my_horse_bmp2 = new wxBitmap( image );
600 }
51b07644 601
30ad0a14
VZ
602 free(data);
603 }
01111366
RR
604}
605
1d5b7a0b 606MyCanvas::~MyCanvas()
01111366 607{
60a41aee
RR
608 delete my_horse_pnm;
609 delete my_horse_png;
610 delete my_horse_jpeg;
611 delete my_horse_gif;
612 delete my_horse_bmp;
51b07644 613 delete my_horse_bmp2;
60a41aee
RR
614 delete my_horse_pcx;
615 delete my_horse_tiff;
9d8bdf2d 616 delete my_horse_xpm;
bf504f98
VS
617 delete my_horse_ico32;
618 delete my_horse_ico16;
619 delete my_horse_ico;
2f6c54eb 620 delete my_horse_cur;
2b5f62a0 621 delete [] my_horse_ani;
dc1dbfc6 622 delete my_smile_xbm;
60a41aee
RR
623 delete my_square;
624 delete my_anti;
01111366
RR
625}
626
627void MyCanvas::OnPaint( wxPaintEvent &WXUNUSED(event) )
628{
be25e480
RR
629 wxPaintDC dc( this );
630 PrepareDC( dc );
a91b47e8 631
51b07644 632 dc.DrawText( _T("Loaded image"), 30, 10 );
be25e480 633 if (my_square && my_square->Ok()) dc.DrawBitmap( *my_square, 30, 30 );
f048e32f 634
51b07644 635 dc.DrawText( _T("Drawn directly"), 150, 10 );
a60b1f5d 636 dc.SetBrush( wxBrush( wxT("orange"), wxSOLID ) );
cf3da716 637 dc.SetPen( *wxBLACK_PEN );
be25e480 638 dc.DrawRectangle( 150, 30, 100, 100 );
cf3da716
RR
639 dc.SetBrush( *wxWHITE_BRUSH );
640 dc.DrawRectangle( 170, 50, 60, 60 );
be25e480 641
408b4168 642 if (my_anti && my_anti->Ok())
be25e480
RR
643 dc.DrawBitmap( *my_anti, 280, 30 );
644
51b07644 645 dc.DrawText( _T("PNG handler"), 30, 135 );
be25e480 646 if (my_horse_png && my_horse_png->Ok())
408b4168 647 {
be25e480
RR
648 dc.DrawBitmap( *my_horse_png, 30, 150 );
649 wxRect rect(0,0,100,100);
650 wxBitmap sub( my_horse_png->GetSubBitmap(rect) );
51b07644 651 dc.DrawText( _T("GetSubBitmap()"), 280, 190 );
be25e480
RR
652 dc.DrawBitmap( sub, 280, 210 );
653 }
654
51b07644 655 dc.DrawText( _T("JPEG handler"), 30, 365 );
408b4168 656 if (my_horse_jpeg && my_horse_jpeg->Ok())
be25e480
RR
657 dc.DrawBitmap( *my_horse_jpeg, 30, 380 );
658
51b07644 659 dc.DrawText( _T("GIF handler"), 30, 595 );
408b4168 660 if (my_horse_gif && my_horse_gif->Ok())
be25e480
RR
661 dc.DrawBitmap( *my_horse_gif, 30, 610 );
662
51b07644 663 dc.DrawText( _T("PCX handler"), 30, 825 );
408b4168 664 if (my_horse_pcx && my_horse_pcx->Ok())
be25e480
RR
665 dc.DrawBitmap( *my_horse_pcx, 30, 840 );
666
51b07644 667 dc.DrawText( _T("BMP handler"), 30, 1055 );
408b4168 668 if (my_horse_bmp && my_horse_bmp->Ok())
be25e480
RR
669 dc.DrawBitmap( *my_horse_bmp, 30, 1070 );
670
51b07644
VZ
671 dc.DrawText( _T("BMP read from memory"), 280, 1055 );
672 if (my_horse_bmp2 && my_horse_bmp2->Ok())
673 dc.DrawBitmap( *my_horse_bmp2, 280, 1070 );
674
675 dc.DrawText( _T("PNM handler"), 30, 1285 );
408b4168 676 if (my_horse_pnm && my_horse_pnm->Ok())
be25e480 677 dc.DrawBitmap( *my_horse_pnm, 30, 1300 );
408b4168 678
51b07644 679 dc.DrawText( _T("TIFF handler"), 30, 1515 );
408b4168 680 if (my_horse_tiff && my_horse_tiff->Ok())
4b05d973 681 dc.DrawBitmap( *my_horse_tiff, 30, 1530 );
be25e480 682
51b07644 683 dc.DrawText( _T("XPM handler"), 30, 1745 );
9d8bdf2d
VS
684 if (my_horse_xpm && my_horse_xpm->Ok())
685 dc.DrawBitmap( *my_horse_xpm, 30, 1760 );
686
bf504f98 687
408b4168 688 if (my_smile_xbm && my_smile_xbm->Ok())
be25e480 689 {
51b07644
VZ
690 dc.DrawText( _T("XBM bitmap"), 30, 1975 );
691 dc.DrawText( _T("(green on red)"), 30, 1990 );
692 dc.SetTextForeground( _T("GREEN") );
693 dc.SetTextBackground( _T("RED") );
9d8bdf2d 694 dc.DrawBitmap( *my_smile_xbm, 30, 2010 );
408b4168 695
a60b1f5d 696 dc.SetTextForeground( wxT("BLACK") );
51b07644
VZ
697 dc.DrawText( _T("After wxImage conversion"), 150, 1975 );
698 dc.DrawText( _T("(red on white)"), 150, 1990 );
a60b1f5d 699 dc.SetTextForeground( wxT("RED") );
a8d4e3ac 700 wxImage i = my_smile_xbm->ConvertToImage();
176fe5af
GRG
701 i.SetMaskColour( 255, 255, 255 );
702 i.Replace( 0, 0, 0,
be25e480
RR
703 wxRED_PEN->GetColour().Red(),
704 wxRED_PEN->GetColour().Green(),
705 wxRED_PEN->GetColour().Blue() );
47f797bd 706 dc.DrawBitmap( wxBitmap(i), 150, 2010, true );
a60b1f5d 707 dc.SetTextForeground( wxT("BLACK") );
be25e480 708 }
176fe5af 709
408b4168 710
41fbc841 711 wxBitmap mono( 60,50,1 );
82ea63e6
RR
712 wxMemoryDC memdc;
713 memdc.SelectObject( mono );
bfef20bf 714 memdc.SetPen( *wxBLACK_PEN );
82ea63e6 715 memdc.SetBrush( *wxWHITE_BRUSH );
41fbc841
RR
716 memdc.DrawRectangle( 0,0,60,50 );
717 memdc.SetTextForeground( *wxBLACK );
9fe7d430
RR
718#ifndef __WXGTK20__
719 // I cannot convince GTK2 to draw into mono bitmaps
51b07644 720 memdc.DrawText( _T("Hi!"), 5, 5 );
9fe7d430 721#endif
41fbc841
RR
722 memdc.SetBrush( *wxBLACK_BRUSH );
723 memdc.DrawRectangle( 33,5,20,20 );
724 memdc.SetPen( *wxRED_PEN );
725 memdc.DrawLine( 5, 42, 50, 42 );
82ea63e6 726 memdc.SelectObject( wxNullBitmap );
176fe5af 727
408b4168 728 if (mono.Ok())
82ea63e6 729 {
51b07644
VZ
730 dc.DrawText( _T("Mono bitmap"), 30, 2095 );
731 dc.DrawText( _T("(red on green)"), 30, 2110 );
a60b1f5d
MB
732 dc.SetTextForeground( wxT("RED") );
733 dc.SetTextBackground( wxT("GREEN") );
9d8bdf2d 734 dc.DrawBitmap( mono, 30, 2130 );
408b4168 735
a60b1f5d 736 dc.SetTextForeground( wxT("BLACK") );
51b07644
VZ
737 dc.DrawText( _T("After wxImage conversion"), 150, 2095 );
738 dc.DrawText( _T("(red on white)"), 150, 2110 );
a60b1f5d 739 dc.SetTextForeground( wxT("RED") );
a8d4e3ac 740 wxImage i = mono.ConvertToImage();
408b4168
VZ
741 i.SetMaskColour( 255,255,255 );
742 i.Replace( 0,0,0,
82ea63e6
RR
743 wxRED_PEN->GetColour().Red(),
744 wxRED_PEN->GetColour().Green(),
745 wxRED_PEN->GetColour().Blue() );
47f797bd 746 dc.DrawBitmap( wxBitmap(i), 150, 2130, true );
a60b1f5d 747 dc.SetTextForeground( wxT("BLACK") );
bea56879
VZ
748 }
749
f9ebac93
RR
750 // For testing transparency
751 dc.SetBrush( *wxRED_BRUSH );
752 dc.DrawRectangle( 20, 2220, 560, 68 );
925e9792 753
f9ebac93 754 dc.DrawText(_T("XPM bitmap"), 30, 2230 );
bea56879 755 if ( m_bmpSmileXpm.Ok() )
47f797bd 756 dc.DrawBitmap(m_bmpSmileXpm, 30, 2250, true);
bea56879 757
f9ebac93 758 dc.DrawText(_T("XPM icon"), 110, 2230 );
bea56879 759 if ( m_iconSmileXpm.Ok() )
f9ebac93 760 dc.DrawIcon(m_iconSmileXpm, 110, 2250);
925e9792
WS
761
762 // testing icon -> bitmap conversion
f9ebac93 763 wxBitmap to_blit( m_iconSmileXpm );
3ef37e7f
JS
764 if (to_blit.Ok())
765 {
766 dc.DrawText( _T("SubBitmap"), 170, 2230 );
767 wxBitmap sub = to_blit.GetSubBitmap( wxRect(0,0,15,15) );
768 if (sub.Ok())
47f797bd 769 dc.DrawBitmap( sub, 170, 2250, true );
3ef37e7f
JS
770
771 dc.DrawText( _T("Enlarged"), 250, 2230 );
772 dc.SetUserScale( 1.5, 1.5 );
47f797bd 773 dc.DrawBitmap( to_blit, (int)(250/1.5), (int)(2250/1.5), true );
3ef37e7f 774 dc.SetUserScale( 2, 2 );
47f797bd 775 dc.DrawBitmap( to_blit, (int)(300/2), (int)(2250/2), true );
3ef37e7f 776 dc.SetUserScale( 1.0, 1.0 );
925e9792 777
3ef37e7f
JS
778 dc.DrawText( _T("Blit"), 400, 2230);
779 wxMemoryDC blit_dc;
780 blit_dc.SelectObject( to_blit );
47f797bd 781 dc.Blit( 400, 2250, to_blit.GetWidth(), to_blit.GetHeight(), &blit_dc, 0, 0, wxCOPY, true );
3ef37e7f 782 dc.SetUserScale( 1.5, 1.5 );
47f797bd 783 dc.Blit( (int)(450/1.5), (int)(2250/1.5), to_blit.GetWidth(), to_blit.GetHeight(), &blit_dc, 0, 0, wxCOPY, true );
3ef37e7f 784 dc.SetUserScale( 2, 2 );
47f797bd 785 dc.Blit( (int)(500/2), (int)(2250/2), to_blit.GetWidth(), to_blit.GetHeight(), &blit_dc, 0, 0, wxCOPY, true );
3ef37e7f
JS
786 dc.SetUserScale( 1.0, 1.0 );
787 }
bf504f98 788
51b07644 789 dc.DrawText( _T("ICO handler (1st image)"), 30, 2290 );
bf504f98 790 if (my_horse_ico32 && my_horse_ico32->Ok())
47f797bd 791 dc.DrawBitmap( *my_horse_ico32, 30, 2330, true );
bf504f98 792
51b07644 793 dc.DrawText( _T("ICO handler (2nd image)"), 230, 2290 );
bf504f98 794 if (my_horse_ico16 && my_horse_ico16->Ok())
47f797bd 795 dc.DrawBitmap( *my_horse_ico16, 230, 2330, true );
51b07644
VZ
796
797 dc.DrawText( _T("ICO handler (best image)"), 430, 2290 );
bf504f98 798 if (my_horse_ico && my_horse_ico->Ok())
47f797bd 799 dc.DrawBitmap( *my_horse_ico, 430, 2330, true );
bf504f98 800
51b07644 801 dc.DrawText( _T("CUR handler"), 30, 2390 );
bf504f98 802 if (my_horse_cur && my_horse_cur->Ok())
51b07644 803 {
47f797bd 804 dc.DrawBitmap( *my_horse_cur, 30, 2420, true );
bf504f98
VS
805 dc.SetPen (*wxRED_PEN);
806 dc.DrawLine (xH-10,yH,xH+10,yH);
807 dc.DrawLine (xH,yH-10,xH,yH+10);
51b07644 808 }
2b5f62a0
VZ
809 dc.DrawText( _T("ANI handler"), 230, 2390 );
810 int i ;
811 for (i=0; i < m_ani_images; i ++)
812 if (my_horse_ani[i].Ok())
813 {
47f797bd 814 dc.DrawBitmap( my_horse_ani[i], 230 + i * 2 * my_horse_ani[i].GetWidth() , 2420, true );
2b5f62a0 815 }
9390a202 816}
1d5b7a0b 817
9390a202
RR
818void MyCanvas::CreateAntiAliasedBitmap()
819{
820 wxBitmap bitmap( 300, 300 );
a91b47e8 821
9390a202 822 wxMemoryDC dc;
a91b47e8 823
9390a202 824 dc.SelectObject( bitmap );
a91b47e8 825
9390a202 826 dc.Clear();
f048e32f 827
6e47faf1 828 dc.SetFont( wxFont( 24, wxDECORATIVE, wxNORMAL, wxNORMAL) );
a60b1f5d 829 dc.SetTextForeground( wxT("RED") );
51b07644
VZ
830 dc.DrawText( _T("This is anti-aliased Text."), 20, 20 );
831 dc.DrawText( _T("And a Rectangle."), 20, 60 );
f048e32f 832
9390a202 833 dc.SetBrush( *wxRED_BRUSH );
91b8de8d 834 dc.SetPen( *wxTRANSPARENT_PEN );
9390a202 835 dc.DrawRoundedRectangle( 20, 100, 200, 180, 20 );
f048e32f 836
a8d4e3ac 837 wxImage original= bitmap.ConvertToImage();
9390a202 838 wxImage anti( 150, 150 );
a91b47e8 839
9390a202 840 /* This is quite slow, but safe. Use wxImage::GetData() for speed instead. */
f048e32f 841
9390a202
RR
842 for (int y = 1; y < 149; y++)
843 for (int x = 1; x < 149; x++)
844 {
845 int red = original.GetRed( x*2, y*2 ) +
f048e32f
VZ
846 original.GetRed( x*2-1, y*2 ) +
847 original.GetRed( x*2, y*2+1 ) +
9390a202 848 original.GetRed( x*2+1, y*2+1 );
f048e32f
VZ
849 red = red/4;
850
9390a202 851 int green = original.GetGreen( x*2, y*2 ) +
f048e32f
VZ
852 original.GetGreen( x*2-1, y*2 ) +
853 original.GetGreen( x*2, y*2+1 ) +
9390a202 854 original.GetGreen( x*2+1, y*2+1 );
f048e32f
VZ
855 green = green/4;
856
9390a202 857 int blue = original.GetBlue( x*2, y*2 ) +
f048e32f
VZ
858 original.GetBlue( x*2-1, y*2 ) +
859 original.GetBlue( x*2, y*2+1 ) +
9390a202 860 original.GetBlue( x*2+1, y*2+1 );
f048e32f 861 blue = blue/4;
925e9792 862 anti.SetRGB( x, y, (unsigned char)red, (unsigned char)green, (unsigned char)blue );
9390a202 863 }
368d59f0 864 my_anti = new wxBitmap(anti);
01111366
RR
865}
866
867// MyFrame
868
b3f04dc2
VZ
869enum
870{
871 ID_QUIT = 108,
872 ID_ABOUT,
873 ID_NEW,
874 ID_SHOWRAW
875};
01111366
RR
876
877IMPLEMENT_DYNAMIC_CLASS( MyFrame, wxFrame )
878
879BEGIN_EVENT_TABLE(MyFrame,wxFrame)
880 EVT_MENU (ID_ABOUT, MyFrame::OnAbout)
881 EVT_MENU (ID_QUIT, MyFrame::OnQuit)
ab0f0386 882 EVT_MENU (ID_NEW, MyFrame::OnNewFrame)
b3f04dc2
VZ
883#ifdef wxHAVE_RAW_BITMAP
884 EVT_MENU (ID_SHOWRAW, MyFrame::OnTestRawBitmap)
885#endif
da9df1f5 886
dd38c875 887#if wxUSE_CLIPBOARD
da9df1f5
VZ
888 EVT_MENU(wxID_COPY, MyFrame::OnCopy)
889 EVT_MENU(wxID_PASTE, MyFrame::OnPaste)
890#endif // wxUSE_CLIPBOARD
01111366
RR
891END_EVENT_TABLE()
892
1d5b7a0b 893MyFrame::MyFrame()
47f797bd 894 : wxFrame( (wxFrame *)NULL, wxID_ANY, _T("wxImage sample"),
1d5b7a0b 895 wxPoint(20,20), wxSize(470,360) )
01111366 896{
da9df1f5
VZ
897 wxMenuBar *menu_bar = new wxMenuBar();
898
899 wxMenu *menuImage = new wxMenu;
900 menuImage->Append( ID_NEW, _T("&Show any image...\tCtrl-O"));
1e3c12d7 901
b3f04dc2 902#ifdef wxHAVE_RAW_BITMAP
da9df1f5 903 menuImage->Append( ID_SHOWRAW, _T("Test &raw bitmap...\tCtrl-R"));
b3f04dc2 904#endif
da9df1f5
VZ
905 menuImage->AppendSeparator();
906 menuImage->Append( ID_ABOUT, _T("&About..."));
907 menuImage->AppendSeparator();
908 menuImage->Append( ID_QUIT, _T("E&xit\tCtrl-Q"));
909 menu_bar->Append(menuImage, _T("&Image"));
910
dd38c875 911#if wxUSE_CLIPBOARD
da9df1f5
VZ
912 wxMenu *menuClipboard = new wxMenu;
913 menuClipboard->Append(wxID_COPY, _T("&Copy test image\tCtrl-C"));
914 menuClipboard->Append(wxID_PASTE, _T("&Paste image\tCtrl-V"));
915 menu_bar->Append(menuClipboard, _T("&Clipboard"));
916#endif // wxUSE_CLIPBOARD
3d05544e 917
01111366 918 SetMenuBar( menu_bar );
1d5b7a0b 919
8520f137 920#if wxUSE_STATUSBAR
917e533b
RR
921 CreateStatusBar(2);
922 int widths[] = { -1, 100 };
923 SetStatusWidths( 2, widths );
8520f137 924#endif // wxUSE_STATUSBAR
1d5b7a0b 925
47f797bd 926 m_canvas = new MyCanvas( this, wxID_ANY, wxPoint(0,0), wxSize(10,10) );
cbd4be25 927
bf504f98
VS
928 // 500 width * 2500 height
929 m_canvas->SetScrollbars( 10, 10, 50, 250 );
01111366
RR
930}
931
932void MyFrame::OnQuit( wxCommandEvent &WXUNUSED(event) )
933{
47f797bd 934 Close( true );
01111366
RR
935}
936
937void MyFrame::OnAbout( wxCommandEvent &WXUNUSED(event) )
938{
51b07644
VZ
939 (void)wxMessageBox( _T("wxImage demo\n")
940 _T("Robert Roebling (c) 1998,2000"),
941 _T("About wxImage Demo"), wxICON_INFORMATION | wxOK );
fb1585ae
RR
942}
943
ab0f0386
VZ
944void MyFrame::OnNewFrame( wxCommandEvent &WXUNUSED(event) )
945{
f6bcfd97
BP
946 wxString filename = wxFileSelector(_T("Select image file"));
947 if ( !filename )
948 return;
949
950 wxImage image;
951 if ( !image.LoadFile(filename) )
952 {
953 wxLogError(_T("Couldn't load image from '%s'."), filename.c_str());
954
955 return;
956 }
957
368d59f0 958 (new MyImageFrame(this, wxBitmap(image)))->Show();
ab0f0386
VZ
959}
960
b3f04dc2
VZ
961#ifdef wxHAVE_RAW_BITMAP
962
481721e8 963void MyFrame::OnTestRawBitmap( wxCommandEvent &WXUNUSED(event) )
b3f04dc2
VZ
964{
965 (new MyRawBitmapFrame(this))->Show();
966}
967
968#endif // wxHAVE_RAW_BITMAP
969
dd38c875 970#if wxUSE_CLIPBOARD
da9df1f5
VZ
971
972void MyFrame::OnCopy(wxCommandEvent& WXUNUSED(event))
973{
974 wxBitmapDataObject *dobjBmp = new wxBitmapDataObject;
975 dobjBmp->SetBitmap(*m_canvas->my_horse_png);
976
dd38c875
MB
977 wxTheClipboard->Open();
978
da9df1f5
VZ
979 if ( !wxTheClipboard->SetData(dobjBmp) )
980 {
981 wxLogError(_T("Failed to copy bitmap to clipboard"));
982 }
dd38c875
MB
983
984 wxTheClipboard->Close();
da9df1f5
VZ
985}
986
987void MyFrame::OnPaste(wxCommandEvent& WXUNUSED(event))
988{
989 wxBitmapDataObject dobjBmp;
dd38c875
MB
990
991 wxTheClipboard->Open();
da9df1f5
VZ
992 if ( !wxTheClipboard->GetData(dobjBmp) )
993 {
994 wxLogMessage(_T("No bitmap data in the clipboard"));
995 }
996 else
997 {
998 (new MyImageFrame(this, dobjBmp.GetBitmap()))->Show();
999 }
dd38c875 1000 wxTheClipboard->Close();
da9df1f5
VZ
1001}
1002
1003#endif // wxUSE_CLIPBOARD
1004
01111366
RR
1005//-----------------------------------------------------------------------------
1006// MyApp
1007//-----------------------------------------------------------------------------
1008
1d5b7a0b 1009bool MyApp::OnInit()
01111366 1010{
e9c4b1a2
JS
1011#if wxUSE_LIBPNG
1012 wxImage::AddHandler( new wxPNGHandler );
1013#endif
1014
1015#if wxUSE_LIBJPEG
1016 wxImage::AddHandler( new wxJPEGHandler );
1017#endif
1018
60a41aee
RR
1019#if wxUSE_LIBTIFF
1020 wxImage::AddHandler( new wxTIFFHandler );
1021#endif
1022
6e47faf1 1023#if wxUSE_GIF
e1929140 1024 wxImage::AddHandler( new wxGIFHandler );
6e47faf1
JS
1025#endif
1026
1027#if wxUSE_PCX
cbd4be25 1028 wxImage::AddHandler( new wxPCXHandler );
6e47faf1
JS
1029#endif
1030
1031#if wxUSE_PNM
6319afe3 1032 wxImage::AddHandler( new wxPNMHandler );
6e47faf1 1033#endif
e1929140 1034
a8d4e3ac
VS
1035#if wxUSE_XPM
1036 wxImage::AddHandler( new wxXPMHandler );
1037#endif
1038
bf504f98
VS
1039#if wxUSE_ICO_CUR
1040 wxImage::AddHandler( new wxICOHandler );
1041 wxImage::AddHandler( new wxCURHandler );
2b5f62a0 1042 wxImage::AddHandler( new wxANIHandler );
bf504f98
VS
1043#endif
1044
01111366 1045 wxFrame *frame = new MyFrame();
47f797bd 1046 frame->Show( true );
1d5b7a0b 1047
47f797bd 1048 return true;
01111366
RR
1049}
1050