1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/carbon/bmpbuttn.cpp
3 // Purpose: wxBitmapButton
4 // Author: Stefan Csomor
7 // RCS-ID: $Id: bmpbuttn.cpp 54820 2008-07-29 20:04:11Z SC $
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
16 #include "wx/bmpbuttn.h"
20 #include "wx/dcmemory.h"
23 #include "wx/osx/private.h"
25 wxWidgetImplType* wxWidgetImpl::CreateBitmapButton( wxWindowMac* wxpeer,
28 const wxBitmap& bitmap,
34 NSRect r = wxOSXGetFrameForControl( wxpeer, pos , size ) ;
35 wxNSButton* v = [[wxNSButton alloc] initWithFrame:r];
37 // trying to get as close as possible to flags
38 if ( style & wxBORDER_NONE )
40 [v setBezelStyle:NSShadowlessSquareBezelStyle];
44 if ( style & wxBU_AUTODRAW )
45 [v setBezelStyle:NSShadowlessSquareBezelStyle];
47 [v setBezelStyle:NSRegularSquareBezelStyle];
50 [v setImage:bitmap.GetNSImage() ];
51 [v setButtonType:NSMomentaryPushInButton];
52 wxWidgetCocoaImpl* c = new wxWidgetCocoaImpl( wxpeer, v );
53 [v setImplementation:c];