]> git.saurik.com Git - wxWidgets.git/blame - src/msw/scrolbar.cpp
Compile fixes for the const patch
[wxWidgets.git] / src / msw / scrolbar.cpp
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
1e6feb95 2// Name: msw/scrolbar.cpp
2bda0e17
KB
3// Purpose: wxScrollBar
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
6c9a19aa 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
2bda0e17
KB
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
1e6feb95 16 #pragma hdrstop
2bda0e17
KB
17#endif
18
1e6feb95
VZ
19#if wxUSE_SCROLLBAR
20
2bda0e17 21#ifndef WX_PRECOMP
1e6feb95 22 #include "wx/utils.h"
2bda0e17
KB
23#endif
24
25#include "wx/scrolbar.h"
26#include "wx/msw/private.h"
98773c1c 27#include "wx/settings.h"
2bda0e17 28
f0a126fe 29#if wxUSE_EXTENDED_RTTI
bc9fb572
JS
30WX_DEFINE_FLAGS( wxScrollBarStyle )
31
3ff066a4 32wxBEGIN_FLAGS( wxScrollBarStyle )
bc9fb572
JS
33 // new style border flags, we put them first to
34 // use them for streaming out
3ff066a4
SC
35 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
36 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
37 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
38 wxFLAGS_MEMBER(wxBORDER_RAISED)
39 wxFLAGS_MEMBER(wxBORDER_STATIC)
40 wxFLAGS_MEMBER(wxBORDER_NONE)
57f4f925 41
bc9fb572 42 // old style border flags
3ff066a4
SC
43 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
44 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
45 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
46 wxFLAGS_MEMBER(wxRAISED_BORDER)
47 wxFLAGS_MEMBER(wxSTATIC_BORDER)
cb0afb26 48 wxFLAGS_MEMBER(wxBORDER)
bc9fb572
JS
49
50 // standard window styles
3ff066a4
SC
51 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
52 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
53 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
54 wxFLAGS_MEMBER(wxWANTS_CHARS)
cb0afb26 55 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
3ff066a4
SC
56 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
57 wxFLAGS_MEMBER(wxVSCROLL)
58 wxFLAGS_MEMBER(wxHSCROLL)
bc9fb572 59
3ff066a4
SC
60 wxFLAGS_MEMBER(wxSB_HORIZONTAL)
61 wxFLAGS_MEMBER(wxSB_VERTICAL)
bc9fb572 62
3ff066a4 63wxEND_FLAGS( wxScrollBarStyle )
bc9fb572 64
f0a126fe
SC
65IMPLEMENT_DYNAMIC_CLASS_XTI(wxScrollBar, wxControl,"wx/scrolbar.h")
66
3ff066a4 67wxBEGIN_PROPERTIES_TABLE(wxScrollBar)
cbc85508 68 wxEVENT_RANGE_PROPERTY( Scroll , wxEVT_SCROLL_TOP , wxEVT_SCROLL_CHANGED , wxScrollEvent )
c5ca409b 69
3ff066a4 70 wxPROPERTY( ThumbPosition , int , SetThumbPosition, GetThumbPosition, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
57f4f925
WS
71 wxPROPERTY( Range , int , SetRange, GetRange, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
72 wxPROPERTY( ThumbSize , int , SetThumbSize, GetThumbSize, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
73 wxPROPERTY( PageSize , int , SetPageSize, GetPageSize, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
af498247 74 wxPROPERTY_FLAGS( WindowStyle , wxScrollBarStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
3ff066a4 75wxEND_PROPERTIES_TABLE()
2bda0e17 76
3ff066a4
SC
77wxBEGIN_HANDLERS_TABLE(wxScrollBar)
78wxEND_HANDLERS_TABLE()
066f1b7a 79
3ff066a4 80wxCONSTRUCTOR_5( wxScrollBar , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size , long , WindowStyle )
f0a126fe
SC
81#else
82IMPLEMENT_DYNAMIC_CLASS(wxScrollBar, wxControl)
83#endif
2bda0e17
KB
84
85// Scrollbar
debe6624 86bool wxScrollBar::Create(wxWindow *parent, wxWindowID id,
2bda0e17 87 const wxPoint& pos,
debe6624 88 const wxSize& size, long style,
720afa24 89 const wxValidator& validator,
2bda0e17
KB
90 const wxString& name)
91{
720afa24 92 if ( !CreateControl(parent, id, pos, size, style, validator, name) )
57f4f925 93 return false;
33ac7e6f 94
720afa24
DS
95 if (!MSWCreateControl(wxT("ScrollBar"), wxEmptyString, pos, size))
96 return false;
2bda0e17 97
720afa24 98 SetScrollbar(0, 1, 2, 1, false);
2bda0e17 99
57f4f925 100 return true;
2bda0e17
KB
101}
102
103wxScrollBar::~wxScrollBar(void)
104{
105}
106
a23fd0e1 107bool wxScrollBar::MSWOnScroll(int WXUNUSED(orientation), WXWORD wParam,
2eb10e2a 108 WXWORD pos, WXHWND WXUNUSED(control))
2bda0e17 109{
2b5f62a0
VZ
110 // current and max positions
111 int position,
112 maxPos, trackPos = pos;
113
5cb598ae
WS
114 wxUnusedVar(trackPos);
115
2b5f62a0
VZ
116 // when we're dragging the scrollbar we can't use pos parameter because it
117 // is limited to 16 bits
4676948b
JS
118 // JACS: now always using GetScrollInfo, since there's no reason
119 // not to
120// if ( wParam == SB_THUMBPOSITION || wParam == SB_THUMBTRACK )
2b5f62a0
VZ
121 {
122 SCROLLINFO scrollInfo;
123 wxZeroMemory(scrollInfo);
124 scrollInfo.cbSize = sizeof(SCROLLINFO);
125
126 // also get the range if we call GetScrollInfo() anyhow -- this is less
127 // expensive than call it once here and then call GetScrollRange()
128 // below
129 scrollInfo.fMask = SIF_RANGE | SIF_POS | SIF_TRACKPOS;
130
131 if ( !::GetScrollInfo(GetHwnd(), SB_CTL, &scrollInfo) )
132 {
133 wxLogLastError(_T("GetScrollInfo"));
134 }
135
136 trackPos = scrollInfo.nTrackPos;
137 position = scrollInfo.nPos;
138 maxPos = scrollInfo.nMax;
139 }
4676948b 140#if 0
2b5f62a0 141 else
2b5f62a0
VZ
142 {
143 position = ::GetScrollPos((HWND) control, SB_CTL);
144 int minPos;
145 ::GetScrollRange((HWND) control, SB_CTL, &minPos, &maxPos);
146 }
4676948b 147#endif
a23fd0e1 148
2bda0e17 149#if defined(__WIN95__)
a23fd0e1
VZ
150 // A page size greater than one has the effect of reducing the effective
151 // range, therefore the range has already been boosted artificially - so
152 // reduce it again.
153 if ( m_pageSize > 1 )
154 maxPos -= (m_pageSize - 1);
155#endif // __WIN95__
2bda0e17 156
7798a18e 157 wxEventType scrollEvent = wxEVT_NULL;
2bda0e17
KB
158
159 int nScrollInc;
160 switch ( wParam )
161 {
a29ffc34 162 case SB_BOTTOM:
a23fd0e1
VZ
163 nScrollInc = maxPos - position;
164 scrollEvent = wxEVT_SCROLL_TOP;
165 break;
166
a29ffc34
VZ
167 case SB_TOP:
168 nScrollInc = -position;
a23fd0e1
VZ
169 scrollEvent = wxEVT_SCROLL_BOTTOM;
170 break;
171
172 case SB_LINEUP:
173 nScrollInc = -1;
174 scrollEvent = wxEVT_SCROLL_LINEUP;
175 break;
176
177 case SB_LINEDOWN:
178 nScrollInc = 1;
179 scrollEvent = wxEVT_SCROLL_LINEDOWN;
180 break;
181
182 case SB_PAGEUP:
183 nScrollInc = -GetPageSize();
184 scrollEvent = wxEVT_SCROLL_PAGEUP;
185 break;
186
187 case SB_PAGEDOWN:
188 nScrollInc = GetPageSize();
189 scrollEvent = wxEVT_SCROLL_PAGEDOWN;
190 break;
191
a23fd0e1 192 case SB_THUMBPOSITION:
2b5f62a0 193 nScrollInc = trackPos - position;
7d56fb8f
GRG
194 scrollEvent = wxEVT_SCROLL_THUMBRELEASE;
195 break;
feda3011
GRG
196
197 case SB_THUMBTRACK:
2b5f62a0 198 nScrollInc = trackPos - position;
a23fd0e1
VZ
199 scrollEvent = wxEVT_SCROLL_THUMBTRACK;
200 break;
201
e8b669d3
VZ
202 case SB_ENDSCROLL:
203 nScrollInc = 0;
cbc85508 204 scrollEvent = wxEVT_SCROLL_CHANGED;
e8b669d3
VZ
205 break;
206
a23fd0e1
VZ
207 default:
208 nScrollInc = 0;
2bda0e17
KB
209 }
210
e8b669d3 211 if ( nScrollInc )
2bda0e17 212 {
e8b669d3 213 position += nScrollInc;
2bda0e17 214
e8b669d3
VZ
215 if ( position < 0 )
216 position = 0;
217 if ( position > maxPos )
218 position = maxPos;
a23fd0e1 219
e8b669d3
VZ
220 SetThumbPosition(position);
221 }
222 else if ( scrollEvent != wxEVT_SCROLL_THUMBRELEASE &&
cbc85508 223 scrollEvent != wxEVT_SCROLL_CHANGED )
e8b669d3
VZ
224 {
225 // don't process the event if there is no displacement,
226 // unless this is a thumb release or end scroll event.
57f4f925 227 return false;
e8b669d3 228 }
a23fd0e1 229
a23fd0e1 230 wxScrollEvent event(scrollEvent, m_windowId);
27e229f5 231 event.SetOrientation(IsVertical() ? wxVERTICAL : wxHORIZONTAL);
e8b669d3 232 event.SetPosition(position);
a23fd0e1
VZ
233 event.SetEventObject( this );
234
235 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
236}
237
4fabb575 238void wxScrollBar::SetThumbPosition(int viewStart)
2bda0e17
KB
239{
240#if defined(__WIN95__)
2b5f62a0
VZ
241 SCROLLINFO info;
242 info.cbSize = sizeof(SCROLLINFO);
243 info.nPage = 0;
244 info.nMin = 0;
245 info.nPos = viewStart;
246 info.fMask = SIF_POS ;
247
248 ::SetScrollInfo((HWND) GetHWND(), SB_CTL, &info, TRUE);
2bda0e17 249#else
2b5f62a0 250 ::SetScrollPos((HWND) GetHWND(), SB_CTL, viewStart, TRUE);
2bda0e17
KB
251#endif
252}
253
4fabb575 254int wxScrollBar::GetThumbPosition(void) const
2bda0e17 255{
4676948b
JS
256 SCROLLINFO scrollInfo;
257 wxZeroMemory(scrollInfo);
258 scrollInfo.cbSize = sizeof(SCROLLINFO);
259 scrollInfo.fMask = SIF_POS;
f0a126fe 260
4676948b
JS
261 if ( !::GetScrollInfo(GetHwnd(), SB_CTL, &scrollInfo) )
262 {
263 wxLogLastError(_T("GetScrollInfo"));
264 }
265 return scrollInfo.nPos;
266// return ::GetScrollPos((HWND)m_hWnd, SB_CTL);
2bda0e17
KB
267}
268
debe6624
JS
269void wxScrollBar::SetScrollbar(int position, int thumbSize, int range, int pageSize,
270 bool refresh)
2bda0e17
KB
271{
272 m_viewSize = pageSize;
273 m_pageSize = thumbSize;
274 m_objectSize = range;
275
276 // The range (number of scroll steps) is the
277 // object length minus the page size.
278 int range1 = wxMax((m_objectSize - m_pageSize), 0) ;
279
280#if defined(__WIN95__)
281 // Try to adjust the range to cope with page size > 1
282 // (see comment for SetPageLength)
283 if ( m_pageSize > 1 )
284 {
a23fd0e1 285 range1 += (m_pageSize - 1);
2bda0e17
KB
286 }
287
288 SCROLLINFO info;
289 info.cbSize = sizeof(SCROLLINFO);
290 info.nPage = m_pageSize;
291 info.nMin = 0;
292 info.nMax = range1;
293 info.nPos = position;
294
295 info.fMask = SIF_PAGE | SIF_RANGE | SIF_POS;
296
297 ::SetScrollInfo((HWND) GetHWND(), SB_CTL, &info, refresh);
298#else
720afa24
DS
299 ::SetScrollPos((HWND)m_hWnd, SB_CTL, position, refresh);
300 ::SetScrollRange((HWND)m_hWnd, SB_CTL, 0, range1, refresh);
2bda0e17
KB
301#endif
302}
303
2bda0e17
KB
304void wxScrollBar::Command(wxCommandEvent& event)
305{
687706f5 306 SetThumbPosition(event.GetInt());
2bda0e17
KB
307 ProcessCommand(event);
308}
309
caafd082
DS
310wxSize wxScrollBar::DoGetBestSize() const
311{
312 int w = 100;
313 int h = 100;
314
315 if ( IsVertical() )
316 {
317 w = wxSystemSettings::GetMetric(wxSYS_VSCROLL_X);
318 }
319 else
320 {
321 h = wxSystemSettings::GetMetric(wxSYS_HSCROLL_Y);
322 }
323
31582e4e
RD
324 wxSize best(w, h);
325 CacheBestSize(best);
326 return best;
caafd082
DS
327}
328
720afa24
DS
329WXDWORD wxScrollBar::MSWGetStyle(long style, WXDWORD *exstyle) const
330{
331 // we never have an external border
332 WXDWORD msStyle = wxControl::MSWGetStyle
333 (
334 (style & ~wxBORDER_MASK) | wxBORDER_NONE, exstyle
335 );
336
337 // SBS_HORZ is 0 anyhow, but do mention it explicitly for clarity
338 msStyle |= style & wxSB_HORIZONTAL ? SBS_HORZ : SBS_VERT;
339
340 return msStyle;
341}
342
0cf11995 343WXHBRUSH wxScrollBar::MSWControlColor(WXHDC pDC, WXHWND hWnd)
123865f2 344{
0cf11995
VZ
345 // unless we have an explicitly set bg colour, use default (gradient under
346 // XP) brush instead of GetBackgroundColour() one as the base class would
347 //
348 // note that fg colour isn't used for a scrollbar
349 return UseBgCol() ? wxControl::MSWControlColor(pDC, hWnd) : NULL;
123865f2
JS
350}
351
1e6feb95 352#endif // wxUSE_SCROLLBAR