// Author: Stefan Csomor
// Modified by:
// Created: 08.02.01
-// RCS-ID: $Id: tglbtn.cpp 54129 2008-06-11 19:30:52Z SC $
+// RCS-ID: $Id$
// Copyright: (c) Stefan Csomor
-// License: wxWindows license
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// ============================================================================
#include "wx/tglbtn.h"
#include "wx/osx/private.h"
-#include "wx/bmpbuttn.h" // for wxDEFAULT_BUTTON_MARGIN
+#include "wx/bmpbuttn.h" // for wxDEFAULT_BUTTON_MARGIN
// ----------------------------------------------------------------------------
// macros
const wxString& name)
{
m_macIsUserPane = FALSE ;
-
+
if ( !wxControl::Create(parent, id, pos, size, style, validator, name) )
return false;
-
+
m_labelOrig = m_label = label ;
- m_peer = wxWidgetImpl::CreateToggleButton( this, parent, id, label, pos, size, style, GetExtraStyle() ) ;
+ SetPeer(wxWidgetImpl::CreateToggleButton( this, parent, id, label, pos, size, style, GetExtraStyle() )) ;
MacPostControlCreate(pos,size) ;
-
+
return TRUE;
}
wxSize wxToggleButton::DoGetBestSize() const
{
- int wBtn = 70 ;
+ int wBtn = 70 ;
int hBtn = 20 ;
int lBtn = m_label.Length() * 8 + 12 ;
- if (lBtn > wBtn)
+ if (lBtn > wBtn)
wBtn = lBtn;
return wxSize ( wBtn , hBtn ) ;
void wxToggleButton::SetValue(bool val)
{
- m_peer->SetValue( val ) ;
+ GetPeer()->SetValue( val ) ;
}
bool wxToggleButton::GetValue() const
{
- return m_peer->GetValue() ;
+ return GetPeer()->GetValue() ;
}
void wxToggleButton::Command(wxCommandEvent & event)
ProcessCommand(event);
}
-bool wxToggleButton::OSXHandleClicked( double timestampsec )
+bool wxToggleButton::OSXHandleClicked( double WXUNUSED(timestampsec) )
{
wxCommandEvent event(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, m_windowId);
event.SetInt(GetValue());
const wxString& name)
{
m_macIsUserPane = FALSE ;
-
+
m_bitmap = label;
-
+
m_marginX =
m_marginY = wxDEFAULT_BUTTON_MARGIN;
-
+
if ( !wxControl::Create(parent, id, pos, size, style, validator, name) )
return false;
-
- m_peer = wxWidgetImpl::CreateBitmapToggleButton( this, parent, id, label, pos, size, style, GetExtraStyle() ) ;
+
+ SetPeer(wxWidgetImpl::CreateBitmapToggleButton( this, parent, id, label, pos, size, style, GetExtraStyle() ));
MacPostControlCreate(pos,size) ;
-
+
return TRUE;
}
void wxBitmapToggleButton::SetValue(bool val)
{
- m_peer->SetValue( val ) ;
+ GetPeer()->SetValue( val ) ;
}
bool wxBitmapToggleButton::GetValue() const
{
- return m_peer->GetValue() ;
+ return GetPeer()->GetValue() ;
}
void wxBitmapToggleButton::Command(wxCommandEvent & event)
ProcessCommand(event);
}
-bool wxBitmapToggleButton::OSXHandleClicked( double timestampsec )
+bool wxBitmapToggleButton::OSXHandleClicked( double WXUNUSED(timestampsec) )
{
wxCommandEvent event(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, m_windowId);
event.SetInt(GetValue());