]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/scrolbar.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxScrollBar class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_SCROLBAR_H_
13 #define _WX_SCROLBAR_H_
16 #pragma interface "scrolbar.h"
19 #include "wx/control.h"
21 WXDLLEXPORT_DATA(extern const wxChar
*) wxScrollBarNameStr
;
24 class WXDLLEXPORT wxScrollBar
: public wxControl
26 DECLARE_DYNAMIC_CLASS(wxScrollBar
)
29 wxScrollBar() { m_pageSize
= 0; m_viewSize
= 0; m_objectSize
= 0; }
32 wxScrollBar(wxWindow
*parent
, wxWindowID id
,
33 const wxPoint
& pos
= wxDefaultPosition
,
34 const wxSize
& size
= wxDefaultSize
,
35 long style
= wxSB_HORIZONTAL
,
36 const wxValidator
& validator
= wxDefaultValidator
,
37 const wxString
& name
= wxScrollBarNameStr
)
39 Create(parent
, id
, pos
, size
, style
, validator
, name
);
41 bool Create(wxWindow
*parent
, wxWindowID id
,
42 const wxPoint
& pos
= wxDefaultPosition
,
43 const wxSize
& size
= wxDefaultSize
,
44 long style
= wxSB_HORIZONTAL
,
45 const wxValidator
& validator
= wxDefaultValidator
,
46 const wxString
& name
= wxScrollBarNameStr
);
48 int GetThumbPosition() const ;
49 int GetThumbSize() const { return m_pageSize
; }
50 int GetPageSize() const { return m_viewSize
; }
51 int GetRange() const { return m_objectSize
; }
53 virtual void SetThumbPosition(int viewStart
);
54 virtual void SetScrollbar(int position
, int thumbSize
, int range
, int pageSize
,
57 #if WXWIN_COMPATIBILITY
58 // Backward compatibility
59 int GetValue() const { return GetThumbPosition(); }
60 void SetValue(int viewStart
) { SetThumbPosition(viewStart
); }
61 void GetValues(int *viewStart
, int *viewLength
, int *objectLength
,
62 int *pageLength
) const ;
63 int GetViewLength() const { return m_viewSize
; }
64 int GetObjectLength() const { return m_objectSize
; }
66 void SetPageSize(int pageLength
);
67 void SetObjectLength(int objectLength
);
68 void SetViewLength(int viewLength
);
71 void Command(wxCommandEvent
& event
);
72 virtual WXHBRUSH
OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
73 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
);
74 virtual bool MSWOnScroll(int orientation
, WXWORD wParam
,
75 WXWORD pos
, WXHWND control
);
77 #if WXWIN_COMPATIBILITY
78 // Backward compatibility: generate an old-style scroll command
79 void OnScroll(wxScrollEvent
& event
);
80 #endif // WXWIN_COMPATIBILITY