]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/spinbutt.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxSpinButton class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_SPINBUTT_H_
13 #define _WX_SPINBUTT_H_
16 #pragma interface "spinbutt.h"
19 #include "wx/control.h"
22 #if defined(__WIN95__)
24 class WXDLLEXPORT wxSpinButton
: public wxSpinButtonBase
30 wxSpinButton(wxWindow
*parent
,
32 const wxPoint
& pos
= wxDefaultPosition
,
33 const wxSize
& size
= wxDefaultSize
,
34 long style
= wxSP_VERTICAL
| wxSP_ARROW_KEYS
,
35 const wxString
& name
= "wxSpinButton")
37 Create(parent
, id
, pos
, size
, style
, name
);
40 virtual ~wxSpinButton();
42 bool Create(wxWindow
*parent
,
44 const wxPoint
& pos
= wxDefaultPosition
,
45 const wxSize
& size
= wxDefaultSize
,
46 long style
= wxSP_VERTICAL
| wxSP_ARROW_KEYS
,
47 const wxString
& name
= "wxSpinButton");
51 virtual int GetValue() const;
52 virtual void SetValue(int val
);
53 virtual void SetRange(int minVal
, int maxVal
);
56 virtual bool MSWCommand(WXUINT param
, WXWORD id
);
57 virtual bool MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
);
58 virtual bool MSWOnScroll(int orientation
, WXWORD wParam
,
59 WXWORD pos
, WXHWND control
);
61 // a wxSpinButton can't do anything useful with focus, only wxSpinCtrl can
62 virtual bool AcceptsFocus() const { return FALSE
; }
65 virtual wxSize
DoGetBestSize() const;
68 DECLARE_DYNAMIC_CLASS(wxSpinButton
)