1 /////////////////////////////////////////////////////////////////////////////
2 // Name: cocoa/bmpbuttn.mm
3 // Purpose: wxBitmapButton
4 // Author: David Elliott
8 // Copyright: (c) 2003 David Elliott
9 // Licence: wxWindows license
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 wxBitmapButtonBase::wxBitmapButtonBase()
39 bool wxBitmapButton::Create(wxWindow *parent, wxWindowID winid,
40 const wxBitmap& bitmap, const wxPoint& pos,
41 const wxSize& size, long style,
42 const wxValidator& validator, const wxString& name)
44 wxAutoNSAutoreleasePool pool;
45 wxLogDebug("Creating control with id=%d",winid);
46 if(!CreateControl(parent,winid,pos,size,style,validator,name))
48 wxLogDebug("Created control with id=%d",GetId());
50 SetNSButton([[NSButton alloc] initWithFrame: MakeDefaultNSRect(size)]);
51 // NOTE: YES we want to release this (to match the alloc).
52 // DoAddChild(this) will retain us again since addSubView doesn't.
53 [m_cocoaNSView release];
55 [GetNSButton() setBezelStyle:NSRoundedBezelStyle];
56 [GetNSButton() setTitle:@"Bitmap Button"];
57 [GetNSControl() sizeToFit];
60 m_parent->CocoaAddChild(this);
61 SetInitialFrameRect(pos,size);
66 wxBitmapButton::~wxBitmapButton()
68 DisassociateNSButton(GetNSButton());
71 void wxBitmapButton::Cocoa_wxNSButtonAction(void)
74 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, GetId());
75 InitCommandEvent(event); // event.SetEventObject(this);