]> git.saurik.com Git - wxWidgets.git/blob - src/osx/cocoa/tglbtn.mm
s/wxSplitPath/wxFileName::SplitPath
[wxWidgets.git] / src / osx / cocoa / tglbtn.mm
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 {
37 NSRect r = wxOSXGetFrameForControl( wxpeer, pos , size ) ;
38 wxNSButton* v = [[wxNSButton alloc] initWithFrame:r];
39
40 [v setBezelStyle:NSRoundedBezelStyle];
41 [v setButtonType:NSOnOffButton];
42 wxWidgetCocoaImpl* c = new wxWidgetCocoaImpl( wxpeer, v );
43 [v setImplementation:c];
44 return c;
45 }
46
47 wxWidgetImplType* wxWidgetImpl::CreateBitmapToggleButton( wxWindowMac* wxpeer,
48 wxWindowMac* parent,
49 wxWindowID id,
50 const wxBitmap& label,
51 const wxPoint& pos,
52 const wxSize& size,
53 long style,
54 long extraStyle)
55 {
56 NSRect r = wxOSXGetFrameForControl( wxpeer, pos , size ) ;
57 wxNSButton* v = [[wxNSButton alloc] initWithFrame:r];
58
59 [v setBezelStyle:NSRegularSquareBezelStyle];
60 [v setButtonType:NSOnOffButton];
61 wxWidgetCocoaImpl* c = new wxWidgetCocoaImpl( wxpeer, v );
62 [v setImplementation:c];
63 return c;
64 }
65
66 #endif // wxUSE_TOGGLEBTN
67