git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55202 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
163 lines
4.6 KiB
C++
163 lines
4.6 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/osx/tglbtn_osx.cpp
|
|
// Purpose: Definition of the wxToggleButton class, which implements a
|
|
// toggle button under wxMac.
|
|
// Author: Stefan Csomor
|
|
// Modified by:
|
|
// Created: 08.02.01
|
|
// RCS-ID: $Id: tglbtn.cpp 54129 2008-06-11 19:30:52Z SC $
|
|
// Copyright: (c) Stefan Csomor
|
|
// License: wxWindows license
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ============================================================================
|
|
// declatations
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// headers
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
#if wxUSE_TOGGLEBTN
|
|
|
|
#include "wx/tglbtn.h"
|
|
#include "wx/osx/private.h"
|
|
// Button
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// macros
|
|
// ----------------------------------------------------------------------------
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxToggleButton, wxControl)
|
|
DEFINE_EVENT_TYPE(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED)
|
|
|
|
// ============================================================================
|
|
// implementation
|
|
// ============================================================================
|
|
// ----------------------------------------------------------------------------
|
|
// wxToggleButton
|
|
// ----------------------------------------------------------------------------
|
|
|
|
bool wxToggleButton::Create(wxWindow *parent, wxWindowID id,
|
|
const wxString& label,
|
|
const wxPoint& pos,
|
|
const wxSize& size, long style,
|
|
const wxValidator& validator,
|
|
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() ) ;
|
|
|
|
MacPostControlCreate(pos,size) ;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
wxSize wxToggleButton::DoGetBestSize() const
|
|
{
|
|
int wBtn = 70 ;
|
|
int hBtn = 20 ;
|
|
|
|
int lBtn = m_label.Length() * 8 + 12 ;
|
|
if (lBtn > wBtn)
|
|
wBtn = lBtn;
|
|
|
|
return wxSize ( wBtn , hBtn ) ;
|
|
}
|
|
|
|
void wxToggleButton::SetValue(bool val)
|
|
{
|
|
m_peer->SetValue( val ) ;
|
|
}
|
|
|
|
bool wxToggleButton::GetValue() const
|
|
{
|
|
return m_peer->GetValue() ;
|
|
}
|
|
|
|
void wxToggleButton::Command(wxCommandEvent & event)
|
|
{
|
|
SetValue((event.GetInt() != 0));
|
|
ProcessCommand(event);
|
|
}
|
|
|
|
bool wxToggleButton::HandleClicked( double timestampsec )
|
|
{
|
|
wxCommandEvent event(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, m_windowId);
|
|
event.SetInt(GetValue());
|
|
event.SetEventObject(this);
|
|
ProcessCommand(event);
|
|
return true ;
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxBitmapToggleButton
|
|
// ----------------------------------------------------------------------------
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxBitmapToggleButton, wxControl)
|
|
|
|
bool wxBitmapToggleButton::Create(wxWindow *parent, wxWindowID id,
|
|
const wxBitmap& label,
|
|
const wxPoint& pos,
|
|
const wxSize& size, long style,
|
|
const wxValidator& validator,
|
|
const wxString& name)
|
|
{
|
|
m_macIsUserPane = FALSE ;
|
|
|
|
m_bitmap = label;
|
|
|
|
if ( !wxControl::Create(parent, id, pos, size, style, validator, name) )
|
|
return false;
|
|
|
|
m_peer = wxWidgetImpl::CreateBitmapToggleButton( this, parent, id, label, pos, size, style, GetExtraStyle() ) ;
|
|
|
|
MacPostControlCreate(pos,size) ;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
wxSize wxBitmapToggleButton::DoGetBestSize() const
|
|
{
|
|
if (!m_bitmap.IsOk())
|
|
return wxSize(20,20);
|
|
|
|
return wxSize ( m_bitmap.GetWidth()+6, m_bitmap.GetHeight()+6 ) ;
|
|
}
|
|
|
|
void wxBitmapToggleButton::SetValue(bool val)
|
|
{
|
|
m_peer->SetValue( val ) ;
|
|
}
|
|
|
|
bool wxBitmapToggleButton::GetValue() const
|
|
{
|
|
return m_peer->GetValue() ;
|
|
}
|
|
|
|
void wxBitmapToggleButton::Command(wxCommandEvent & event)
|
|
{
|
|
SetValue((event.GetInt() != 0));
|
|
ProcessCommand(event);
|
|
}
|
|
|
|
bool wxBitmapToggleButton::HandleClicked( double timestampsec )
|
|
{
|
|
wxCommandEvent event(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, m_windowId);
|
|
event.SetInt(GetValue());
|
|
event.SetEventObject(this);
|
|
ProcessCommand(event);
|
|
return noErr ;
|
|
}
|
|
|
|
#endif // wxUSE_TOGGLEBTN
|
|
|