]>
Commit | Line | Data |
---|---|---|
f033830e SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/osx/cocoa/tglbtn.mm | |
3 | // Purpose: Definition of the wxToggleButton class, which implements a | |
4 | // toggle button under wxMac. | |
5 | // Author: Stefan Csomor | |
6 | // Modified by: | |
7 | // Created: 08.02.01 | |
8 | // RCS-ID: $Id: tglbtn.cpp 54129 2008-06-11 19:30:52Z SC $ | |
9 | // Copyright: (c) Stefan Csomor | |
10 | // License: wxWindows license | |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
13 | // ============================================================================ | |
14 | // declatations | |
15 | // ============================================================================ | |
16 | ||
17 | // ---------------------------------------------------------------------------- | |
18 | // headers | |
19 | // ---------------------------------------------------------------------------- | |
20 | ||
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #if wxUSE_TOGGLEBTN | |
24 | ||
25 | #include "wx/tglbtn.h" | |
26 | #include "wx/osx/private.h" | |
27 | ||
28 | wxWidgetImplType* wxWidgetImpl::CreateToggleButton( wxWindowMac* wxpeer, | |
29 | wxWindowMac* parent, | |
30 | wxWindowID id, | |
31 | const wxString& label, | |
32 | const wxPoint& pos, | |
33 | const wxSize& size, | |
34 | long style, | |
35 | long extraStyle) | |
36 | { | |
dbeddfb9 | 37 | NSRect r = wxOSXGetFrameForControl( wxpeer, pos , size ) ; |
f033830e SC |
38 | wxNSButton* v = [[wxNSButton alloc] initWithFrame:r]; |
39 | ||
9af2e240 | 40 | [v setBezelStyle:NSSmallSquareBezelStyle]; |
f033830e | 41 | [v setButtonType:NSOnOffButton]; |
f033830e | 42 | wxWidgetCocoaImpl* c = new wxWidgetCocoaImpl( wxpeer, v ); |
f033830e SC |
43 | return c; |
44 | } | |
45 | ||
46 | wxWidgetImplType* wxWidgetImpl::CreateBitmapToggleButton( wxWindowMac* wxpeer, | |
47 | wxWindowMac* parent, | |
48 | wxWindowID id, | |
49 | const wxBitmap& label, | |
50 | const wxPoint& pos, | |
51 | const wxSize& size, | |
52 | long style, | |
53 | long extraStyle) | |
54 | { | |
dbeddfb9 | 55 | NSRect r = wxOSXGetFrameForControl( wxpeer, pos , size ) ; |
f033830e SC |
56 | wxNSButton* v = [[wxNSButton alloc] initWithFrame:r]; |
57 | ||
58 | [v setBezelStyle:NSRegularSquareBezelStyle]; | |
59 | [v setButtonType:NSOnOffButton]; | |
f033830e | 60 | wxWidgetCocoaImpl* c = new wxWidgetCocoaImpl( wxpeer, v ); |
f033830e SC |
61 | return c; |
62 | } | |
63 | ||
64 | #endif // wxUSE_TOGGLEBTN | |
65 |