1 /////////////////////////////////////////////////////////////////////////////
2 // Name: cocoa/bmpbuttn.mm
3 // Purpose: wxBitmapButton
4 // Author: David Elliott
8 // Copyright: (c) 2003 David Elliott
9 // Licence: wxWidgets licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
15 #include "wx/bmpbuttn.h"
19 #include "wx/cocoa/autorelease.h"
21 #import <AppKit/NSButton.h>
22 #import <Foundation/NSString.h>
24 IMPLEMENT_DYNAMIC_CLASS(wxBitmapButton, wxControl)
25 BEGIN_EVENT_TABLE(wxBitmapButton, wxBitmapButtonBase)
27 WX_IMPLEMENT_COCOA_OWNER(wxBitmapButton,NSButton,NSControl,NSView)
29 bool wxBitmapButton::Create(wxWindow *parent, wxWindowID winid,
30 const wxBitmap& bitmap, const wxPoint& pos,
31 const wxSize& size, long style,
32 const wxValidator& validator, const wxString& name)
34 wxAutoNSAutoreleasePool pool;
35 wxLogTrace(wxTRACE_COCOA,wxT("Creating control with id=%d"),winid);
36 if(!CreateControl(parent,winid,pos,size,style,validator,name))
38 wxLogTrace(wxTRACE_COCOA,wxT("Created control with id=%d"),GetId());
40 SetNSButton([[NSButton alloc] initWithFrame: MakeDefaultNSRect(size)]);
41 // NOTE: YES we want to release this (to match the alloc).
42 // DoAddChild(this) will retain us again since addSubView doesn't.
43 [m_cocoaNSView release];
45 [GetNSButton() setBezelStyle: NSRegularSquareBezelStyle];
46 [GetNSButton() setImage:bitmap.GetNSImage(true)];
47 [GetNSControl() sizeToFit];
50 m_parent->CocoaAddChild(this);
51 SetInitialFrameRect(pos,size);
56 wxBitmapButton::~wxBitmapButton()
58 DisassociateNSButton(GetNSButton());
61 void wxBitmapButton::Cocoa_wxNSButtonAction(void)
63 wxLogTrace(wxTRACE_COCOA,wxT("YAY!"));
64 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, GetId());
65 InitCommandEvent(event); // event.SetEventObject(this);