]> git.saurik.com Git - wxWidgets.git/blob - src/osx/cocoa/tglbtn.mm
making SetFocus bringing TLW to front as Carbon, see #10876
[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* WXUNUSED(parent),
30 wxWindowID WXUNUSED(id),
31 const wxString& WXUNUSED(label),
32 const wxPoint& pos,
33 const wxSize& size,
34 long WXUNUSED(style),
35 long WXUNUSED(extraStyle))
36 {
37 NSRect r = wxOSXGetFrameForControl( wxpeer, pos , size ) ;
38 wxNSButton* v = [[wxNSButton alloc] initWithFrame:r];
39
40 [v setBezelStyle:NSSmallSquareBezelStyle];
41 [v setButtonType:NSOnOffButton];
42 wxWidgetCocoaImpl* c = new wxWidgetCocoaImpl( wxpeer, v );
43 return c;
44 }
45
46 wxWidgetImplType* wxWidgetImpl::CreateBitmapToggleButton( wxWindowMac* wxpeer,
47 wxWindowMac* WXUNUSED(parent),
48 wxWindowID WXUNUSED(id),
49 const wxBitmap& WXUNUSED(label),
50 const wxPoint& pos,
51 const wxSize& size,
52 long WXUNUSED(style),
53 long WXUNUSED(extraStyle))
54 {
55 NSRect r = wxOSXGetFrameForControl( wxpeer, pos , size ) ;
56 wxNSButton* v = [[wxNSButton alloc] initWithFrame:r];
57
58 [v setBezelStyle:NSRegularSquareBezelStyle];
59 [v setButtonType:NSOnOffButton];
60 wxWidgetCocoaImpl* c = new wxWidgetCocoaImpl( wxpeer, v );
61 return c;
62 }
63
64 #endif // wxUSE_TOGGLEBTN
65