]>
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" 
  20 class WXDLLEXPORT wxScrollBar
: public wxScrollBarBase
 
  22     DECLARE_DYNAMIC_CLASS(wxScrollBar
) 
  25     wxScrollBar() { m_pageSize 
= 0; m_viewSize 
= 0; m_objectSize 
= 0; } 
  28     wxScrollBar(wxWindow 
*parent
, wxWindowID id
, 
  29             const wxPoint
& pos 
= wxDefaultPosition
, 
  30             const wxSize
& size 
= wxDefaultSize
, 
  31             long style 
= wxSB_HORIZONTAL
, 
  32             const wxValidator
& validator 
= wxDefaultValidator
, 
  33             const wxString
& name 
= wxScrollBarNameStr
) 
  35         Create(parent
, id
, pos
, size
, style
, validator
, name
); 
  37     bool Create(wxWindow 
*parent
, wxWindowID id
, 
  38             const wxPoint
& pos 
= wxDefaultPosition
, 
  39             const wxSize
& size 
= wxDefaultSize
, 
  40             long style 
= wxSB_HORIZONTAL
, 
  41             const wxValidator
& validator 
= wxDefaultValidator
, 
  42             const wxString
& name 
= wxScrollBarNameStr
); 
  44     int GetThumbPosition() const ; 
  45     int GetThumbSize() const { return m_pageSize
; } 
  46     int GetPageSize() const { return m_viewSize
; } 
  47     int GetRange() const { return m_objectSize
; } 
  49     virtual void SetThumbPosition(int viewStart
); 
  50     virtual void SetScrollbar(int position
, int thumbSize
, int range
, int pageSize
, 
  53 #if WXWIN_COMPATIBILITY 
  54     // Backward compatibility 
  55     int GetValue() const { return GetThumbPosition(); } 
  56     void SetValue(int viewStart
) { SetThumbPosition(viewStart
); } 
  57     void GetValues(int *viewStart
, int *viewLength
, int *objectLength
, 
  58             int *pageLength
) const ; 
  59     int GetViewLength() const { return m_viewSize
; } 
  60     int GetObjectLength() const { return m_objectSize
; } 
  62     void SetPageSize(int pageLength
); 
  63     void SetObjectLength(int objectLength
); 
  64     void SetViewLength(int viewLength
); 
  67     void Command(wxCommandEvent
& event
); 
  68     virtual WXHBRUSH 
OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
, 
  69             WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
); 
  70     virtual bool MSWOnScroll(int orientation
, WXWORD wParam
, 
  71                              WXWORD pos
, WXHWND control
); 
  73 #if WXWIN_COMPATIBILITY 
  74     // Backward compatibility: generate an old-style scroll command 
  75     void OnScroll(wxScrollEvent
& event
); 
  76 #endif // WXWIN_COMPATIBILITY