]> git.saurik.com Git - wxWidgets.git/blame - include/wx/cocoa/NSButton.h
Added helper functions for setting initial window size:
[wxWidgets.git] / include / wx / cocoa / NSButton.h
CommitLineData
fb896a32
DE
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/cocoa/NSButton.h
3// Purpose: wxCocoaNSButton class
4// Author: David Elliott
5// Modified by:
6// Created: 2002/12/09
7// RCS-ID: $Id:
8// Copyright: (c) 2002 David Elliott
9// Licence: wxWindows license
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef __WX_COCOA_NSBUTTON_H__
13#define __WX_COCOA_NSBUTTON_H__
14
15#include "wx/hashmap.h"
e6686511 16#include "wx/cocoa/ObjcAssociate.h"
fb896a32
DE
17
18WX_DECLARE_OBJC_HASHMAP(NSButton);
19
20class wxCocoaNSButton
21{
22 WX_DECLARE_OBJC_INTERFACE_HASHMAP(NSButton);
23public:
24 void AssociateNSButton(WX_NSButton cocoaNSButton);
25 inline void DisassociateNSButton(WX_NSButton cocoaNSButton)
26 {
bac6f234
DE
27 if(cocoaNSButton)
28 sm_cocoaHash.erase(cocoaNSButton);
fb896a32
DE
29 }
30
31public:
32 virtual void Cocoa_wxNSButtonAction(void) = 0;
33};
34
35#endif // _WX_COCOA_NSBUTTON_H_