1 /////////////////////////////////////////////////////////////////////////////
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "bitmapbase.h"
14 #pragma implementation "bitmap.h"
19 #include "wx/bitmap.h"
23 #include "wx/xpmdecod.h"
25 #if !USE_SHARED_LIBRARIES
26 IMPLEMENT_DYNAMIC_CLASS(wxBitmap
, wxGDIObject
)
27 IMPLEMENT_DYNAMIC_CLASS(wxMask
, wxObject
)
28 IMPLEMENT_ABSTRACT_CLASS(wxBitmapBase
, wxGDIObject
)
29 IMPLEMENT_ABSTRACT_CLASS(wxBitmapHandlerBase
, wxObject
)
33 #include <ApplicationServices/ApplicationServices.h>
35 #include <PictUtils.h>
38 #include "wx/mac/uma.h"
40 CTabHandle
wxMacCreateColorTable( int numColors
)
42 CTabHandle newColors
; /* Handle to the new color table */
44 /* Allocate memory for the color table */
45 newColors
= (CTabHandle
)NewHandleClear( sizeof (ColorTable
) +
46 sizeof (ColorSpec
) * (numColors
- 1) );
49 /* Initialize the fields */
50 (**newColors
).ctSeed
= GetCTSeed();
51 (**newColors
).ctFlags
= 0;
52 (**newColors
).ctSize
= numColors
- 1;
53 /* Initialize the table of colors */
58 void wxMacDestroyColorTable( CTabHandle colors
)
60 DisposeHandle( (Handle
) colors
) ;
63 void wxMacSetColorTableEntry( CTabHandle newColors
, int index
, int red
, int green
, int blue
)
65 (**newColors
).ctTable
[index
].value
= index
;
66 (**newColors
).ctTable
[index
].rgb
.red
= 0 ;// someRedValue;
67 (**newColors
).ctTable
[index
].rgb
.green
= 0 ; // someGreenValue;
68 (**newColors
).ctTable
[index
].rgb
.blue
= 0 ; // someBlueValue;
71 GWorldPtr
wxMacCreateGWorld( int width
, int height
, int depth
)
75 Rect rect
= { 0 , 0 , height
, width
} ;
79 depth
= wxDisplayDepth() ;
82 err
= NewGWorld( &port
, depth
, &rect
, NULL
, NULL
, 0 ) ;
90 void wxMacDestroyGWorld( GWorldPtr gw
)
96 PicHandle
wxMacCreatePict(GWorldPtr wp
, GWorldPtr mask
)
101 PicHandle pict
; // this is the Picture we give back
103 RGBColor gray
= { 0xCCCC ,0xCCCC , 0xCCCC } ;
104 RGBColor white
= { 0xffff ,0xffff , 0xffff } ;
105 RGBColor black
= { 0x0000 ,0x0000 , 0x0000 } ;
107 unsigned char *maskimage
= NULL
;
109 GetPortBounds( wp
, &portRect
) ;
110 int width
= portRect
.right
- portRect
.left
;
111 int height
= portRect
.bottom
- portRect
.top
;
113 LockPixels( GetGWorldPixMap( wp
) ) ;
114 GetGWorld( &origPort
, &origDev
) ;
118 maskimage
= (unsigned char*) malloc( width
* height
) ;
119 SetGWorld( mask
, NULL
) ;
120 LockPixels( GetGWorldPixMap( mask
) ) ;
121 for ( int y
= 0 ; y
< height
; y
++ )
123 for( int x
= 0 ; x
< width
; x
++ )
127 GetCPixel( x
+ portRect
.left
, y
+ portRect
.top
, &col
) ;
128 maskimage
[y
*width
+ x
] = ( col
.red
== 0 ) ; // for monochrome masks
131 UnlockPixels( GetGWorldPixMap( mask
) ) ;
134 SetGWorld( wp
, NULL
) ;
136 pict
= OpenPicture(&portRect
); // open a picture, this disables drawing
142 RGBForeColor( &black
) ;
143 RGBBackColor( &white
) ;
144 PenMode(transparent
);
146 for ( int y
= 0 ; y
< height
; ++y
)
148 for( int x
= 0 ; x
< width
; ++x
)
150 if ( maskimage
[y
*width
+ x
] )
154 GetCPixel( x
+ portRect
.left
, y
+ portRect
.top
, &col
) ;
155 SetCPixel( x
+ portRect
.left
, y
+ portRect
.top
, &col
) ;
158 // With transparency set this sets a blank pixel not a white one
159 SetCPixel( x
+ portRect
.left
, y
+ portRect
.top
, &white
);
168 RGBBackColor( &gray
) ;
169 EraseRect(&portRect
);
170 RGBForeColor( &black
) ;
171 RGBBackColor( &white
) ;
173 CopyBits(GetPortBitMapForCopyBits(wp
), /* src PixMap - we copy image over
175 GetPortBitMapForCopyBits(wp
), // dst PixMap - no drawing occurs
176 &portRect
, // srcRect - it will be recorded and compressed -
177 &portRect
, // dstRect - into the picture that is open -
178 srcCopy
,NULL
); // copyMode and no clip region
180 ClosePicture(); // We are done recording the picture
181 UnlockPixels( GetGWorldPixMap( wp
) ) ;
182 SetGWorld( origPort
, origDev
) ;
184 return pict
; // return our groovy pict handle
187 wxBitmapRefData::wxBitmapRefData()
199 m_bitmapType
= kMacBitmapTypeUnknownType
;
202 wxBitmapRefData::~wxBitmapRefData()
204 switch (m_bitmapType
)
206 case kMacBitmapTypePict
:
210 KillPicture( m_hPict
) ;
215 case kMacBitmapTypeGrafWorld
:
219 wxMacDestroyGWorld( m_hBitmap
) ;
224 case kMacBitmapTypeIcon
:
227 DisposeCIcon( m_hIcon
) ;
243 wxList
wxBitmapBase::sm_handlers
;
246 bool wxBitmap::CopyFromIcon(const wxIcon
& icon
)
255 if ( wxTheBitmapList
)
256 wxTheBitmapList
->AddBitmap(this);
259 wxBitmap::~wxBitmap()
262 wxTheBitmapList
->DeleteObject(this);
265 wxBitmap::wxBitmap(const char bits
[], int the_width
, int the_height
, int no_bits
)
267 m_refData
= new wxBitmapRefData
;
269 M_BITMAPDATA
->m_width
= the_width
;
270 M_BITMAPDATA
->m_height
= the_height
;
271 M_BITMAPDATA
->m_depth
= no_bits
;
272 M_BITMAPDATA
->m_numColors
= 0;
275 M_BITMAPDATA
->m_bitmapType
= kMacBitmapTypeGrafWorld
;
276 M_BITMAPDATA
->m_hBitmap
= wxMacCreateGWorld( the_width
, the_height
, no_bits
) ;
277 M_BITMAPDATA
->m_ok
= (M_BITMAPDATA
->m_hBitmap
!= NULL
) ;
280 GDHandle origDevice
;
282 GetGWorld( &origPort
, &origDevice
) ;
283 SetGWorld( M_BITMAPDATA
->m_hBitmap
, NULL
) ;
284 LockPixels( GetGWorldPixMap( M_BITMAPDATA
->m_hBitmap
) ) ;
286 // bits is a char array
288 unsigned char* linestart
= (unsigned char*) bits
;
289 int linesize
= ( the_width
/ (sizeof(unsigned char) * 8)) ;
290 if ( the_width
% (sizeof(unsigned char) * 8) ) {
291 linesize
+= sizeof(unsigned char);
294 RGBColor colors
[2] = {
295 { 0xFFFF , 0xFFFF , 0xFFFF } ,
299 for ( int y
= 0 ; y
< the_height
; ++y
, linestart
+= linesize
)
301 for ( int x
= 0 ; x
< the_width
; ++x
)
305 int mask
= 1 << bit
;
306 if ( linestart
[index
] & mask
)
308 SetCPixel( x
, y
, &colors
[1] ) ;
312 SetCPixel( x
, y
, &colors
[0] ) ;
316 UnlockPixels( GetGWorldPixMap( M_BITMAPDATA
->m_hBitmap
) ) ;
318 SetGWorld( origPort
, origDevice
) ;
322 wxFAIL_MSG(wxT("multicolor BITMAPs not yet implemented"));
325 if ( wxTheBitmapList
) {
326 wxTheBitmapList
->AddBitmap(this);
330 wxBitmap::wxBitmap(int w
, int h
, int d
)
332 (void)Create(w
, h
, d
);
334 if ( wxTheBitmapList
)
335 wxTheBitmapList
->AddBitmap(this);
338 wxBitmap::wxBitmap(void *data
, wxBitmapType type
, int width
, int height
, int depth
)
340 (void) Create(data
, type
, width
, height
, depth
);
342 if ( wxTheBitmapList
)
343 wxTheBitmapList
->AddBitmap(this);
346 wxBitmap::wxBitmap(const wxString
& filename
, wxBitmapType type
)
348 LoadFile(filename
, type
);
350 if ( wxTheBitmapList
)
351 wxTheBitmapList
->AddBitmap(this);
354 bool wxBitmap::CreateFromXpm(const char **bits
)
356 wxCHECK_MSG( bits
!= NULL
, FALSE
, wxT("invalid bitmap data") )
357 wxXPMDecoder decoder
;
358 wxImage img
= decoder
.ReadData(bits
);
359 wxCHECK_MSG( img
.Ok(), FALSE
, wxT("invalid bitmap data") )
360 *this = wxBitmap(img
);
361 if ( wxTheBitmapList
) wxTheBitmapList
->AddBitmap(this);
365 wxBitmap::wxBitmap(const char **bits
)
367 (void) CreateFromXpm(bits
);
370 wxBitmap::wxBitmap(char **bits
)
372 (void) CreateFromXpm((const char **)bits
);
375 wxBitmap
wxBitmap::GetSubBitmap(const wxRect
&rect
) const
378 (rect
.x
>= 0) && (rect
.y
>= 0) &&
379 (rect
.x
+rect
.width
<= GetWidth()) &&
380 (rect
.y
+rect
.height
<= GetHeight()),
381 wxNullBitmap
, wxT("invalid bitmap or bitmap region") );
384 wxBitmap
ret( rect
.width
, rect
.height
, GetDepth() );
385 wxASSERT_MSG( ret
.Ok(), wxT("GetSubBitmap error") );
390 GetGWorld( &origPort
, &origDevice
);
392 // Update the subbitmaps reference data
393 wxBitmapRefData
*ref
= (wxBitmapRefData
*)ret
.GetRefData();
395 ref
->m_numColors
= M_BITMAPDATA
->m_numColors
;
396 ref
->m_bitmapPalette
= M_BITMAPDATA
->m_bitmapPalette
;
397 ref
->m_bitmapType
= M_BITMAPDATA
->m_bitmapType
;
399 // Copy sub region of this bitmap
400 if(M_BITMAPDATA
->m_bitmapType
== kMacBitmapTypePict
)
402 printf("GetSubBitmap: Copy a region of a Pict structure - TODO\n");
404 else if(M_BITMAPDATA
->m_bitmapType
== kMacBitmapTypeGrafWorld
)
409 WXHBITMAP submask
, mask
;
412 mask
= GetMask()->GetMaskBitmap();
413 submask
= wxMacCreateGWorld(rect
.width
, rect
.height
, 1);
414 LockPixels(GetGWorldPixMap(mask
));
415 LockPixels(GetGWorldPixMap(submask
));
417 for(int yy
= 0; yy
< rect
.height
; yy
++)
419 for(int xx
= 0; xx
< rect
.width
; xx
++)
421 SetGWorld(mask
, NULL
);
422 GetCPixel(rect
.x
+ xx
, rect
.y
+ yy
, &color
);
423 SetGWorld(submask
, NULL
);
424 SetCPixel(xx
,yy
, &color
);
427 UnlockPixels(GetGWorldPixMap(mask
));
428 UnlockPixels(GetGWorldPixMap(submask
));
429 ref
->m_bitmapMask
= new wxMask
;
430 ref
->m_bitmapMask
->SetMaskBitmap(submask
);
436 WXHBITMAP subbitmap
, bitmap
;
439 bitmap
= GetHBITMAP();
440 subbitmap
= wxMacCreateGWorld(rect
.width
, rect
.height
, GetDepth());
441 LockPixels(GetGWorldPixMap(bitmap
));
442 LockPixels(GetGWorldPixMap(subbitmap
));
444 for(int yy
= 0; yy
< rect
.height
; yy
++)
446 for(int xx
= 0; xx
< rect
.width
; xx
++)
448 SetGWorld(bitmap
, NULL
);
449 GetCPixel(rect
.x
+ xx
, rect
.y
+ yy
, &color
);
450 SetGWorld(subbitmap
, NULL
);
451 SetCPixel(xx
, yy
, &color
);
454 UnlockPixels(GetGWorldPixMap(bitmap
));
455 UnlockPixels(GetGWorldPixMap(subbitmap
));
456 ret
.SetHBITMAP(subbitmap
);
459 SetGWorld( origPort
, origDevice
);
464 bool wxBitmap::Create(int w
, int h
, int d
)
468 m_refData
= new wxBitmapRefData
;
470 M_BITMAPDATA
->m_width
= w
;
471 M_BITMAPDATA
->m_height
= h
;
472 M_BITMAPDATA
->m_depth
= d
;
474 M_BITMAPDATA
->m_bitmapType
= kMacBitmapTypeGrafWorld
;
475 M_BITMAPDATA
->m_hBitmap
= wxMacCreateGWorld( w
, h
, d
) ;
476 M_BITMAPDATA
->m_ok
= (M_BITMAPDATA
->m_hBitmap
!= NULL
) ;
477 return M_BITMAPDATA
->m_ok
;
480 int wxBitmap::GetBitmapType() const
482 wxCHECK_MSG( Ok(), kMacBitmapTypeUnknownType
, wxT("invalid bitmap") );
484 return M_BITMAPDATA
->m_bitmapType
;
487 void wxBitmap::SetHBITMAP(WXHBITMAP bmp
)
489 M_BITMAPDATA
->m_bitmapType
= kMacBitmapTypeGrafWorld
;
490 M_BITMAPDATA
->m_hBitmap
= bmp
;
491 M_BITMAPDATA
->m_ok
= (M_BITMAPDATA
->m_hBitmap
!= NULL
) ;
494 bool wxBitmap::LoadFile(const wxString
& filename
, wxBitmapType type
)
498 wxBitmapHandler
*handler
= FindHandler(type
);
502 m_refData
= new wxBitmapRefData
;
504 return handler
->LoadFile(this, filename
, type
, -1, -1);
508 wxImage
loadimage(filename
, type
);
509 if (loadimage
.Ok()) {
514 wxLogWarning("no bitmap handler for type %d defined.", type
);
518 bool wxBitmap::Create(void *data
, wxBitmapType type
, int width
, int height
, int depth
)
522 m_refData
= new wxBitmapRefData
;
524 wxBitmapHandler
*handler
= FindHandler(type
);
526 if ( handler
== NULL
) {
527 wxLogWarning("no bitmap handler for type %d defined.", type
);
532 return handler
->Create(this, data
, type
, width
, height
, depth
);
535 wxBitmap::wxBitmap(const wxImage
& image
, int depth
)
537 wxCHECK_RET( image
.Ok(), wxT("invalid image") )
538 wxCHECK_RET( depth
== -1, wxT("invalid bitmap depth") )
540 m_refData
= new wxBitmapRefData();
542 if (wxTheBitmapList
) wxTheBitmapList
->AddBitmap(this);
544 // width and height of the device-dependent bitmap
545 int width
= image
.GetWidth();
546 int height
= image
.GetHeight();
550 Create( width
, height
, wxDisplayDepth() ) ;
551 wxBitmap
maskBitmap( width
, height
, 1);
554 GDHandle origDevice
;
556 LockPixels( GetGWorldPixMap(GetHBITMAP()) );
557 LockPixels( GetGWorldPixMap(maskBitmap
.GetHBITMAP()) );
559 GetGWorld( &origPort
, &origDevice
) ;
560 SetGWorld( GetHBITMAP() , NULL
) ;
563 wxColour rgb
, maskcolor(image
.GetMaskRed(), image
.GetMaskGreen(), image
.GetMaskBlue());
565 RGBColor white
= { 0xffff, 0xffff, 0xffff };
566 RGBColor black
= { 0 , 0 , 0 };
568 register unsigned char* data
= image
.GetData();
571 for (int y
= 0; y
< height
; y
++)
573 for (int x
= 0; x
< width
; x
++)
575 rgb
.Set(data
[index
++], data
[index
++], data
[index
++]);
576 color
= rgb
.GetPixel();
577 SetCPixel( x
, y
, &color
) ;
580 SetGWorld(maskBitmap
.GetHBITMAP(), NULL
);
581 if (rgb
== maskcolor
) {
582 SetCPixel(x
,y
, &white
);
585 SetCPixel(x
,y
, &black
);
587 SetGWorld(GetHBITMAP(), NULL
);
593 if ( image
.HasMask() ) {
594 SetMask(new wxMask( maskBitmap
));
597 UnlockPixels( GetGWorldPixMap(GetHBITMAP()) );
598 UnlockPixels( GetGWorldPixMap(maskBitmap
.GetHBITMAP()) );
599 SetGWorld( origPort
, origDevice
);
602 wxImage
wxBitmap::ConvertToImage() const
606 wxCHECK_MSG( Ok(), wxNullImage
, wxT("invalid bitmap") );
608 // create an wxImage object
609 int width
= GetWidth();
610 int height
= GetHeight();
611 image
.Create( width
, height
);
613 unsigned char *data
= image
.GetData();
615 wxCHECK_MSG( data
, wxNullImage
, wxT("Could not allocate data for image") );
621 // background color set to RGB(16,16,16) in consistent with wxGTK
622 unsigned char mask_r
=16, mask_g
=16, mask_b
=16;
624 wxMask
*mask
= GetMask();
626 GetGWorld( &origPort
, &origDevice
);
627 LockPixels(GetGWorldPixMap(GetHBITMAP()));
628 SetGWorld( GetHBITMAP(), NULL
);
630 // Copy data into image
632 for (int yy
= 0; yy
< height
; yy
++)
634 for (int xx
= 0; xx
< width
; xx
++)
636 GetCPixel(xx
,yy
, &color
);
637 r
= ((color
.red
) >> 8);
638 g
= ((color
.green
) >> 8);
639 b
= ((color
.blue
) >> 8);
645 if (mask
->PointMasked(xx
,yy
))
647 data
[index
] = mask_r
;
648 data
[index
+ 1] = mask_g
;
649 data
[index
+ 2] = mask_b
;
657 image
.SetMaskColour( mask_r
, mask_g
, mask_b
);
658 image
.SetMask( true );
662 UnlockPixels(GetGWorldPixMap(GetHBITMAP()));
663 SetGWorld(origPort
, origDevice
);
669 bool wxBitmap::SaveFile(const wxString
& filename
, wxBitmapType type
,
670 const wxPalette
*palette
) const
672 wxBitmapHandler
*handler
= FindHandler(type
);
676 return handler
->SaveFile(this, filename
, type
, palette
);
680 wxImage image
= ConvertToImage();
682 return image
.SaveFile(filename
, type
);
685 wxLogWarning("no bitmap handler for type %d defined.", type
);
689 bool wxBitmap::Ok() const
691 return (M_BITMAPDATA
&& M_BITMAPDATA
->m_ok
);
694 int wxBitmap::GetHeight() const
696 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
698 return M_BITMAPDATA
->m_height
;
701 int wxBitmap::GetWidth() const
703 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
705 return M_BITMAPDATA
->m_width
;
708 int wxBitmap::GetDepth() const
710 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
712 return M_BITMAPDATA
->m_depth
;
715 int wxBitmap::GetQuality() const
717 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
719 return M_BITMAPDATA
->m_quality
;
722 wxMask
*wxBitmap::GetMask() const
724 wxCHECK_MSG( Ok(), (wxMask
*) NULL
, wxT("invalid bitmap") );
726 return M_BITMAPDATA
->m_bitmapMask
;
729 void wxBitmap::SetWidth(int w
)
732 m_refData
= new wxBitmapRefData
;
734 M_BITMAPDATA
->m_width
= w
;
737 void wxBitmap::SetHeight(int h
)
740 m_refData
= new wxBitmapRefData
;
742 M_BITMAPDATA
->m_height
= h
;
745 void wxBitmap::SetDepth(int d
)
748 m_refData
= new wxBitmapRefData
;
750 M_BITMAPDATA
->m_depth
= d
;
753 void wxBitmap::SetQuality(int q
)
756 m_refData
= new wxBitmapRefData
;
758 M_BITMAPDATA
->m_quality
= q
;
761 void wxBitmap::SetOk(bool isOk
)
764 m_refData
= new wxBitmapRefData
;
766 M_BITMAPDATA
->m_ok
= isOk
;
769 wxPalette
*wxBitmap::GetPalette() const
771 wxCHECK_MSG( Ok(), NULL
, wxT("Invalid bitmap GetPalette()") );
773 return &M_BITMAPDATA
->m_bitmapPalette
;
776 void wxBitmap::SetPalette(const wxPalette
& palette
)
779 m_refData
= new wxBitmapRefData
;
781 M_BITMAPDATA
->m_bitmapPalette
= palette
;
784 void wxBitmap::SetMask(wxMask
*mask
)
787 m_refData
= new wxBitmapRefData
;
789 // Remove existing mask if there is one.
790 if (M_BITMAPDATA
->m_bitmapMask
)
791 delete M_BITMAPDATA
->m_bitmapMask
;
793 M_BITMAPDATA
->m_bitmapMask
= mask
;
796 WXHBITMAP
wxBitmap::GetHBITMAP() const
798 wxCHECK_MSG( Ok(), NULL
, wxT("invalid bitmap") );
800 return M_BITMAPDATA
->m_hBitmap
;
803 PicHandle
wxBitmap::GetPict() const
805 wxCHECK_MSG( Ok(), NULL
, wxT("invalid bitmap") );
807 PicHandle picture
; // This is the returned picture
809 // If bitmap already in Pict format return pointer
810 if(M_BITMAPDATA
->m_bitmapType
== kMacBitmapTypePict
) {
811 return M_BITMAPDATA
->m_hPict
;
813 else if(M_BITMAPDATA
->m_bitmapType
!= kMacBitmapTypeGrafWorld
) {
818 RGBColor gray
= { 0xCCCC ,0xCCCC , 0xCCCC } ;
819 RGBColor white
= { 0xffff ,0xffff , 0xffff } ;
820 RGBColor black
= { 0x0000 ,0x0000 , 0x0000 } ;
826 GetPortBounds( GetHBITMAP() , &portRect
) ;
827 int width
= portRect
.right
- portRect
.left
;
828 int height
= portRect
.bottom
- portRect
.top
;
830 LockPixels( GetGWorldPixMap( GetHBITMAP() ) ) ;
831 GetGWorld( &origPort
, &origDev
) ;
835 SetGWorld( GetHBITMAP() , NULL
) ;
837 picture
= OpenPicture(&portRect
); // open a picture, this disables drawing
845 RGBColor trans
= white
;
847 RGBBackColor( &gray
);
848 EraseRect( &portRect
);
849 RGBColor trans
= gray
;
851 RGBForeColor( &black
) ;
852 RGBBackColor( &white
) ;
853 PenMode(transparent
);
855 for ( int y
= 0 ; y
< height
; ++y
)
857 for( int x
= 0 ; x
< width
; ++x
)
859 if ( !mask
->PointMasked(x
,y
) )
863 GetCPixel( x
+ portRect
.left
, y
+ portRect
.top
, &col
) ;
864 SetCPixel( x
+ portRect
.left
, y
+ portRect
.top
, &col
) ;
867 // With transparency this sets a blank pixel
868 SetCPixel( x
+ portRect
.left
, y
+ portRect
.top
, &trans
);
875 RGBBackColor( &gray
) ;
876 EraseRect(&portRect
);
877 RGBForeColor( &black
) ;
878 RGBBackColor( &white
) ;
880 CopyBits(GetPortBitMapForCopyBits(GetHBITMAP()),
881 // src PixMap - we copy image over itself -
882 GetPortBitMapForCopyBits(GetHBITMAP()),
883 // dst PixMap - no drawing occurs
884 &portRect
, // srcRect - it will be recorded and compressed -
885 &portRect
, // dstRect - into the picture that is open -
886 srcCopy
,NULL
); // copyMode and no clip region
888 ClosePicture(); // We are done recording the picture
889 UnlockPixels( GetGWorldPixMap( GetHBITMAP() ) ) ;
890 SetGWorld( origPort
, origDev
) ;
892 return picture
; // return our groovy pict handle
895 void wxBitmap::AddHandler(wxBitmapHandler
*handler
)
897 sm_handlers
.Append(handler
);
900 void wxBitmap::InsertHandler(wxBitmapHandler
*handler
)
902 sm_handlers
.Insert(handler
);
905 bool wxBitmap::RemoveHandler(const wxString
& name
)
907 wxBitmapHandler
*handler
= FindHandler(name
);
910 sm_handlers
.DeleteObject(handler
);
917 wxBitmapHandler
*wxBitmap::FindHandler(const wxString
& name
)
919 wxNode
*node
= sm_handlers
.First();
922 wxBitmapHandler
*handler
= (wxBitmapHandler
*)node
->Data();
923 if ( handler
->GetName() == name
)
930 wxBitmapHandler
*wxBitmap::FindHandler(const wxString
& extension
, wxBitmapType type
)
932 wxNode
*node
= sm_handlers
.First();
935 wxBitmapHandler
*handler
= (wxBitmapHandler
*)node
->Data();
936 if ( handler
->GetExtension() == extension
&&
937 (type
== -1 || handler
->GetType() == type
) )
944 wxBitmapHandler
*wxBitmap::FindHandler(wxBitmapType type
)
946 wxNode
*node
= sm_handlers
.First();
949 wxBitmapHandler
*handler
= (wxBitmapHandler
*)node
->Data();
950 if (handler
->GetType() == type
)
966 // Construct a mask from a bitmap and a colour indicating
967 // the transparent area
968 wxMask::wxMask(const wxBitmap
& bitmap
, const wxColour
& colour
)
971 Create(bitmap
, colour
);
974 // Construct a mask from a bitmap and a palette index indicating
975 // the transparent area
976 wxMask::wxMask(const wxBitmap
& bitmap
, int paletteIndex
)
979 Create(bitmap
, paletteIndex
);
982 // Construct a mask from a mono bitmap (copies the bitmap).
983 wxMask::wxMask(const wxBitmap
& bitmap
)
993 wxMacDestroyGWorld( m_maskBitmap
) ;
994 m_maskBitmap
= NULL
;
998 // Create a mask from a mono bitmap (copies the bitmap).
999 bool wxMask::Create(const wxBitmap
& bitmap
)
1003 wxMacDestroyGWorld( m_maskBitmap
) ;
1004 m_maskBitmap
= NULL
;
1006 wxCHECK_MSG( bitmap
.GetBitmapType() == kMacBitmapTypeGrafWorld
, false,
1007 wxT("Cannot create mask from this bitmap type (TODO)"));
1008 // other types would require a temporary bitmap. not yet implemented
1010 wxCHECK_MSG( bitmap
.Ok(), false, wxT("Invalid bitmap"));
1012 wxCHECK_MSG(bitmap
.GetDepth() == 1, false,
1013 wxT("Cannot create mask from colour bitmap"));
1015 m_maskBitmap
= wxMacCreateGWorld(bitmap
.GetWidth(), bitmap
.GetHeight(), 1);
1016 Rect rect
= { 0,0, bitmap
.GetHeight(), bitmap
.GetWidth() };
1018 LockPixels( GetGWorldPixMap(m_maskBitmap
) );
1019 LockPixels( GetGWorldPixMap(bitmap
.GetHBITMAP()) );
1020 CopyBits(GetPortBitMapForCopyBits(bitmap
.GetHBITMAP()),
1021 GetPortBitMapForCopyBits(m_maskBitmap
),
1022 &rect
, &rect
, srcCopy
, 0);
1023 UnlockPixels( GetGWorldPixMap(m_maskBitmap
) );
1024 UnlockPixels( GetGWorldPixMap(bitmap
.GetHBITMAP()) );
1029 // Create a mask from a bitmap and a palette index indicating
1030 // the transparent area
1031 bool wxMask::Create(const wxBitmap
& bitmap
, int paletteIndex
)
1034 wxCHECK_MSG( 0, false, wxT("Not implemented"));
1038 // Create a mask from a bitmap and a colour indicating
1039 // the transparent area
1040 bool wxMask::Create(const wxBitmap
& bitmap
, const wxColour
& colour
)
1044 wxMacDestroyGWorld( m_maskBitmap
) ;
1045 m_maskBitmap
= NULL
;
1047 wxCHECK_MSG( bitmap
.GetBitmapType() == kMacBitmapTypeGrafWorld
, false,
1048 wxT("Cannot create mask from this bitmap type (TODO)"));
1049 // other types would require a temporary bitmap. not yet implemented
1051 wxCHECK_MSG( bitmap
.Ok(), false, wxT("Illigal bitmap"));
1053 m_maskBitmap
= wxMacCreateGWorld( bitmap
.GetWidth() , bitmap
.GetHeight() , 1 );
1054 LockPixels( GetGWorldPixMap( m_maskBitmap
) );
1055 LockPixels( GetGWorldPixMap( bitmap
.GetHBITMAP() ) );
1056 RGBColor maskColor
= colour
.GetPixel();
1058 // this is not very efficient, but I can't think
1059 // of a better way of doing it
1061 GDHandle origDevice
;
1063 RGBColor colors
[2] = {
1064 { 0xFFFF, 0xFFFF, 0xFFFF },
1067 GetGWorld( &origPort
, &origDevice
) ;
1068 for (int w
= 0; w
< bitmap
.GetWidth(); w
++)
1070 for (int h
= 0; h
< bitmap
.GetHeight(); h
++)
1072 SetGWorld( bitmap
.GetHBITMAP(), NULL
) ;
1073 GetCPixel( w
, h
, &col
) ;
1074 SetGWorld( m_maskBitmap
, NULL
) ;
1075 if (col
.red
== maskColor
.red
&& col
.green
== maskColor
.green
&& col
.blue
== maskColor
.blue
)
1077 SetCPixel( w
, h
, &colors
[0] ) ;
1081 SetCPixel( w
, h
, &colors
[1] ) ;
1085 UnlockPixels( GetGWorldPixMap( (CGrafPtr
) m_maskBitmap
) ) ;
1086 UnlockPixels( GetGWorldPixMap( bitmap
.GetHBITMAP() ) ) ;
1087 SetGWorld( origPort
, origDevice
) ;
1092 bool wxMask::PointMasked(int x
, int y
)
1095 GDHandle origDevice
;
1099 GetGWorld( &origPort
, &origDevice
);
1101 //Set port to mask and see if it masked (1) or not ( 0 )
1102 SetGWorld(m_maskBitmap
, NULL
);
1103 LockPixels(GetGWorldPixMap(m_maskBitmap
));
1104 GetCPixel(x
,y
, &color
);
1105 masked
= !(color
.red
== 0 && color
.green
== 0 && color
.blue
== 0);
1106 UnlockPixels(GetGWorldPixMap(m_maskBitmap
));
1108 SetGWorld( origPort
, origDevice
);
1117 IMPLEMENT_DYNAMIC_CLASS(wxBitmapHandler
, wxObject
)
1119 bool wxBitmapHandler::Create(wxBitmap
*bitmap
, void *data
, long type
, int width
, int height
, int depth
)
1124 bool wxBitmapHandler::LoadFile(wxBitmap
*bitmap
, const wxString
& name
, long flags
,
1125 int desiredWidth
, int desiredHeight
)
1130 bool wxBitmapHandler::SaveFile(const wxBitmap
*bitmap
, const wxString
& name
, int type
, const wxPalette
*palette
)
1139 class WXDLLEXPORT wxPICTResourceHandler
: public wxBitmapHandler
1141 DECLARE_DYNAMIC_CLASS(wxPICTResourceHandler
)
1143 inline wxPICTResourceHandler()
1145 m_name
= "Macintosh Pict resource";
1147 m_type
= wxBITMAP_TYPE_PICT_RESOURCE
;
1150 virtual bool LoadFile(wxBitmap
*bitmap
, const wxString
& name
, long flags
,
1151 int desiredWidth
, int desiredHeight
);
1153 IMPLEMENT_DYNAMIC_CLASS(wxPICTResourceHandler
, wxBitmapHandler
)
1155 bool wxPICTResourceHandler::LoadFile(wxBitmap
*bitmap
, const wxString
& name
, long flags
,
1156 int desiredWidth
, int desiredHeight
)
1161 c2pstrcpy( (StringPtr
) theName
, name
) ;
1163 strcpy( (char *) theName
, name
) ;
1164 c2pstr( (char *)theName
) ;
1167 PicHandle thePict
= (PicHandle
) GetNamedResource( 'PICT' , theName
) ;
1172 GetPictInfo( thePict
, &theInfo
, 0 , 0 , systemMethod
, 0 ) ;
1173 DetachResource( (Handle
) thePict
) ;
1174 M_BITMAPHANDLERDATA
->m_bitmapType
= kMacBitmapTypePict
;
1175 M_BITMAPHANDLERDATA
->m_hPict
= thePict
;
1176 M_BITMAPHANDLERDATA
->m_width
= theInfo
.sourceRect
.right
- theInfo
.sourceRect
.left
;
1177 M_BITMAPHANDLERDATA
->m_height
= theInfo
.sourceRect
.bottom
- theInfo
.sourceRect
.top
;
1179 M_BITMAPHANDLERDATA
->m_depth
= theInfo
.depth
;
1180 M_BITMAPHANDLERDATA
->m_ok
= true ;
1181 M_BITMAPHANDLERDATA
->m_numColors
= theInfo
.uniqueColors
;
1182 // M_BITMAPHANDLERDATA->m_bitmapPalette;
1183 // M_BITMAPHANDLERDATA->m_quality;
1189 #if 0 // The following is an example for creating a bitmap handler
1191 // TODO: bitmap handlers, a bit like this:
1192 class WXDLLEXPORT wxBMPResourceHandler
: public wxBitmapHandler
1194 DECLARE_DYNAMIC_CLASS(wxBMPResourceHandler
)
1196 inline wxBMPResourceHandler()
1198 m_name
= "Windows bitmap resource";
1200 m_type
= wxBITMAP_TYPE_BMP_RESOURCE
;
1203 virtual bool LoadFile(wxBitmap
*bitmap
, const wxString
& name
, long flags
,
1204 int desiredWidth
, int desiredHeight
);
1206 IMPLEMENT_DYNAMIC_CLASS(wxBMPResourceHandler
, wxBitmapHandler
)
1210 void wxBitmap::CleanUpHandlers()
1212 wxNode
*node
= sm_handlers
.First();
1215 wxBitmapHandler
*handler
= (wxBitmapHandler
*)node
->Data();
1216 wxNode
*next
= node
->Next();
1223 void wxBitmap::InitStandardHandlers()
1225 AddHandler(new wxPICTResourceHandler
) ;
1226 AddHandler(new wxICONResourceHandler
) ;