///////////////////////////////////////////////////////////////////////////// // Name: button.cpp // Purpose: wxButton // Author: AUTHOR // Modified by: // Created: ??/??/98 // RCS-ID: $Id$ // Copyright: (c) AUTHOR // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifdef __GNUG__ #pragma implementation "button.h" #endif #include "wx/button.h" #if !USE_SHARED_LIBRARY IMPLEMENT_DYNAMIC_CLASS(wxButton, wxControl) #endif #include // Button bool wxButton::Create(wxWindow *parent, wxWindowID id, const wxString& label, const wxPoint& pos, const wxSize& size, long style, const wxValidator& validator, const wxString& name) { Rect bounds ; Str255 title ; m_macHorizontalBorder = 2 ; // additional pixels around the real control m_macVerticalBorder = 2 ; MacPreControlCreate( parent , id , label , pos , size ,style, validator , name , &bounds , title ) ; m_macControl = UMANewControl( parent->GetMacRootWindow() , &bounds , title , true , 0 , 0 , 1, kControlPushButtonProc , (long) this ) ; wxASSERT_MSG( m_macControl != NULL , "No valid mac control" ) ; MacPostControlCreate() ; return TRUE; } void wxButton::SetDefault() { wxWindow *parent = GetParent(); wxButton *btnOldDefault = NULL; wxPanel *panel = wxDynamicCast(parent, wxPanel); if ( panel ) { btnOldDefault = panel->GetDefaultItem(); panel->SetDefaultItem(this); } if ( btnOldDefault && btnOldDefault->m_macControl ) { UMASetControlData( btnOldDefault->m_macControl , kControlButtonPart , kControlPushButtonDefaultTag , sizeof( Boolean ) , (char*)((Boolean)0) ) ; } if ( m_macControl ) { UMASetControlData( m_macControl , kControlButtonPart , kControlPushButtonDefaultTag , sizeof( Boolean ) , (char*)((Boolean)1) ) ; } } wxSize wxButton::DoGetBestSize() { int wBtn = m_label.Length() * 8 + 12 + 2 * m_macHorizontalBorder; int hBtn = 13 + 2 * m_macVerticalBorder; return wxSize(wBtn, hBtn); } wxSize wxButton::GetDefaultSize() { int wBtn = 15 * 8 + 12 + 2 * 2; int hBtn = 13 + 2 * 2; return wxSize(wBtn, hBtn); } void wxButton::Command (wxCommandEvent & event) { ProcessCommand (event); } void wxButton::MacHandleControlClick( ControlHandle control , SInt16 controlpart ) { wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, m_windowId ); event.SetEventObject(this); ProcessCommand(event); }