2003-03-21 19:51:47 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/cocoa/NSButton.h
|
|
|
|
// Purpose: wxCocoaNSButton class
|
|
|
|
// Author: David Elliott
|
|
|
|
// Modified by:
|
|
|
|
// Created: 2002/12/09
|
|
|
|
// RCS-ID: $Id:
|
|
|
|
// Copyright: (c) 2002 David Elliott
|
2004-05-23 14:56:36 +00:00
|
|
|
// Licence: wxWidgets licence
|
2003-03-21 19:51:47 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __WX_COCOA_NSBUTTON_H__
|
|
|
|
#define __WX_COCOA_NSBUTTON_H__
|
|
|
|
|
|
|
|
#include "wx/hashmap.h"
|
2003-04-19 17:51:50 +00:00
|
|
|
#include "wx/cocoa/ObjcAssociate.h"
|
2003-03-21 19:51:47 +00:00
|
|
|
|
|
|
|
WX_DECLARE_OBJC_HASHMAP(NSButton);
|
|
|
|
|
|
|
|
class wxCocoaNSButton
|
|
|
|
{
|
|
|
|
WX_DECLARE_OBJC_INTERFACE_HASHMAP(NSButton);
|
|
|
|
public:
|
|
|
|
void AssociateNSButton(WX_NSButton cocoaNSButton);
|
|
|
|
inline void DisassociateNSButton(WX_NSButton cocoaNSButton)
|
|
|
|
{
|
2003-07-11 17:47:57 +00:00
|
|
|
if(cocoaNSButton)
|
|
|
|
sm_cocoaHash.erase(cocoaNSButton);
|
2003-03-21 19:51:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual void Cocoa_wxNSButtonAction(void) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_COCOA_NSBUTTON_H_
|