applied patches extracted from submission by Marc Newsam (tested under Mac OS 9) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9372 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
165 lines
3.6 KiB
C++
165 lines
3.6 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: spinbutt.cpp
|
|
// Purpose: wxSpinButton
|
|
// Author: AUTHOR
|
|
// Modified by:
|
|
// Created: ??/??/98
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) AUTHOR
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation "spinbutt.h"
|
|
#pragma implementation "spinbuttbase.h"
|
|
#endif
|
|
|
|
#include "wx/spinbutt.h"
|
|
#include "wx/mac/uma.h"
|
|
|
|
// ============================================================================
|
|
// implementation
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxWin macros
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#if !USE_SHARED_LIBRARY
|
|
IMPLEMENT_DYNAMIC_CLASS(wxSpinButton, wxControl)
|
|
IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent, wxScrollEvent);
|
|
#endif
|
|
|
|
wxSpinButton::wxSpinButton()
|
|
: wxSpinButtonBase()
|
|
{
|
|
}
|
|
|
|
bool wxSpinButton::Create(wxWindow *parent, wxWindowID id, const wxPoint& pos, const wxSize& size,
|
|
long style, const wxString& name)
|
|
{
|
|
m_min = 0;
|
|
m_max = 100;
|
|
|
|
if (!parent)
|
|
return FALSE;
|
|
|
|
Rect bounds ;
|
|
Str255 title ;
|
|
|
|
MacPreControlCreate( parent , id , "" , pos , size ,style,*( (wxValidator*) NULL ) , name , &bounds , title ) ;
|
|
|
|
m_macControl = UMANewControl( parent->GetMacRootWindow() , &bounds , title , true , 0 , 0 , 100,
|
|
kControlLittleArrowsProc , (long) this ) ;
|
|
|
|
wxASSERT_MSG( m_macControl != NULL , "No valid mac control" ) ;
|
|
|
|
MacPostControlCreate() ;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
wxSpinButton::~wxSpinButton()
|
|
{
|
|
}
|
|
|
|
// Attributes
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
int wxSpinButton::GetMin() const
|
|
{
|
|
return m_min;
|
|
}
|
|
|
|
int wxSpinButton::GetMax() const
|
|
{
|
|
return m_max;
|
|
}
|
|
|
|
int wxSpinButton::GetValue() const
|
|
{
|
|
return m_value;
|
|
}
|
|
|
|
void wxSpinButton::SetValue(int val)
|
|
{
|
|
m_value = val ;
|
|
wxScrollEvent event(wxEVT_SCROLL_THUMBTRACK, m_windowId);
|
|
|
|
event.SetPosition(m_value);
|
|
event.SetEventObject( this );
|
|
GetEventHandler()->ProcessEvent(event);
|
|
}
|
|
|
|
void wxSpinButton::SetRange(int minVal, int maxVal)
|
|
{
|
|
m_min = minVal;
|
|
m_max = maxVal;
|
|
}
|
|
|
|
void wxSpinButton::MacHandleControlClick( ControlHandle control , SInt16 controlpart )
|
|
{
|
|
if ( m_macControl == NULL )
|
|
return ;
|
|
|
|
wxEventType scrollEvent = wxEVT_NULL;
|
|
int nScrollInc = 0;
|
|
|
|
switch( controlpart )
|
|
{
|
|
case kControlUpButtonPart :
|
|
nScrollInc = 1;
|
|
scrollEvent = wxEVT_SCROLL_LINEUP;
|
|
break ;
|
|
case kControlDownButtonPart :
|
|
nScrollInc = -1;
|
|
scrollEvent = wxEVT_SCROLL_LINEDOWN;
|
|
break ;
|
|
}
|
|
|
|
m_value = m_value + nScrollInc;
|
|
|
|
if (m_value < m_min)
|
|
{
|
|
if ( m_windowStyle & wxSP_WRAP )
|
|
m_value = m_max;
|
|
else
|
|
m_value = m_min;
|
|
}
|
|
|
|
if (m_value > m_max)
|
|
{
|
|
if ( m_windowStyle & wxSP_WRAP )
|
|
m_value = m_min;
|
|
else
|
|
m_value = m_max;
|
|
}
|
|
|
|
wxScrollEvent event(scrollEvent, m_windowId);
|
|
|
|
event.SetPosition(m_value);
|
|
event.SetEventObject( this );
|
|
GetEventHandler()->ProcessEvent(event);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// size calculation
|
|
// ----------------------------------------------------------------------------
|
|
|
|
wxSize wxSpinButton::DoGetBestSize() const
|
|
{
|
|
if ( (GetWindowStyle() & wxSP_VERTICAL) != 0 )
|
|
{
|
|
// vertical control
|
|
return wxSize(16,
|
|
2*16);
|
|
}
|
|
else
|
|
{
|
|
// horizontal control
|
|
return wxSize(2*16,
|
|
16);
|
|
}
|
|
}
|
|
|