1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/cocoa/NSButton.mm
3 // Purpose: wxCocoaNSButton
4 // Author: David Elliott
7 // Copyright: (c) 2003-2004 David Elliott
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 #include "wx/wxprec.h"
24 #include "wx/cocoa/objc/objc_uniquifying.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
42 WX_DECLARE_GET_OBJC_CLASS(wxNSButtonTarget,NSObject)
44 @implementation wxNSButtonTarget : NSObject
45 - (void)wxNSButtonAction: (id)sender
47 wxCocoaNSButton *button = wxCocoaNSButton::GetFromCocoa(sender);
48 wxCHECK_RET(button,wxT("wxNSButtonAction received without associated wx object"));
49 button->Cocoa_wxNSButtonAction();
52 @end // implementation wxNSButtonTarget
53 WX_IMPLEMENT_GET_OBJC_CLASS(wxNSButtonTarget,NSObject)
55 // ============================================================================
56 // class wxCocoaNSButton
57 // ============================================================================
58 const wxObjcAutoRefFromAlloc<struct objc_object*> wxCocoaNSButton::sm_cocoaTarget = [[WX_GET_OBJC_CLASS(wxNSButtonTarget) alloc] init];
60 void wxCocoaNSButton::AssociateNSButton(WX_NSButton cocoaNSButton)
64 sm_cocoaHash.insert(wxCocoaNSButtonHash::value_type(cocoaNSButton,this));
65 [cocoaNSButton setTarget: sm_cocoaTarget];
66 [cocoaNSButton setAction: @selector(wxNSButtonAction:)];