1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/scrolbar.cpp
3 // Purpose: wxScrollBar
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
21 #include "wx/scrolbar.h"
25 #include "wx/settings.h"
28 #include "wx/msw/private.h"
30 #if wxUSE_EXTENDED_RTTI
31 WX_DEFINE_FLAGS( wxScrollBarStyle
)
33 wxBEGIN_FLAGS( wxScrollBarStyle
)
34 // new style border flags, we put them first to
35 // use them for streaming out
36 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
37 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
38 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
39 wxFLAGS_MEMBER(wxBORDER_RAISED
)
40 wxFLAGS_MEMBER(wxBORDER_STATIC
)
41 wxFLAGS_MEMBER(wxBORDER_NONE
)
43 // old style border flags
44 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
45 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
46 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
47 wxFLAGS_MEMBER(wxRAISED_BORDER
)
48 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
49 wxFLAGS_MEMBER(wxBORDER
)
51 // standard window styles
52 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
53 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
54 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
55 wxFLAGS_MEMBER(wxWANTS_CHARS
)
56 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
57 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
58 wxFLAGS_MEMBER(wxVSCROLL
)
59 wxFLAGS_MEMBER(wxHSCROLL
)
61 wxFLAGS_MEMBER(wxSB_HORIZONTAL
)
62 wxFLAGS_MEMBER(wxSB_VERTICAL
)
64 wxEND_FLAGS( wxScrollBarStyle
)
66 IMPLEMENT_DYNAMIC_CLASS_XTI(wxScrollBar
, wxControl
,"wx/scrolbar.h")
68 wxBEGIN_PROPERTIES_TABLE(wxScrollBar
)
69 wxEVENT_RANGE_PROPERTY( Scroll
, wxEVT_SCROLL_TOP
, wxEVT_SCROLL_CHANGED
, wxScrollEvent
)
71 wxPROPERTY( ThumbPosition
, int , SetThumbPosition
, GetThumbPosition
, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
72 wxPROPERTY( Range
, int , SetRange
, GetRange
, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
73 wxPROPERTY( ThumbSize
, int , SetThumbSize
, GetThumbSize
, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
74 wxPROPERTY( PageSize
, int , SetPageSize
, GetPageSize
, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
75 wxPROPERTY_FLAGS( WindowStyle
, wxScrollBarStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
76 wxEND_PROPERTIES_TABLE()
78 wxBEGIN_HANDLERS_TABLE(wxScrollBar
)
79 wxEND_HANDLERS_TABLE()
81 wxCONSTRUCTOR_5( wxScrollBar
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
83 IMPLEMENT_DYNAMIC_CLASS(wxScrollBar
, wxControl
)
87 bool wxScrollBar::Create(wxWindow
*parent
, wxWindowID id
,
89 const wxSize
& size
, long style
,
90 const wxValidator
& validator
,
93 if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) )
96 if (!MSWCreateControl(wxT("ScrollBar"), wxEmptyString
, pos
, size
))
99 SetScrollbar(0, 1, 2, 1, false);
104 wxScrollBar::~wxScrollBar(void)
108 bool wxScrollBar::MSWOnScroll(int WXUNUSED(orientation
), WXWORD wParam
,
109 WXWORD
WXUNUSED(pos
), WXHWND
WXUNUSED(control
))
111 // don't use pos parameter because it is limited to 16 bits, get the full
112 // 32 bit position from the control itself instead
113 WinStruct
<SCROLLINFO
> scrollInfo
;
114 scrollInfo
.fMask
= SIF_RANGE
| SIF_POS
| SIF_TRACKPOS
;
116 if ( !::GetScrollInfo(GetHwnd(), SB_CTL
, &scrollInfo
) )
118 wxLogLastError(wxT("GetScrollInfo"));
122 int maxPos
= scrollInfo
.nMax
;
124 // A page size greater than one has the effect of reducing the effective
125 // range, therefore the range has already been boosted artificially - so
127 if ( m_pageSize
> 1 )
128 maxPos
-= (m_pageSize
- 1);
130 int position
= scrollInfo
.nPos
;
131 wxEventType scrollEvent
= wxEVT_NULL
;
136 scrollEvent
= wxEVT_SCROLL_TOP
;
141 scrollEvent
= wxEVT_SCROLL_BOTTOM
;
146 scrollEvent
= wxEVT_SCROLL_LINEUP
;
151 scrollEvent
= wxEVT_SCROLL_LINEDOWN
;
155 position
-= GetPageSize();
156 scrollEvent
= wxEVT_SCROLL_PAGEUP
;
160 position
+= GetPageSize();
161 scrollEvent
= wxEVT_SCROLL_PAGEDOWN
;
164 case SB_THUMBPOSITION
:
166 position
= scrollInfo
.nTrackPos
;
167 scrollEvent
= wParam
== SB_THUMBPOSITION
? wxEVT_SCROLL_THUMBRELEASE
168 : wxEVT_SCROLL_THUMBTRACK
;
172 scrollEvent
= wxEVT_SCROLL_CHANGED
;
176 if ( position
!= scrollInfo
.nPos
)
180 if ( position
> maxPos
)
183 SetThumbPosition(position
);
185 else if ( scrollEvent
!= wxEVT_SCROLL_THUMBRELEASE
&&
186 scrollEvent
!= wxEVT_SCROLL_CHANGED
)
188 // don't process the event if there is no displacement,
189 // unless this is a thumb release or end scroll event.
193 wxScrollEvent
event(scrollEvent
, m_windowId
);
194 event
.SetOrientation(IsVertical() ? wxVERTICAL
: wxHORIZONTAL
);
195 event
.SetPosition(position
);
196 event
.SetEventObject( this );
198 return HandleWindowEvent(event
);
201 void wxScrollBar::SetThumbPosition(int viewStart
)
204 info
.cbSize
= sizeof(SCROLLINFO
);
207 info
.nPos
= viewStart
;
208 info
.fMask
= SIF_POS
;
210 ::SetScrollInfo((HWND
) GetHWND(), SB_CTL
, &info
, TRUE
);
213 int wxScrollBar::GetThumbPosition(void) const
215 SCROLLINFO scrollInfo
;
216 wxZeroMemory(scrollInfo
);
217 scrollInfo
.cbSize
= sizeof(SCROLLINFO
);
218 scrollInfo
.fMask
= SIF_POS
;
220 if ( !::GetScrollInfo(GetHwnd(), SB_CTL
, &scrollInfo
) )
222 wxLogLastError(wxT("GetScrollInfo"));
224 return scrollInfo
.nPos
;
227 void wxScrollBar::SetScrollbar(int position
, int thumbSize
, int range
, int pageSize
,
230 m_viewSize
= pageSize
;
231 m_pageSize
= thumbSize
;
232 m_objectSize
= range
;
234 // The range (number of scroll steps) is the
235 // object length minus the page size.
236 int range1
= wxMax((m_objectSize
- m_pageSize
), 0) ;
238 // Try to adjust the range to cope with page size > 1
239 // (see comment for SetPageLength)
240 if ( m_pageSize
> 1 )
242 range1
+= (m_pageSize
- 1);
246 info
.cbSize
= sizeof(SCROLLINFO
);
247 info
.nPage
= m_pageSize
;
250 info
.nPos
= position
;
252 info
.fMask
= SIF_PAGE
| SIF_RANGE
| SIF_POS
;
254 ::SetScrollInfo((HWND
) GetHWND(), SB_CTL
, &info
, refresh
);
257 void wxScrollBar::Command(wxCommandEvent
& event
)
259 SetThumbPosition(event
.GetInt());
260 ProcessCommand(event
);
263 wxSize
wxScrollBar::DoGetBestSize() const
270 w
= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
274 h
= wxSystemSettings::GetMetric(wxSYS_HSCROLL_Y
);
282 WXDWORD
wxScrollBar::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
284 // we never have an external border
285 WXDWORD msStyle
= wxControl::MSWGetStyle
287 (style
& ~wxBORDER_MASK
) | wxBORDER_NONE
, exstyle
290 // SBS_HORZ is 0 anyhow, but do mention it explicitly for clarity
291 msStyle
|= style
& wxSB_HORIZONTAL
? SBS_HORZ
: SBS_VERT
;
296 WXHBRUSH
wxScrollBar::MSWControlColor(WXHDC pDC
, WXHWND hWnd
)
298 // unless we have an explicitly set bg colour, use default (gradient under
299 // XP) brush instead of GetBackgroundColour() one as the base class would
301 // note that fg colour isn't used for a scrollbar
302 return UseBgCol() ? wxControl::MSWControlColor(pDC
, hWnd
) : NULL
;
305 #endif // wxUSE_SCROLLBAR