X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/03647350fc7cd141953c72e0284e928847d30f44..9db177273906bb393b97b4a98f6a8b4d61e8f0e3:/src/osx/iphone/checkbox.mm diff --git a/src/osx/iphone/checkbox.mm b/src/osx/iphone/checkbox.mm index 2fd405258e..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 ///////////////////////////////////////////////////////////////////////////// @@ -34,17 +34,29 @@ } } -- (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), @@ -61,7 +73,7 @@ wxWidgetImplType* wxWidgetImpl::CreateCheckBox( wxWindowMac* wxpeer, // if (style & wxCHK_3STATE) // [v setAllowsMixedState:YES]; - wxWidgetIPhoneImpl* c = new wxWidgetIPhoneImpl( wxpeer, v ); + wxCheckBoxIPhoneImpl* c = new wxCheckBoxIPhoneImpl( wxpeer, v ); return c; }