1 /////////////////////////////////////////////////////////////////////////////
2 // Name: cocoa/NSButton.cpp
3 // Purpose: wxCocoaNSButton
4 // Author: David Elliott
8 // Copyright: (c) 2003-2004 David Elliott
9 // Licence: wxWidgets licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #include "wx/wxprec.h"
25 #include "wx/cocoa/NSButton.h"
26 #import <AppKit/NSButton.h>
28 // ----------------------------------------------------------------------------
30 // ----------------------------------------------------------------------------
31 WX_IMPLEMENT_OBJC_INTERFACE_HASHMAP(NSButton)
33 // ============================================================================
34 // @class wxNSButtonTarget
35 // ============================================================================
36 @interface wxNSButtonTarget : NSObject
40 - (void)wxNSButtonAction: (id)sender;
41 @end // wxNSButtonTarget
43 @implementation wxNSButtonTarget : NSObject
44 - (void)wxNSButtonAction: (id)sender
46 wxCocoaNSButton *button = wxCocoaNSButton::GetFromCocoa(sender);
47 wxCHECK_RET(button,wxT("wxNSButtonAction received without associated wx object"));
48 button->Cocoa_wxNSButtonAction();
51 @end // implementation wxNSButtonTarget
53 // ============================================================================
54 // class wxCocoaNSButton
55 // ============================================================================
56 const wxObjcAutoRefFromAlloc<struct objc_object*> wxCocoaNSButton::sm_cocoaTarget = [[wxNSButtonTarget alloc] init];
58 void wxCocoaNSButton::AssociateNSButton(WX_NSButton cocoaNSButton)
62 sm_cocoaHash.insert(wxCocoaNSButtonHash::value_type(cocoaNSButton,this));
63 [cocoaNSButton setTarget: sm_cocoaTarget];
64 [cocoaNSButton setAction: @selector(wxNSButtonAction:)];