X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7c798d002e91590a8556bfaef35c478410fbf560..60372b0d54379701d62edf5595a7dc25c48330e1:/src/osx/iphone/checkbox.mm?ds=sidebyside diff --git a/src/osx/iphone/checkbox.mm b/src/osx/iphone/checkbox.mm index efe49c6281..8fffa13206 100644 --- a/src/osx/iphone/checkbox.mm +++ b/src/osx/iphone/checkbox.mm @@ -4,7 +4,7 @@ // Author: Stefan Csomor // Modified by: // Created: 2008-08-20 -// RCS-ID: $Id: checkbox.mm 54129 2008-06-11 19:30:52Z SC $ +// RCS-ID: $Id$ // Copyright: (c) Stefan Csomor // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -27,41 +27,53 @@ + (void)initialize { static BOOL initialized = NO; - if (!initialized) + if (!initialized) { initialized = YES; wxOSXIPhoneClassAddWXMethods( self ); } } -- (int) intValue -{ - return [self isOn] ? 1 : 0; -} +@end -- (void) setIntValue: (int) v +class wxCheckBoxIPhoneImpl : public wxWidgetIPhoneImpl { - [self setOn:v != 0 animated:NO]; -} - -@end +public: + wxCheckBoxIPhoneImpl(wxWindowMac *wxpeer, UISwitch *v) + : wxWidgetIPhoneImpl(wxpeer, v) + { + m_control = v; + } + + wxInt32 GetValue() const + { + return [m_control isOn] ? 1 : 0; + } + + void SetValue( wxInt32 v ) + { + [m_control setOn:v != 0 animated:NO]; + } +private: + UISwitch* m_control; +}; -wxWidgetImplType* wxWidgetImpl::CreateCheckBox( wxWindowMac* wxpeer, - wxWindowMac* WXUNUSED(parent), - wxWindowID WXUNUSED(id), +wxWidgetImplType* wxWidgetImpl::CreateCheckBox( wxWindowMac* wxpeer, + wxWindowMac* WXUNUSED(parent), + wxWindowID WXUNUSED(id), const wxString& WXUNUSED(label), - const wxPoint& pos, + const wxPoint& pos, const wxSize& size, - long style, - long WXUNUSED(extraStyle)) + long style, + long WXUNUSED(extraStyle)) { CGRect r = wxOSXGetFrameForControl( wxpeer, pos , size ) ; wxUISwitch* v = [[wxUISwitch alloc] initWithFrame:r]; // if (style & wxCHK_3STATE) // [v setAllowsMixedState:YES]; - - wxWidgetIPhoneImpl* c = new wxWidgetIPhoneImpl( wxpeer, v ); + + wxCheckBoxIPhoneImpl* c = new wxCheckBoxIPhoneImpl( wxpeer, v ); return c; }