]> git.saurik.com Git - wxWidgets.git/blame - src/mgl/bitmap.cpp
merged MapBitmap() from 2.2 branch
[wxWidgets.git] / src / mgl / bitmap.cpp
CommitLineData
32b8ec41
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: bitmap.cpp
3// Author: Vaclav Slavik
4// RCS-ID: $Id$
8f7b34a8 5// Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
32b8ec41
VZ
6// Licence: wxWindows licence
7/////////////////////////////////////////////////////////////////////////////
8
9#ifdef __GNUG__
10#pragma implementation "bitmap.h"
11#endif
12
13// For compilers that support precompilation, includes "wx.h".
14#include "wx/wxprec.h"
15
16#ifdef __BORLANDC__
17 #pragma hdrstop
18#endif
19
20#include "wx/bitmap.h"
21#include "wx/icon.h"
22#include "wx/filefn.h"
23#include "wx/image.h"
24#include "wx/dcmemory.h"
25#include "wx/utils.h"
26#include "wx/log.h"
27#include "wx/intl.h"
28#include "wx/image.h"
29#include "wx/xpmdecod.h"
30
31#include "wx/mgl/private.h"
32
33#include <mgraph.hpp>
34
35//-----------------------------------------------------------------------------
36// MGL pixel formats:
37//-----------------------------------------------------------------------------
38
39static pixel_format_t gs_pixel_format_15 =
40 {0x1F,0x0A,3, 0x1F,0x05,3, 0x1F,0x00,3, 0x01,0x0F,7}; // 555 15bpp
41
42static pixel_format_t gs_pixel_format_16 =
43 {0x1F,0x0B,3, 0x3F,0x05,2, 0x1F,0x00,3, 0x00,0x00,0}; // 565 16bpp
44
45static pixel_format_t gs_pixel_format_24 =
46 {0xFF,0x10,0, 0xFF,0x08,0, 0xFF,0x00,0, 0x00,0x00,0}; // RGB 24bpp
47
48static pixel_format_t gs_pixel_format_32 =
49 {0xFF,0x18,0, 0xFF,0x10,0, 0xFF,0x08,0, 0xFF,0x00,0}; // RGBA 32bpp
50
51// FIXME_MGL -- these formats will probably have to go into another place,
52// where wxApp could use them to initialize g_displayDC
53
54
55//-----------------------------------------------------------------------------
56// wxMask
57//-----------------------------------------------------------------------------
58
59IMPLEMENT_DYNAMIC_CLASS(wxMask,wxObject)
60
61wxMask::wxMask()
62{
63 m_bitmap = NULL;
64}
65
66wxMask::wxMask(const wxBitmap& bitmap, const wxColour& colour)
67{
68 m_bitmap = NULL;
69 Create(bitmap, colour);
70}
71
72wxMask::wxMask(const wxBitmap& bitmap, int paletteIndex)
73{
74 m_bitmap = NULL;
75 Create(bitmap, paletteIndex);
76}
77
78wxMask::wxMask(const wxBitmap& bitmap)
79{
80 m_bitmap = NULL;
81 Create(bitmap);
82}
83
84wxMask::~wxMask()
85{
86 delete m_bitmap;
87}
88
89bool wxMask::Create(const wxBitmap& bitmap, const wxColour& colour)
90{
91 delete m_bitmap;
92 m_bitmap = NULL;
93
94 wxImage image = bitmap.ConvertToImage().ConvertToMono(
95 colour.Red(), colour.Green(), colour.Blue());
96 if ( !image.Ok() ) return FALSE;
97
98 m_bitmap = new wxBitmap(image, 1);
99
100 return m_bitmap->Ok();
101}
102
103bool wxMask::Create(const wxBitmap& bitmap, int paletteIndex)
104{
105 unsigned char r,g,b;
106 wxPalette *pal = bitmap.GetPalette();
107
108 wxCHECK_MSG( pal, FALSE, wxT("Cannot create mask from bitmap without palette") );
109
110 pal->GetRGB(paletteIndex, &r, &g, &b);
111
112 return Create(bitmap, wxColour(r, g, b));
113}
114
115bool wxMask::Create(const wxBitmap& bitmap)
116{
117 delete m_bitmap;
118 m_bitmap = NULL;
119
120 wxCHECK_MSG( bitmap.Ok(), FALSE, wxT("Invalid bitmap") );
121 wxCHECK_MSG( bitmap.GetDepth() == 1, FALSE, wxT("Cannot create mask from colour bitmap") );
122
123 m_bitmap = new wxBitmap(bitmap);
124 return TRUE;
125}
126
127
128//-----------------------------------------------------------------------------
129// wxBitmap
130//-----------------------------------------------------------------------------
131
132class wxBitmapRefData: public wxObjectRefData
133{
134public:
135 wxBitmapRefData();
136 ~wxBitmapRefData();
137
138 int m_width;
139 int m_height;
140 int m_bpp;
141 wxPalette *m_palette;
142 wxMask *m_mask;
143 bitmap_t *m_bitmap;
144};
145
146wxBitmapRefData::wxBitmapRefData()
147{
148 m_mask = NULL;
149 m_width = 0;
150 m_height = 0;
151 m_bpp = 0;
152 m_palette = NULL;
153 m_bitmap = NULL;
154}
155
156wxBitmapRefData::~wxBitmapRefData()
157{
158 if ( m_bitmap )
159 MGL_unloadBitmap(m_bitmap);
160 delete m_mask;
161 delete m_palette;
162}
163
164//-----------------------------------------------------------------------------
165
166#define M_BMPDATA ((wxBitmapRefData *)m_refData)
167
168
169IMPLEMENT_ABSTRACT_CLASS(wxBitmapHandler,wxObject)
170IMPLEMENT_DYNAMIC_CLASS(wxBitmap,wxBitmapBase)
171
172wxBitmap::wxBitmap()
173{
174 if ( wxTheBitmapList ) wxTheBitmapList->AddBitmap(this);
175}
176
177wxBitmap::wxBitmap(int width, int height, int depth)
178{
179 Create(width, height, depth);
180
181 if ( wxTheBitmapList ) wxTheBitmapList->AddBitmap(this);
182}
183
184
185static bitmap_t *MyMGL_createBitmap(int width, int height,
186 int bpp, pixel_format_t *pf)
187{
188 MGLMemoryDC mdc(width, height, bpp, pf);
189 return MGL_getBitmapFromDC(mdc.getDC(), 0, 0, width, height, TRUE);
190}
191
192bool wxBitmap::Create(int width, int height, int depth)
193{
194 UnRef();
195
196 wxCHECK_MSG( (width > 0) && (height > 0), FALSE, wxT("invalid bitmap size") )
197
198 pixel_format_t pf_dummy, *pf;
199 int mglDepth = depth;
200
201 switch ( depth )
202 {
203 case -1:
204 wxASSERT_MSG( g_displayDC, wxT("MGL display DC not created yet.") );
205
206 g_displayDC->getPixelFormat(pf_dummy);
207 mglDepth = g_displayDC->getBitsPerPixel();
208 pf = &pf_dummy;
209 break;
210 case 1:
211 case 8:
212 pf = NULL;
213 break;
214 case 15:
215 pf = &gs_pixel_format_15;
216 break;
217 case 16:
218 pf = &gs_pixel_format_16;
219 break;
220 case 24:
221 pf = &gs_pixel_format_24;
222 break;
223 case 32:
224 pf = &gs_pixel_format_32;
225 break;
226 default:
227 wxASSERT_MSG( 0, wxT("invalid bitmap depth") );
228 return FALSE;
229 break;
230 }
231
232 m_refData = new wxBitmapRefData();
233 M_BMPDATA->m_mask = (wxMask *) NULL;
234 M_BMPDATA->m_palette = (wxPalette *) NULL;
235 M_BMPDATA->m_width = width;
236 M_BMPDATA->m_height = height;
237 M_BMPDATA->m_bpp = mglDepth;
238
239 if ( mglDepth != 1 )
240 {
241 M_BMPDATA->m_bitmap = MyMGL_createBitmap(width, height, mglDepth, pf);
242 }
243 else
244 {
245 // MGL does not support mono DCs, so we have to emulate them with
246 // 8bpp ones. We do that by using a special palette with color 0
247 // set to black and all other colors set to white.
248
249 M_BMPDATA->m_bitmap = MyMGL_createBitmap(width, height, 8, pf);
250 SetMonoPalette(wxColour(255, 255, 255), wxColour(0, 0, 0));
251 }
252
253 return Ok();
254}
255
256bool wxBitmap::CreateFromXpm(const char **bits)
257{
258 wxCHECK_MSG( bits != NULL, FALSE, wxT("invalid bitmap data") )
259
260 wxXPMDecoder decoder;
261 wxImage img = decoder.ReadData(bits);
262 wxCHECK_MSG( img.Ok(), FALSE, wxT("invalid bitmap data") )
263
264 *this = wxBitmap(img);
265
266 if ( wxTheBitmapList ) wxTheBitmapList->AddBitmap(this);
267
268 return TRUE;
269}
270
271wxBitmap::wxBitmap(const wxImage& image, int depth = -1)
272{
273 long width, height;
274
275 wxCHECK_RET( image.Ok(), wxT("invalid image") )
276
277 width = image.GetWidth();
278 height = image.GetHeight();
279
280 if ( !Create(width, height, depth) ) return;
281
282 MGLMemoryDC idc(width, height, 24, &gs_pixel_format_24,
283 width * 3, (void*)image.GetData(), NULL);
284 wxASSERT_MSG( idc.isValid(), wxT("cannot create custom MGLDC") );
285
286 MGLDevCtx *bdc = CreateTmpDC();
287
288 if ( depth <= 8 && image.HasPalette() )
289 SetPalette(image.GetPalette());
290
291 bdc->bitBlt(idc, 0, 0, width, height, 0, 0, MGL_REPLACE_MODE);
292 delete bdc;
293
294 if ( image.HasMask() )
295 {
296 wxImage mask_image = image.ConvertToMono(image.GetMaskRed(),
297 image.GetMaskGreen(),
298 image.GetMaskBlue());
299 mask_image.SetMask(FALSE);
300 wxBitmap mask_bmp(mask_image, 1);
301 SetMask(new wxMask(mask_bmp));
302 }
303}
304
305wxImage wxBitmap::ConvertToImage() const
306{
307 wxCHECK_MSG( Ok(), FALSE, wxT("invalid bitmap") );
308
309 long width, height;
310 width = GetWidth();
311 height = GetHeight();
312
313 wxImage image(width, height);
314 wxASSERT_MSG( image.Ok(), wxT("cannot create image") );
315
316 MGLMemoryDC idc(width, height, 24, &gs_pixel_format_24,
317 width * 3, (void*)image.GetData(), NULL);
318 wxASSERT_MSG( idc.isValid(), wxT("cannot create custom MGLDC") );
319
320 if ( M_BMPDATA->m_palette )
321 image.SetPalette(*(M_BMPDATA->m_palette));
322
323 if ( GetMask() )
324 {
325 // in consistency with other ports, we convert parts covered
326 // by the mask to <16,16,16> colour and set that colour to image's
327 // mask. We do that by OR-blitting the mask over image with
328 // bg colour set to black and fg colour to <16,16,16>
329
330 image.SetMaskColour(16, 16, 16);
331 image.SetMask(TRUE);
332
333 wxDC tmpDC;
334 tmpDC.SetMGLDC(&idc, FALSE);
335 tmpDC.SetBackground(wxBrush(wxColour(16,16,16), wxSOLID));
336 tmpDC.Clear();
337 tmpDC.DrawBitmap(*this, 0, 0, TRUE);
338 }
339 else
340 {
341 image.SetMask(FALSE);
342 idc.putBitmap(0, 0, M_BMPDATA->m_bitmap, MGL_REPLACE_MODE);
343 }
344
345 return image;
346}
347
348wxBitmap::wxBitmap(const wxBitmap& bmp)
349{
350 Ref(bmp);
351
352 if ( wxTheBitmapList ) wxTheBitmapList->AddBitmap(this);
353}
354
355wxBitmap::wxBitmap(const wxString &filename, wxBitmapType type)
356{
357 LoadFile(filename, type);
358
359 if ( wxTheBitmapList ) wxTheBitmapList->AddBitmap(this);
360}
361
362wxBitmap::wxBitmap(const char bits[], int width, int height, int depth)
363{
364 wxCHECK_RET( depth == 1, wxT("can only create mono bitmap from XBM data") );
365
366 if ( !Create(width, height, 1) ) return;
367 MGLDevCtx *bdc = CreateTmpDC();
368 wxCurrentDCSwitcher curDC(bdc);
369 bdc->setColor(1);
370 bdc->setBackColor(0);
371 bdc->clearDevice();
372 bdc->putMonoImage(0, 0, width, (width + 7) / 8, height, (void*)bits);
373 delete bdc;
374
375 if ( wxTheBitmapList ) wxTheBitmapList->AddBitmap(this);
376}
377
378wxBitmap::~wxBitmap()
379{
380 if ( wxTheBitmapList ) wxTheBitmapList->DeleteObject(this);
381}
382
383wxBitmap& wxBitmap::operator = (const wxBitmap& bmp)
384{
385 if ( *this == bmp ) return (*this);
386 Ref(bmp);
387 return *this;
388}
389
390bool wxBitmap::operator == (const wxBitmap& bmp) const
391{
392 return (m_refData == bmp.m_refData);
393}
394
395bool wxBitmap::operator != (const wxBitmap& bmp) const
396{
397 return (m_refData != bmp.m_refData);
398}
399
400bool wxBitmap::Ok() const
401{
402 return (m_refData != NULL && M_BMPDATA->m_bitmap != NULL);
403}
404
405int wxBitmap::GetHeight() const
406{
407 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
408
409 return M_BMPDATA->m_height;
410}
411
412int wxBitmap::GetWidth() const
413{
414 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
415
416 return M_BMPDATA->m_width;
417}
418
419int wxBitmap::GetDepth() const
420{
421 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
422
423 return M_BMPDATA->m_bpp;
424}
425
426wxMask *wxBitmap::GetMask() const
427{
428 wxCHECK_MSG( Ok(), (wxMask *) NULL, wxT("invalid bitmap") );
429
430 return M_BMPDATA->m_mask;
431}
432
433void wxBitmap::SetMask(wxMask *mask)
434{
435 wxCHECK_RET( Ok(), wxT("invalid bitmap") );
436
437 delete M_BMPDATA->m_mask;
438 M_BMPDATA->m_mask = mask;
439}
440
441bool wxBitmap::CopyFromIcon(const wxIcon& icon)
442{
443 wxBitmap *bmp = (wxBitmap*)(&icon);
444 *this = *bmp;
445 return TRUE;
446}
447
448wxBitmap wxBitmap::GetSubBitmap(const wxRect& rect) const
449{
450 wxCHECK_MSG( Ok() &&
451 (rect.x >= 0) && (rect.y >= 0) &&
452 (rect.x+rect.width <= M_BMPDATA->m_width) && (rect.y+rect.height <= M_BMPDATA->m_height),
453 wxNullBitmap, wxT("invalid bitmap or bitmap region") );
454
455 wxBitmap ret( rect.width, rect.height, M_BMPDATA->m_bpp );
456 wxASSERT_MSG( ret.Ok(), wxT("GetSubBitmap error") );
457
458 if ( GetPalette() )
459 ret.SetPalette(*GetPalette());
460
461 MGLDevCtx *tdc = ret.CreateTmpDC();
462 tdc->putBitmapSection(rect.x, rect.y,
463 rect.x + rect.width, rect.y + rect.height,
464 0, 0, M_BMPDATA->m_bitmap, MGL_REPLACE_MODE);
465 delete tdc;
466
467 if ( GetMask() )
468 {
469 wxBitmap submask = GetMask()->GetBitmap()->GetSubBitmap(rect);
470 ret.SetMask(new wxMask(submask));
471 }
472
473 return ret;
474}
475
476void wxBitmap::SetMonoPalette(const wxColour& fg, const wxColour& bg)
477{
478 wxCHECK_RET( Ok(), wxT("invalid bitmap") );
479
480 palette_t *mono = M_BMPDATA->m_bitmap->pal;
481
482 wxCHECK_RET( M_BMPDATA->m_bpp == 1, wxT("bitmap is not 1bpp") );
483 wxCHECK_RET( mono != NULL, wxT("bitmap w/o palette") );
484
485 mono[0].red = bg.Red();
486 mono[0].green = bg.Green();
487 mono[0].blue = bg.Blue();
488 mono[0].alpha = 0;
489 for (size_t i = 1; i < 256; i++)
490 {
491 mono[i].red = fg.Red();
492 mono[i].green = fg.Green();
493 mono[i].blue = fg.Blue();
494 mono[i].alpha = 0;
495 }
496}
497
498MGLDevCtx *wxBitmap::CreateTmpDC() const
499{
500 wxCHECK_MSG( Ok(), NULL, wxT("invalid bitmap") );
501
502 MGLDevCtx *tdc = new MGLMemoryDC(GetWidth(), GetHeight(),
503 M_BMPDATA->m_bitmap->bitsPerPixel,
504 M_BMPDATA->m_bitmap->pf,
505 M_BMPDATA->m_bitmap->bytesPerLine,
506 M_BMPDATA->m_bitmap->surface,
507 NULL);
508 wxCHECK_MSG( tdc->isValid(), NULL, wxT("cannot create temporary MGLDC") );
509
510 if ( M_BMPDATA->m_bitmap->pal != NULL )
511 {
512 int cnt;
513
514 switch (M_BMPDATA->m_bitmap->bitsPerPixel)
515 {
516 case 2: cnt = 2; break;
517 case 4: cnt = 16; break;
518 case 8: cnt = 256; break;
519 default:
520 wxFAIL_MSG( wxT("bitmap with this depth cannot have palette") );
521 break;
522 }
523
524 tdc->setPalette(M_BMPDATA->m_bitmap->pal, cnt, 0);
525 tdc->realizePalette(cnt, 0, FALSE);
526 }
527
528 return tdc;
529}
530
531bool wxBitmap::LoadFile(const wxString &name, wxBitmapType type)
532{
533 UnRef();
534
535 if ( type == wxBITMAP_TYPE_BMP || type == wxBITMAP_TYPE_PNG ||
536 type == wxBITMAP_TYPE_PCX || type == wxBITMAP_TYPE_JPEG )
537 {
538 // prevent accidental loading of bitmap from $MGL_ROOT:
539 if ( !wxFileExists(name) )
540 {
541 wxLogError(_("File %s does not exist."), name.c_str());
542 return FALSE;
543 }
544 }
545
546 wxBitmapHandler *handler = FindHandler(type);
547
548 if ( handler == NULL )
549 {
550 wxImage image;
551 if ( !image.LoadFile(name, type) || !image.Ok() )
552 {
553 wxLogError("no bitmap handler for type %d defined.", type);
554 return FALSE;
555 }
556 else
557 {
558 *this = wxBitmap(image);
559 return TRUE;
560 }
561 }
562
563 m_refData = new wxBitmapRefData();
564
565 return handler->LoadFile(this, name, type, -1, -1);
566}
567
568bool wxBitmap::SaveFile(const wxString& filename, wxBitmapType type, const wxPalette *palette) const
569{
570 wxCHECK_MSG( Ok(), FALSE, wxT("invalid bitmap") );
571
572 wxBitmapHandler *handler = FindHandler(type);
573
574 if ( handler == NULL )
575 {
576 wxImage image = ConvertToImage();
577 if ( palette )
578 image.SetPalette(*palette);
579
580 if ( image.Ok() )
581 return image.SaveFile(filename, type);
582 else
583 {
584 wxLogError("no bitmap handler for type %d defined.", type);
585 return FALSE;
586 }
587 }
588
589 return handler->SaveFile(this, filename, type, palette);
590}
591
592wxPalette *wxBitmap::GetPalette() const
593{
594 wxCHECK_MSG( Ok(), NULL, wxT("invalid bitmap") );
595
596 return M_BMPDATA->m_palette;
597}
598
599void wxBitmap::SetPalette(const wxPalette& palette)
600{
601 wxCHECK_RET( Ok(), wxT("invalid bitmap") );
602 wxCHECK_RET( GetDepth() > 1 && GetDepth() <= 8, wxT("cannot set palette for bitmap of this depth") );
603
604 delete M_BMPDATA->m_palette;
605 M_BMPDATA->m_palette = NULL;
606
607 if ( !palette.Ok() ) return;
608
609 M_BMPDATA->m_palette = new wxPalette(palette);
610
611 int cnt = palette.GetColoursCount();
612 palette_t *pal = palette.GetMGLpalette_t();
613 memcpy(M_BMPDATA->m_bitmap->pal, pal, cnt * sizeof(palette_t));
614}
615
616void wxBitmap::SetHeight(int height)
617{
618 if (!m_refData) m_refData = new wxBitmapRefData();
619
620 M_BMPDATA->m_height = height;
621}
622
623void wxBitmap::SetWidth(int width)
624{
625 if (!m_refData) m_refData = new wxBitmapRefData();
626
627 M_BMPDATA->m_width = width;
628}
629
630void wxBitmap::SetDepth(int depth)
631{
632 if (!m_refData) m_refData = new wxBitmapRefData();
633
634 M_BMPDATA->m_bpp = depth;
635}
636
637bitmap_t *wxBitmap::GetMGLbitmap_t() const
638{
639 return M_BMPDATA->m_bitmap;
640}
641
642
643
644//-----------------------------------------------------------------------------
645// wxBitmap I/O handlers
646//-----------------------------------------------------------------------------
647
648class wxMGLBitmapHandler: public wxBitmapHandler
649{
650public:
651 wxMGLBitmapHandler(wxBitmapType type,
652 const wxString& extension, const wxString& name);
653
654 virtual bool Create(wxBitmap *bitmap, void *data, long flags,
655 int width, int height, int depth = 1)
656 { return FALSE; }
657
658 virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
659 int desiredWidth, int desiredHeight);
660 virtual bool SaveFile(const wxBitmap *bitmap, const wxString& name,
661 int type, const wxPalette *palette = NULL);
662};
663
664wxMGLBitmapHandler::wxMGLBitmapHandler(wxBitmapType type,
665 const wxString& extension,
666 const wxString& name)
667 : wxBitmapHandler()
668{
669 SetType(type);
670 SetName(name);
671 SetExtension(extension);
672}
673
674bool wxMGLBitmapHandler::LoadFile(wxBitmap *bitmap, const wxString& name,
675 long flags,
676 int WXUNUSED(desiredWidth),
677 int WXUNUSED(desiredHeight))
678{
679 int width, height, bpp;
680 pixel_format_t pf;
681 wxString fullname;
682 wxMemoryDC dc;
683
684 switch (flags)
685 {
686 case wxBITMAP_TYPE_BMP_RESOURCE:
687 case wxBITMAP_TYPE_JPEG_RESOURCE:
688 case wxBITMAP_TYPE_PNG_RESOURCE:
689 case wxBITMAP_TYPE_PCX_RESOURCE:
690 fullname = name + wxT(".bmp");
691 break;
692 default:
693 fullname= name;
694 break;
695 }
696
697 switch (flags)
698 {
699 case wxBITMAP_TYPE_BMP:
700 case wxBITMAP_TYPE_BMP_RESOURCE:
701 if ( !MGL_getBitmapSize(fullname.mb_str(), &width, &height, &bpp, &pf) )
702 return FALSE;
703 bitmap->Create(width, height, -1);
704 if ( !bitmap->Ok() ) return FALSE;
705 dc.SelectObject(*bitmap);
706 if ( !dc.GetMGLDC()->loadBitmapIntoDC(fullname.mb_str(), 0, 0, TRUE) )
707 return FALSE;
708 break;
709
710 case wxBITMAP_TYPE_JPEG:
711 case wxBITMAP_TYPE_JPEG_RESOURCE:
712 if ( !MGL_getJPEGSize(fullname.mb_str(), &width, &height, &bpp, &pf) )
713 return FALSE;
714 bitmap->Create(width, height, -1);
715 if ( !bitmap->Ok() ) return FALSE;
716 dc.SelectObject(*bitmap);
717 if ( !dc.GetMGLDC()->loadJPEGIntoDC(fullname.mb_str(), 0, 0, TRUE) )
718 return FALSE;
719 break;
720
721 case wxBITMAP_TYPE_PNG:
722 case wxBITMAP_TYPE_PNG_RESOURCE:
723 if ( !MGL_getPNGSize(fullname.mb_str(), &width, &height, &bpp, &pf) )
724 return FALSE;
725 bitmap->Create(width, height, -1);
726 if ( !bitmap->Ok() ) return FALSE;
727 dc.SelectObject(*bitmap);
728 if ( !dc.GetMGLDC()->loadPNGIntoDC(fullname.mb_str(), 0, 0, TRUE) )
729 return FALSE;
730 break;
731
732 case wxBITMAP_TYPE_PCX:
733 case wxBITMAP_TYPE_PCX_RESOURCE:
734 if ( !MGL_getPCXSize(fullname.mb_str(), &width, &height, &bpp) )
735 return FALSE;
736 bitmap->Create(width, height, -1);
737 if ( !bitmap->Ok() ) return FALSE;
738 dc.SelectObject(*bitmap);
739 if ( !dc.GetMGLDC()->loadPCXIntoDC(fullname.mb_str(), 0, 0, TRUE) )
740 return FALSE;
741 break;
742
743 default:
744 wxFAIL_MSG(wxT("Unsupported image format."));
745 break;
746 }
747
748 return TRUE;
749}
750
751bool wxMGLBitmapHandler::SaveFile(const wxBitmap *bitmap, const wxString& name,
752 int type, const wxPalette * WXUNUSED(palette))
753{
754 wxMemoryDC mem;
755 MGLDevCtx *tdc;
756 int w = bitmap->GetWidth(),
757 h = bitmap->GetHeight();
758
759 mem.SelectObject(*bitmap);
760 tdc = mem.GetMGLDC();
761
762 switch (type)
763 {
764 case wxBITMAP_TYPE_BMP:
765 return tdc->saveBitmapFromDC(name.mb_str(), 0, 0, w, h);
766 break;
767 case wxBITMAP_TYPE_JPEG:
768 return tdc->saveJPEGFromDC(name.mb_str(), 0, 0, w, h, 75);
769 break;
770 case wxBITMAP_TYPE_PNG:
771 return tdc->savePNGFromDC(name.mb_str(), 0, 0, w, h);
772 break;
773 case wxBITMAP_TYPE_PCX:
774 return tdc->savePCXFromDC(name.mb_str(), 0, 0, w, h);
775 break;
776 default:
777 return FALSE;
778 break;
779 }
780}
781
782
783
784// let's handle PNGs in special way because they have alpha channel
785// which we can access via bitmap_t most easily
786class wxPNGBitmapHandler: public wxMGLBitmapHandler
787{
788public:
789 wxPNGBitmapHandler(wxBitmapType type,
790 const wxString& extension, const wxString& name)
791 : wxMGLBitmapHandler(type, extension, name) {}
792
793 virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
794 int desiredWidth, int desiredHeight);
795};
796
797bool wxPNGBitmapHandler::LoadFile(wxBitmap *bitmap, const wxString& name,
798 long flags,
799 int desiredWidth, int desiredHeight)
800{
801 int width, height, bpp;
802 pixel_format_t pf;
803 wxString fullname;
804
805 if ( flags == wxBITMAP_TYPE_PNG_RESOURCE )
806 fullname = name + wxT(".png");
807 else
808 fullname = name;
809
810 if ( !MGL_getPNGSize(fullname.mb_str(), &width, &height, &bpp, &pf) )
811 return FALSE;
812
813 if ( bpp != 32 )
814 {
815 // We can load ordinary PNGs faster with 'normal' MGL handler.
816 // Only RGBA PNGs need to be processed in special way because
817 // we have to convert alpha channel to mask
818 return wxMGLBitmapHandler::LoadFile(bitmap, name, flags,
819 desiredWidth, desiredHeight);
820 }
821
822 bitmap_t *bmp = MGL_loadPNG(fullname.mb_str(), TRUE);
823
824 if ( bmp == NULL ) return FALSE;
825
826 bitmap->Create(bmp->width, bmp->height, -1);
827 if ( !bitmap->Ok() ) return FALSE;
828
829 // convert bmp to display's depth and write it to *bitmap:
830 wxMemoryDC dc;
831 dc.SelectObject(*bitmap);
832 dc.GetMGLDC()->putBitmap(0, 0, bmp, MGL_REPLACE_MODE);
833 dc.SelectObject(wxNullBitmap);
834
835 // create mask, if bmp contains alpha channel (ARGB format):
836 if ( bmp->bitsPerPixel == 32 )
837 {
838 int x, y;
839 wxUint32 *s = (wxUint32*)bmp->surface;
840 for (y = 0; y < bmp->height; y++)
841 {
842 s = ((wxUint32*)bmp->surface) + y * bmp->bytesPerLine/4;
843 for (x = 0; x < bmp->width; x++, s ++)
844 {
845 if ( ((((*s) >> bmp->pf->rsvdPos) & bmp->pf->rsvdMask)
846 << bmp->pf->rsvdAdjust) < 128 )
847 *s = 0;
848 else
849 *s = 0x00FFFFFF; // white
850 }
851 }
852 wxBitmap mask(bmp->width, bmp->height, 1);
853 dc.SelectObject(mask);
854 dc.GetMGLDC()->putBitmap(0, 0, bmp, MGL_REPLACE_MODE);
855 dc.SelectObject(wxNullBitmap);
856 bitmap->SetMask(new wxMask(mask));
857 }
858
859 MGL_unloadBitmap(bmp);
860
861 return TRUE;
862}
863
864
865
866
867class wxICOBitmapHandler: public wxBitmapHandler
868{
869 public:
870 wxICOBitmapHandler(wxBitmapType type,
871 const wxString& extension, const wxString& name);
872
873 virtual bool Create(wxBitmap *bitmap, void *data, long flags,
874 int width, int height, int depth = 1)
875 { return FALSE; }
876
877 virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
878 int desiredWidth, int desiredHeight);
879 virtual bool SaveFile(const wxBitmap *bitmap, const wxString& name,
880 int type, const wxPalette *palette = NULL);
881};
882
883wxICOBitmapHandler::wxICOBitmapHandler(wxBitmapType type,
884 const wxString& extension,
885 const wxString& name)
886 : wxBitmapHandler()
887{
888 SetType(type);
889 SetName(name);
890 SetExtension(extension);
891}
892
893bool wxICOBitmapHandler::LoadFile(wxBitmap *bitmap, const wxString& name,
894 long flags,
895 int WXUNUSED(desiredWidth),
896 int WXUNUSED(desiredHeight))
897{
898 icon_t *icon = NULL;
899 MGLDevCtx *dc;
900
901 if ( flags == wxBITMAP_TYPE_ICO_RESOURCE )
902 icon = MGL_loadIcon(wxString(name + wxT(".ico")).mb_str(), TRUE);
903 else
904 icon = MGL_loadIcon(name.mb_str(), TRUE);
905
906 if ( icon == NULL ) return FALSE;
907
908 bitmap->Create(icon->xorMask.width, icon->xorMask.height);
909
910 wxMemoryDC mem;
911 mem.SelectObject(*bitmap);
912 dc = mem.GetMGLDC();
913 dc->putBitmap(0, 0, &(icon->xorMask), MGL_REPLACE_MODE);
914 mem.SelectObject(wxNullBitmap);
915
916 wxBitmap mask(icon->xorMask.width, icon->xorMask.height, 1);
917 mem.SelectObject(mask);
918 dc = mem.GetMGLDC();
919
920 wxCurrentDCSwitcher curDC(dc);
921 dc->setColor(0);
922 dc->setBackColor(1);
923 dc->clearDevice();
924 dc->putMonoImage(0, 0, icon->xorMask.width, icon->byteWidth,
925 icon->xorMask.height, (void*)icon->andMask);
926
927 bitmap->SetMask(new wxMask(mask));
928
929 MGL_unloadIcon(icon);
930
931 return TRUE;
932}
933
934bool wxICOBitmapHandler::SaveFile(const wxBitmap *bitmap, const wxString& name,
935 int type, const wxPalette * WXUNUSED(palette))
936{
937 return FALSE;
938}
939
940
941
942
943/*static*/ void wxBitmap::InitStandardHandlers()
944{
945 AddHandler(new wxMGLBitmapHandler(wxBITMAP_TYPE_BMP, wxT("bmp"), wxT("Windows bitmap")));
946 AddHandler(new wxMGLBitmapHandler(wxBITMAP_TYPE_BMP_RESOURCE, wxEmptyString, wxT("Windows bitmap resource")));
947 AddHandler(new wxMGLBitmapHandler(wxBITMAP_TYPE_JPEG, wxT("jpg"), wxT("JPEG image")));
948 AddHandler(new wxMGLBitmapHandler(wxBITMAP_TYPE_JPEG_RESOURCE, wxEmptyString, wxT("JPEG resource")));
949 AddHandler(new wxMGLBitmapHandler(wxBITMAP_TYPE_PCX, wxT("pcx"), wxT("PCX image")));
950 AddHandler(new wxMGLBitmapHandler(wxBITMAP_TYPE_PCX_RESOURCE, wxEmptyString, wxT("PCX resource")));
951
952 AddHandler(new wxPNGBitmapHandler(wxBITMAP_TYPE_PNG, wxT("png"), wxT("PNG image")));
953 AddHandler(new wxPNGBitmapHandler(wxBITMAP_TYPE_PNG_RESOURCE, wxEmptyString, wxT("PNG resource")));
954
955 AddHandler(new wxICOBitmapHandler(wxBITMAP_TYPE_ICO, wxT("ico"), wxT("Icon resource")));
956 AddHandler(new wxICOBitmapHandler(wxBITMAP_TYPE_ICO_RESOURCE, wxEmptyString, wxT("Icon resource")));
957}