1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: spinbutt.h
|
|
|
|
// Purpose: wxSpinButton class
|
1999-10-15 21:00:38 +00:00
|
|
|
// Author: David Webster
|
1999-07-29 05:11:30 +00:00
|
|
|
// Modified by:
|
1999-10-15 21:00:38 +00:00
|
|
|
// Created: 10/15/99
|
1999-07-29 05:11:30 +00:00
|
|
|
// RCS-ID: $Id$
|
1999-10-15 21:00:38 +00:00
|
|
|
// Copyright: (c) David Webster
|
|
|
|
// Licence: wxWindows licence
|
1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_SPINBUTT_H_
|
|
|
|
#define _WX_SPINBUTT_H_
|
|
|
|
|
|
|
|
#include "wx/control.h"
|
|
|
|
#include "wx/event.h"
|
|
|
|
|
2000-01-14 23:08:42 +00:00
|
|
|
class WXDLLEXPORT wxSpinButton: public wxSpinButtonBase
|
1999-07-29 05:11:30 +00:00
|
|
|
{
|
1999-10-15 21:00:38 +00:00
|
|
|
public:
|
|
|
|
// Construction
|
|
|
|
wxSpinButton() { }
|
|
|
|
|
|
|
|
inline wxSpinButton( wxWindow *parent
|
|
|
|
,wxWindowID id = -1
|
|
|
|
,const wxPoint& pos = wxDefaultPosition
|
|
|
|
,const wxSize& size = wxDefaultSize
|
|
|
|
,long style = wxSP_VERTICAL
|
|
|
|
,const wxString& name = "wxSpinButton"
|
|
|
|
)
|
|
|
|
{
|
|
|
|
Create(parent, id, pos, size, style, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~wxSpinButton();
|
|
|
|
|
|
|
|
bool Create( wxWindow *parent
|
|
|
|
,wxWindowID id = -1
|
|
|
|
,const wxPoint& pos = wxDefaultPosition
|
|
|
|
,const wxSize& size = wxDefaultSize
|
|
|
|
,long style = wxSP_VERTICAL
|
|
|
|
,const wxString& name = "wxSpinButton"
|
|
|
|
);
|
|
|
|
|
|
|
|
// Accessors
|
|
|
|
virtual int GetValue() const ;
|
|
|
|
virtual void SetValue(int val) ;
|
|
|
|
virtual void SetRange( int minVal
|
|
|
|
,int maxVal
|
|
|
|
);
|
|
|
|
|
1999-11-21 01:03:00 +00:00
|
|
|
// Implementation
|
1999-10-15 21:00:38 +00:00
|
|
|
virtual bool OS2Command( WXUINT param
|
|
|
|
,WXWORD id
|
|
|
|
);
|
|
|
|
virtual bool OS2OnNotify( int idCtrl
|
|
|
|
,WXLPARAM lParam
|
|
|
|
,WXLPARAM* result
|
|
|
|
);
|
|
|
|
virtual bool OS2OnScroll( int orientation
|
|
|
|
,WXWORD wParam
|
|
|
|
,WXWORD pos
|
|
|
|
,WXHWND control
|
|
|
|
);
|
1999-07-29 05:11:30 +00:00
|
|
|
|
|
|
|
protected:
|
1999-11-21 01:03:00 +00:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
1999-10-15 21:00:38 +00:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxSpinButton)
|
1999-07-29 05:11:30 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
// _WX_SPINBUTT_H_
|