]>
Commit | Line | Data |
---|---|---|
f033830e SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/osx/cocoa/radiobut.mm | |
3 | // Purpose: wxRadioButton | |
4 | // Author: Stefan Csomor | |
03647350 | 5 | // Modified by: |
f033830e | 6 | // Created: ??/??/98 |
a9a4f229 | 7 | // RCS-ID: $Id$ |
f033830e SC |
8 | // Copyright: (c) AUTHOR |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #if wxUSE_RADIOBTN | |
15 | ||
16 | #include "wx/radiobut.h" | |
17 | #include "wx/osx/private.h" | |
18 | ||
03647350 VZ |
19 | wxWidgetImplType* wxWidgetImpl::CreateRadioButton( wxWindowMac* wxpeer, |
20 | wxWindowMac* WXUNUSED(parent), | |
21 | wxWindowID WXUNUSED(id), | |
d8207702 | 22 | const wxString& WXUNUSED(label), |
03647350 | 23 | const wxPoint& pos, |
f033830e | 24 | const wxSize& size, |
03647350 VZ |
25 | long WXUNUSED(style), |
26 | long WXUNUSED(extraStyle)) | |
f033830e | 27 | { |
dbeddfb9 | 28 | NSRect r = wxOSXGetFrameForControl( wxpeer, pos , size ) ; |
f033830e SC |
29 | wxNSButton* v = [[wxNSButton alloc] initWithFrame:r]; |
30 | ||
03647350 VZ |
31 | [v setButtonType:NSRadioButton]; |
32 | ||
f033830e | 33 | wxWidgetCocoaImpl* c = new wxWidgetCocoaImpl( wxpeer, v ); |
f033830e SC |
34 | return c; |
35 | } | |
36 | ||
37 | #endif |