1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/cocoa/NSButton.h
3 // Purpose: wxCocoaNSButton class
4 // Author: David Elliott
8 // Copyright: (c) 2002 David Elliott
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef __WX_COCOA_NSBUTTON_H__
13 #define __WX_COCOA_NSBUTTON_H__
15 #include "wx/hashmap.h"
16 #include "wx/cocoa/ObjcAssociate.h"
18 WX_DECLARE_OBJC_HASHMAP(NSButton
);
22 WX_DECLARE_OBJC_INTERFACE_HASHMAP(NSButton
);
24 void AssociateNSButton(WX_NSButton cocoaNSButton
);
25 inline void DisassociateNSButton(WX_NSButton cocoaNSButton
)
28 sm_cocoaHash
.erase(cocoaNSButton
);
32 virtual void Cocoa_wxNSButtonAction(void) = 0;
35 #endif // _WX_COCOA_NSBUTTON_H_