1 /////////////////////////////////////////////////////////////////////////////
2 // Name: cocoa/NSButton.cpp
3 // Purpose: wxCocoaNSButton
4 // Author: David Elliott
8 // Copyright: (c) 2003-2004 David Elliott
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #include "wx/wxprec.h"
25 #include "wx/cocoa/objc/objc_uniquifying.h"
26 #include "wx/cocoa/NSButton.h"
27 #import <AppKit/NSButton.h>
29 // ----------------------------------------------------------------------------
31 // ----------------------------------------------------------------------------
32 WX_IMPLEMENT_OBJC_INTERFACE_HASHMAP(NSButton)
34 // ============================================================================
35 // @class wxNSButtonTarget
36 // ============================================================================
37 @interface wxNSButtonTarget : NSObject
41 - (void)wxNSButtonAction: (id)sender;
42 @end // wxNSButtonTarget
43 WX_DECLARE_GET_OBJC_CLASS(wxNSButtonTarget,NSObject)
45 @implementation wxNSButtonTarget : NSObject
46 - (void)wxNSButtonAction: (id)sender
48 wxCocoaNSButton *button = wxCocoaNSButton::GetFromCocoa(sender);
49 wxCHECK_RET(button,wxT("wxNSButtonAction received without associated wx object"));
50 button->Cocoa_wxNSButtonAction();
53 @end // implementation wxNSButtonTarget
54 WX_IMPLEMENT_GET_OBJC_CLASS(wxNSButtonTarget,NSObject)
56 // ============================================================================
57 // class wxCocoaNSButton
58 // ============================================================================
59 const wxObjcAutoRefFromAlloc<struct objc_object*> wxCocoaNSButton::sm_cocoaTarget = [[WX_GET_OBJC_CLASS(wxNSButtonTarget) alloc] init];
61 void wxCocoaNSButton::AssociateNSButton(WX_NSButton cocoaNSButton)
65 sm_cocoaHash.insert(wxCocoaNSButtonHash::value_type(cocoaNSButton,this));
66 [cocoaNSButton setTarget: sm_cocoaTarget];
67 [cocoaNSButton setAction: @selector(wxNSButtonAction:)];