]> git.saurik.com Git - wxWidgets.git/blame - src/generic/scrlwing.cpp
compilation fix
[wxWidgets.git] / src / generic / scrlwing.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
ed4b0fdc 2// Name: src/generic/scrlwing.cpp
d32e78bd 3// Purpose: wxScrolledWindow implementation
c801d85f 4// Author: Julian Smart
566d84a7
RL
5// Modified by: Vadim Zeitlin on 31.08.00: wxScrollHelper allows to implement.
6// Ron Lee on 10.4.02: virtual size / auto scrollbars et al.
c801d85f
KB
7// Created: 01/02/97
8// RCS-ID: $Id$
77ffb593 9// Copyright: (c) wxWidgets team
65571936 10// Licence: wxWindows licence
c801d85f
KB
11/////////////////////////////////////////////////////////////////////////////
12
d80cd92a
VZ
13// ============================================================================
14// declarations
15// ============================================================================
16
17// ----------------------------------------------------------------------------
18// headers
19// ----------------------------------------------------------------------------
20
bcd055ae
JJ
21#ifdef __VMS
22#define XtDisplay XTDISPLAY
23#endif
24
c801d85f
KB
25// For compilers that support precompilation, includes "wx.h".
26#include "wx/wxprec.h"
27
c801d85f 28#ifdef __BORLANDC__
d80cd92a 29 #pragma hdrstop
c801d85f
KB
30#endif
31
de6185e2
WS
32#include "wx/scrolwin.h"
33
34#ifndef WX_PRECOMP
35 #include "wx/utils.h"
8e609c82 36 #include "wx/panel.h"
ed4b0fdc 37 #include "wx/dcclient.h"
c0badb70
WS
38 #if wxUSE_TIMER
39 #include "wx/timer.h"
40 #endif
ed2fbeb8 41 #include "wx/sizer.h"
4b316329 42#endif
ed4b0fdc 43
b9dac1ab
JS
44#ifdef __WXMAC__
45#include "wx/scrolbar.h"
46#endif
47
2a201ef8 48#include "wx/recguard.h"
c801d85f 49
48d1144b 50#ifdef __WXMSW__
1e6feb95 51 #include <windows.h> // for DLGC_WANTARROWS
7acf6a92 52 #include "wx/msw/winundef.h"
48d1144b
JS
53#endif
54
a91b47e8
JS
55#ifdef __WXMOTIF__
56// For wxRETAINED implementation
338dd992
JJ
57#ifdef __VMS__ //VMS's Xm.h is not (yet) compatible with C++
58 //This code switches off the compiler warnings
59# pragma message disable nosimpint
60#endif
a91b47e8 61#include <Xm/Xm.h>
338dd992
JJ
62#ifdef __VMS__
63# pragma message enable nosimpint
64#endif
a91b47e8
JS
65#endif
66
066f1b7a 67/*
ca65c044
WS
68 TODO PROPERTIES
69 style wxHSCROLL | wxVSCROLL
066f1b7a
SC
70*/
71
d80cd92a 72// ----------------------------------------------------------------------------
1e6feb95
VZ
73// wxScrollHelperEvtHandler: intercept the events from the window and forward
74// them to wxScrollHelper
d80cd92a
VZ
75// ----------------------------------------------------------------------------
76
349efbaa 77class WXDLLEXPORT wxScrollHelperEvtHandler : public wxEvtHandler
1e6feb95
VZ
78{
79public:
80 wxScrollHelperEvtHandler(wxScrollHelper *scrollHelper)
81 {
82 m_scrollHelper = scrollHelper;
83 }
d80cd92a 84
1e6feb95
VZ
85 virtual bool ProcessEvent(wxEvent& event);
86
ca65c044 87 void ResetDrawnFlag() { m_hasDrawnWindow = false; }
349efbaa 88
1e6feb95
VZ
89private:
90 wxScrollHelper *m_scrollHelper;
349efbaa
VZ
91
92 bool m_hasDrawnWindow;
22f3361e
VZ
93
94 DECLARE_NO_COPY_CLASS(wxScrollHelperEvtHandler)
1e6feb95
VZ
95};
96
4b316329 97#if wxUSE_TIMER
1e6feb95
VZ
98// ----------------------------------------------------------------------------
99// wxAutoScrollTimer: the timer used to generate a stream of scroll events when
100// a captured mouse is held outside the window
101// ----------------------------------------------------------------------------
102
103class wxAutoScrollTimer : public wxTimer
104{
105public:
106 wxAutoScrollTimer(wxWindow *winToScroll, wxScrollHelper *scroll,
107 wxEventType eventTypeToSend,
108 int pos, int orient);
109
110 virtual void Notify();
111
112private:
113 wxWindow *m_win;
114 wxScrollHelper *m_scrollHelper;
115 wxEventType m_eventType;
116 int m_pos,
117 m_orient;
22f3361e
VZ
118
119 DECLARE_NO_COPY_CLASS(wxAutoScrollTimer)
1e6feb95 120};
d80cd92a
VZ
121
122// ============================================================================
123// implementation
124// ============================================================================
125
126// ----------------------------------------------------------------------------
1e6feb95 127// wxAutoScrollTimer
d80cd92a
VZ
128// ----------------------------------------------------------------------------
129
1e6feb95
VZ
130wxAutoScrollTimer::wxAutoScrollTimer(wxWindow *winToScroll,
131 wxScrollHelper *scroll,
132 wxEventType eventTypeToSend,
133 int pos, int orient)
c801d85f 134{
1e6feb95
VZ
135 m_win = winToScroll;
136 m_scrollHelper = scroll;
137 m_eventType = eventTypeToSend;
138 m_pos = pos;
139 m_orient = orient;
c801d85f
KB
140}
141
1e6feb95 142void wxAutoScrollTimer::Notify()
c801d85f 143{
1e6feb95
VZ
144 // only do all this as long as the window is capturing the mouse
145 if ( wxWindow::GetCapture() != m_win )
146 {
147 Stop();
148 }
149 else // we still capture the mouse, continue generating events
150 {
151 // first scroll the window if we are allowed to do it
152 wxScrollWinEvent event1(m_eventType, m_pos, m_orient);
153 event1.SetEventObject(m_win);
154 if ( m_scrollHelper->SendAutoScrollEvents(event1) &&
155 m_win->GetEventHandler()->ProcessEvent(event1) )
156 {
157 // and then send a pseudo mouse-move event to refresh the selection
158 wxMouseEvent event2(wxEVT_MOTION);
159 wxGetMousePosition(&event2.m_x, &event2.m_y);
160
161 // the mouse event coordinates should be client, not screen as
162 // returned by wxGetMousePosition
163 wxWindow *parentTop = m_win;
164 while ( parentTop->GetParent() )
165 parentTop = parentTop->GetParent();
166 wxPoint ptOrig = parentTop->GetPosition();
167 event2.m_x -= ptOrig.x;
168 event2.m_y -= ptOrig.y;
169
170 event2.SetEventObject(m_win);
171
172 // FIXME: we don't fill in the other members - ok?
173
174 m_win->GetEventHandler()->ProcessEvent(event2);
175 }
176 else // can't scroll further, stop
177 {
178 Stop();
179 }
180 }
181}
4b316329 182#endif
1e6feb95
VZ
183
184// ----------------------------------------------------------------------------
185// wxScrollHelperEvtHandler
186// ----------------------------------------------------------------------------
187
188bool wxScrollHelperEvtHandler::ProcessEvent(wxEvent& event)
189{
9a268018 190 wxEventType evType = event.GetEventType();
2feed004 191
349efbaa
VZ
192 // the explanation of wxEVT_PAINT processing hack: for historic reasons
193 // there are 2 ways to process this event in classes deriving from
194 // wxScrolledWindow. The user code may
195 //
196 // 1. override wxScrolledWindow::OnDraw(dc)
197 // 2. define its own OnPaint() handler
198 //
199 // In addition, in wxUniversal wxWindow defines OnPaint() itself and
200 // always processes the draw event, so we can't just try the window
201 // OnPaint() first and call our HandleOnPaint() if it doesn't process it
202 // (the latter would never be called in wxUniversal).
203 //
204 // So the solution is to have a flag telling us whether the user code drew
205 // anything in the window. We set it to true here but reset it to false in
206 // wxScrolledWindow::OnPaint() handler (which wouldn't be called if the
207 // user code defined OnPaint() in the derived class)
ca65c044 208 m_hasDrawnWindow = true;
349efbaa 209
ff186591
VZ
210 // pass it on to the real handler
211 bool processed = wxEvtHandler::ProcessEvent(event);
212
213 // always process the size events ourselves, even if the user code handles
214 // them as well, as we need to AdjustScrollbars()
215 //
216 // NB: it is important to do it after processing the event in the normal
217 // way as HandleOnSize() may generate a wxEVT_SIZE itself if the
218 // scrollbar[s] (dis)appear and it should be seen by the user code
219 // after this one
220 if ( evType == wxEVT_SIZE )
221 {
222 m_scrollHelper->HandleOnSize((wxSizeEvent &)event);
223
ca65c044 224 return true;
ff186591
VZ
225 }
226
227 if ( processed )
349efbaa
VZ
228 {
229 // normally, nothing more to do here - except if it was a paint event
230 // which wasn't really processed, then we'll try to call our
231 // OnDraw() below (from HandleOnPaint)
c6b81ceb 232 if ( m_hasDrawnWindow || event.IsCommandEvent() )
349efbaa 233 {
ca65c044 234 return true;
349efbaa
VZ
235 }
236 }
2feed004 237
e421922f
VZ
238 if ( evType == wxEVT_PAINT )
239 {
240 m_scrollHelper->HandleOnPaint((wxPaintEvent &)event);
ca65c044 241 return true;
e421922f 242 }
1e6feb95 243
35c71386
VZ
244 // reset the skipped flag (which might have been set to true in
245 // ProcessEvent() above) to be able to test it below
246 bool wasSkipped = event.GetSkipped();
247 if ( wasSkipped )
248 event.Skip(false);
249
e421922f
VZ
250 if ( evType == wxEVT_SCROLLWIN_TOP ||
251 evType == wxEVT_SCROLLWIN_BOTTOM ||
252 evType == wxEVT_SCROLLWIN_LINEUP ||
253 evType == wxEVT_SCROLLWIN_LINEDOWN ||
254 evType == wxEVT_SCROLLWIN_PAGEUP ||
255 evType == wxEVT_SCROLLWIN_PAGEDOWN ||
256 evType == wxEVT_SCROLLWIN_THUMBTRACK ||
257 evType == wxEVT_SCROLLWIN_THUMBRELEASE )
258 {
35c71386
VZ
259 m_scrollHelper->HandleOnScroll((wxScrollWinEvent &)event);
260 if ( !event.GetSkipped() )
261 {
262 // it makes sense to indicate that we processed the message as we
263 // did scroll the window (and also notice that wxAutoScrollTimer
264 // relies on our return value to stop scrolling when we are at top
265 // or bottom already)
266 processed = true;
267 wasSkipped = false;
268 }
e421922f 269 }
1e6feb95 270
e421922f
VZ
271 if ( evType == wxEVT_ENTER_WINDOW )
272 {
273 m_scrollHelper->HandleOnMouseEnter((wxMouseEvent &)event);
274 }
275 else if ( evType == wxEVT_LEAVE_WINDOW )
276 {
277 m_scrollHelper->HandleOnMouseLeave((wxMouseEvent &)event);
278 }
279#if wxUSE_MOUSEWHEEL
280 else if ( evType == wxEVT_MOUSEWHEEL )
281 {
282 m_scrollHelper->HandleOnMouseWheel((wxMouseEvent &)event);
283 }
284#endif // wxUSE_MOUSEWHEEL
e421922f
VZ
285 else if ( evType == wxEVT_CHAR )
286 {
287 m_scrollHelper->HandleOnChar((wxKeyEvent &)event);
35c71386
VZ
288 if ( !event.GetSkipped() )
289 {
290 processed = true;
291 wasSkipped = false;
292 }
1e6feb95
VZ
293 }
294
35c71386
VZ
295 if ( processed )
296 event.Skip(wasSkipped);
297
298 return processed;
1e6feb95
VZ
299}
300
301// ----------------------------------------------------------------------------
302// wxScrollHelper construction
303// ----------------------------------------------------------------------------
304
305wxScrollHelper::wxScrollHelper(wxWindow *win)
306{
d32e78bd
VZ
307 wxASSERT_MSG( win, _T("associated window can't be NULL in wxScrollHelper") );
308
1e6feb95
VZ
309 m_xScrollPixelsPerLine =
310 m_yScrollPixelsPerLine =
311 m_xScrollPosition =
312 m_yScrollPosition =
313 m_xScrollLines =
314 m_yScrollLines =
315 m_xScrollLinesPerPage =
139adb6a 316 m_yScrollLinesPerPage = 0;
1e6feb95
VZ
317
318 m_xScrollingEnabled =
ca65c044 319 m_yScrollingEnabled = true;
1e6feb95
VZ
320
321 m_scaleX =
139adb6a 322 m_scaleY = 1.0;
24ce4c18 323#if wxUSE_MOUSEWHEEL
d2c52078 324 m_wheelRotation = 0;
24ce4c18 325#endif
a58a12e9 326
1e6feb95
VZ
327 m_win =
328 m_targetWindow = (wxWindow *)NULL;
139adb6a 329
1e6feb95 330 m_timerAutoScroll = (wxTimer *)NULL;
d7da9756 331
349efbaa
VZ
332 m_handler = NULL;
333
d32e78bd 334 m_win = win;
f4fe2f20
RR
335
336 m_win->SetScrollHelper( this );
d32e78bd
VZ
337
338 // by default, the associated window is also the target window
339 DoSetTargetWindow(win);
1e6feb95 340}
d7da9756 341
1e6feb95 342wxScrollHelper::~wxScrollHelper()
d80cd92a 343{
1e6feb95
VZ
344 StopAutoScrolling();
345
349efbaa 346 DeleteEvtHandler();
d80cd92a
VZ
347}
348
349// ----------------------------------------------------------------------------
350// setting scrolling parameters
351// ----------------------------------------------------------------------------
352
1e6feb95
VZ
353void wxScrollHelper::SetScrollbars(int pixelsPerUnitX,
354 int pixelsPerUnitY,
355 int noUnitsX,
356 int noUnitsY,
357 int xPos,
358 int yPos,
359 bool noRefresh)
c801d85f 360{
b0486e0d
SN
361 int xpos, ypos;
362
363 CalcUnscrolledPosition(xPos, yPos, &xpos, &ypos);
139adb6a
RR
364 bool do_refresh =
365 (
c801d85f 366 (noUnitsX != 0 && m_xScrollLines == 0) ||
566d84a7 367 (noUnitsX < m_xScrollLines && xpos > pixelsPerUnitX * noUnitsX) ||
b0486e0d 368
c801d85f 369 (noUnitsY != 0 && m_yScrollLines == 0) ||
566d84a7 370 (noUnitsY < m_yScrollLines && ypos > pixelsPerUnitY * noUnitsY) ||
c801d85f 371 (xPos != m_xScrollPosition) ||
b0486e0d 372 (yPos != m_yScrollPosition)
139adb6a 373 );
a58a12e9 374
139adb6a
RR
375 m_xScrollPixelsPerLine = pixelsPerUnitX;
376 m_yScrollPixelsPerLine = pixelsPerUnitY;
377 m_xScrollPosition = xPos;
378 m_yScrollPosition = yPos;
a91b47e8 379
150c8d89
RL
380 int w = noUnitsX * pixelsPerUnitX;
381 int h = noUnitsY * pixelsPerUnitY;
382
2b5f62a0
VZ
383 // For better backward compatibility we set persisting limits
384 // here not just the size. It makes SetScrollbars 'sticky'
385 // emulating the old non-autoscroll behaviour.
2b43d588 386 // m_targetWindow->SetVirtualSizeHints( w, h );
a58a12e9 387
2b5f62a0
VZ
388 // The above should arguably be deprecated, this however we still need.
389
f18f464c
VZ
390 // take care not to set 0 virtual size, 0 means that we don't have any
391 // scrollbars and hence we should use the real size instead of the virtual
392 // one which is indicated by using wxDefaultCoord
393 m_targetWindow->SetVirtualSize( w ? w : wxDefaultCoord,
394 h ? h : wxDefaultCoord);
dc429f89 395
a58a12e9 396 if (do_refresh && !noRefresh)
ca65c044 397 m_targetWindow->Refresh(true, GetScrollRect());
a58a12e9 398
1f066698
VZ
399#ifndef __WXUNIVERSAL__
400 // If the target is not the same as the window with the scrollbars,
401 // then we need to update the scrollbars here, since they won't have
402 // been updated by SetVirtualSize().
403 if ( m_targetWindow != m_win )
404#endif // !__WXUNIVERSAL__
405 {
406 AdjustScrollbars();
407 }
408#ifndef __WXUNIVERSAL__
409 else
410 {
411 // otherwise this has been done by AdjustScrollbars, above
1f066698
VZ
412 }
413#endif // !__WXUNIVERSAL__
c801d85f
KB
414}
415
d80cd92a 416// ----------------------------------------------------------------------------
af4088f1 417// [target] window handling
d80cd92a 418// ----------------------------------------------------------------------------
ecab4dba 419
349efbaa 420void wxScrollHelper::DeleteEvtHandler()
ecab4dba 421{
248d771c
VZ
422 // search for m_handler in the handler list
423 if ( m_win && m_handler )
349efbaa 424 {
74f6bbf9 425 if ( m_win->RemoveEventHandler(m_handler) )
248d771c 426 {
74f6bbf9 427 delete m_handler;
248d771c 428 }
74f6bbf9
VZ
429 //else: something is very wrong, so better [maybe] leak memory than
430 // risk a crash because of double deletion
248d771c 431
74f6bbf9 432 m_handler = NULL;
349efbaa
VZ
433 }
434}
435
af4088f1 436void wxScrollHelper::DoSetTargetWindow(wxWindow *target)
349efbaa 437{
ecab4dba 438 m_targetWindow = target;
8adc196b
SC
439#ifdef __WXMAC__
440 target->MacSetClipChildren( true ) ;
441#endif
349efbaa
VZ
442
443 // install the event handler which will intercept the events we're
af4088f1
VZ
444 // interested in (but only do it for our real window, not the target window
445 // which we scroll - we don't need to hijack its events)
446 if ( m_targetWindow == m_win )
13ff9344 447 {
248d771c
VZ
448 // if we already have a handler, delete it first
449 DeleteEvtHandler();
450
13ff9344
JS
451 m_handler = new wxScrollHelperEvtHandler(this);
452 m_targetWindow->PushEventHandler(m_handler);
453 }
349efbaa
VZ
454}
455
af4088f1 456void wxScrollHelper::SetTargetWindow(wxWindow *target)
349efbaa
VZ
457{
458 wxCHECK_RET( target, wxT("target window must not be NULL") );
459
460 if ( target == m_targetWindow )
461 return;
462
af4088f1 463 DoSetTargetWindow(target);
ecab4dba
RR
464}
465
1e6feb95 466wxWindow *wxScrollHelper::GetTargetWindow() const
ecab4dba
RR
467{
468 return m_targetWindow;
469}
470
d80cd92a
VZ
471// ----------------------------------------------------------------------------
472// scrolling implementation itself
473// ----------------------------------------------------------------------------
474
1e6feb95 475void wxScrollHelper::HandleOnScroll(wxScrollWinEvent& event)
c801d85f 476{
139adb6a 477 int nScrollInc = CalcScrollInc(event);
1e6feb95 478 if ( nScrollInc == 0 )
139adb6a 479 {
1e6feb95
VZ
480 // can't scroll further
481 event.Skip();
482
483 return;
139adb6a 484 }
c801d85f 485
ca65c044 486 bool needsRefresh = false;
1e6feb95
VZ
487 int dx = 0,
488 dy = 0;
b97dc9c8 489 int orient = event.GetOrientation();
139adb6a
RR
490 if (orient == wxHORIZONTAL)
491 {
1e6feb95
VZ
492 if ( m_xScrollingEnabled )
493 {
494 dx = -m_xScrollPixelsPerLine * nScrollInc;
495 }
139adb6a 496 else
1e6feb95 497 {
ca65c044 498 needsRefresh = true;
1e6feb95 499 }
139adb6a 500 }
c801d85f 501 else
139adb6a 502 {
1e6feb95
VZ
503 if ( m_yScrollingEnabled )
504 {
505 dy = -m_yScrollPixelsPerLine * nScrollInc;
506 }
139adb6a 507 else
1e6feb95 508 {
ca65c044 509 needsRefresh = true;
1e6feb95
VZ
510 }
511 }
512
b97dc9c8
VS
513 if ( !needsRefresh )
514 {
515 // flush all pending repaints before we change m_{x,y}ScrollPosition, as
516 // otherwise invalidated area could be updated incorrectly later when
517 // ScrollWindow() makes sure they're repainted before scrolling them
93727870
SC
518#ifdef __WXMAC__
519 // wxWindowMac is taking care of making sure the update area is correctly
520 // set up, while not forcing an immediate redraw
521#else
b97dc9c8 522 m_targetWindow->Update();
93727870 523#endif
b97dc9c8
VS
524 }
525
526 if (orient == wxHORIZONTAL)
527 {
528 m_xScrollPosition += nScrollInc;
529 m_win->SetScrollPos(wxHORIZONTAL, m_xScrollPosition);
530 }
531 else
532 {
533 m_yScrollPosition += nScrollInc;
534 m_win->SetScrollPos(wxVERTICAL, m_yScrollPosition);
535 }
536
1e6feb95
VZ
537 if ( needsRefresh )
538 {
ca65c044 539 m_targetWindow->Refresh(true, GetScrollRect());
1e6feb95
VZ
540 }
541 else
542 {
d5d58a93 543 m_targetWindow->ScrollWindow(dx, dy, GetScrollRect());
3d2b9c20 544 }
c801d85f
KB
545}
546
1e6feb95 547int wxScrollHelper::CalcScrollInc(wxScrollWinEvent& event)
c801d85f 548{
ecab4dba
RR
549 int pos = event.GetPosition();
550 int orient = event.GetOrientation();
c801d85f 551
ecab4dba 552 int nScrollInc = 0;
1a8caf94 553 if (event.GetEventType() == wxEVT_SCROLLWIN_TOP)
c801d85f 554 {
ecab4dba
RR
555 if (orient == wxHORIZONTAL)
556 nScrollInc = - m_xScrollPosition;
557 else
558 nScrollInc = - m_yScrollPosition;
1a8caf94
RR
559 } else
560 if (event.GetEventType() == wxEVT_SCROLLWIN_BOTTOM)
561 {
ecab4dba
RR
562 if (orient == wxHORIZONTAL)
563 nScrollInc = m_xScrollLines - m_xScrollPosition;
564 else
565 nScrollInc = m_yScrollLines - m_yScrollPosition;
1a8caf94
RR
566 } else
567 if (event.GetEventType() == wxEVT_SCROLLWIN_LINEUP)
568 {
ecab4dba 569 nScrollInc = -1;
1a8caf94
RR
570 } else
571 if (event.GetEventType() == wxEVT_SCROLLWIN_LINEDOWN)
572 {
ecab4dba 573 nScrollInc = 1;
1a8caf94
RR
574 } else
575 if (event.GetEventType() == wxEVT_SCROLLWIN_PAGEUP)
576 {
ecab4dba
RR
577 if (orient == wxHORIZONTAL)
578 nScrollInc = -GetScrollPageSize(wxHORIZONTAL);
579 else
580 nScrollInc = -GetScrollPageSize(wxVERTICAL);
1a8caf94
RR
581 } else
582 if (event.GetEventType() == wxEVT_SCROLLWIN_PAGEDOWN)
583 {
ecab4dba
RR
584 if (orient == wxHORIZONTAL)
585 nScrollInc = GetScrollPageSize(wxHORIZONTAL);
586 else
587 nScrollInc = GetScrollPageSize(wxVERTICAL);
1a8caf94
RR
588 } else
589 if ((event.GetEventType() == wxEVT_SCROLLWIN_THUMBTRACK) ||
590 (event.GetEventType() == wxEVT_SCROLLWIN_THUMBRELEASE))
591 {
ecab4dba
RR
592 if (orient == wxHORIZONTAL)
593 nScrollInc = pos - m_xScrollPosition;
594 else
595 nScrollInc = pos - m_yScrollPosition;
c801d85f 596 }
88150e60 597
ecab4dba
RR
598 if (orient == wxHORIZONTAL)
599 {
2e9c0c01 600 if ( m_xScrollPosition + nScrollInc < 0 )
ecab4dba 601 {
2e9c0c01
VZ
602 // As -ve as we can go
603 nScrollInc = -m_xScrollPosition;
604 }
605 else // check for the other bound
606 {
607 const int posMax = m_xScrollLines - m_xScrollLinesPerPage;
608 if ( m_xScrollPosition + nScrollInc > posMax )
878ddad5 609 {
2e9c0c01
VZ
610 // As +ve as we can go
611 nScrollInc = posMax - m_xScrollPosition;
878ddad5 612 }
ecab4dba 613 }
9d9355c6 614 }
2e9c0c01 615 else // wxVERTICAL
ecab4dba 616 {
2e9c0c01 617 if ( m_yScrollPosition + nScrollInc < 0 )
d80cd92a 618 {
2e9c0c01
VZ
619 // As -ve as we can go
620 nScrollInc = -m_yScrollPosition;
ecab4dba 621 }
2e9c0c01 622 else // check for the other bound
be9b0663 623 {
2e9c0c01
VZ
624 const int posMax = m_yScrollLines - m_yScrollLinesPerPage;
625 if ( m_yScrollPosition + nScrollInc > posMax )
626 {
627 // As +ve as we can go
628 nScrollInc = posMax - m_yScrollPosition;
629 }
be9b0663 630 }
9d9355c6 631 }
9d9355c6 632
ecab4dba 633 return nScrollInc;
c801d85f
KB
634}
635
636// Adjust the scrollbars - new version.
1e6feb95 637void wxScrollHelper::AdjustScrollbars()
c801d85f 638{
2a201ef8
VZ
639 static wxRecursionGuardFlag s_flagReentrancy;
640 wxRecursionGuard guard(s_flagReentrancy);
641 if ( guard.IsInside() )
642 {
643 // don't reenter AdjustScrollbars() while another call to
644 // AdjustScrollbars() is in progress because this may lead to calling
645 // ScrollWindow() twice and this can really happen under MSW if
646 // SetScrollbar() call below adds or removes the scrollbar which
647 // changes the window size and hence results in another
648 // AdjustScrollbars() call
649 return;
650 }
651
566d84a7
RL
652 int w = 0, h = 0;
653 int oldw, oldh;
a58a12e9 654
27d029c7
RR
655 int oldXScroll = m_xScrollPosition;
656 int oldYScroll = m_yScrollPosition;
c801d85f 657
be9b0663
VZ
658 // VZ: at least under Windows this loop is useless because when scrollbars
659 // [dis]appear we get a WM_SIZE resulting in another call to
660 // AdjustScrollbars() anyhow. As it doesn't seem to do any harm I leave
661 // it here for now but it would be better to ensure that all ports
662 // generate EVT_SIZE when scrollbars [dis]appear, emulating it if
663 // necessary, and remove it later
870c86bc
JS
664 // JACS: Stop potential infinite loop by limiting number of iterations
665 int iterationCount = 0;
666 const int iterationMax = 5;
be9b0663
VZ
667 do
668 {
870c86bc 669 iterationCount ++;
d32e78bd 670
566d84a7 671 GetTargetSize(&w, 0);
c801d85f 672
878ddad5
RR
673 // scroll lines per page: if 0, no scrolling is needed
674 int linesPerPage;
675
676 if ( m_xScrollPixelsPerLine == 0 )
566d84a7 677 {
878ddad5 678 // scrolling is disabled
566d84a7
RL
679 m_xScrollLines = 0;
680 m_xScrollPosition = 0;
878ddad5 681 linesPerPage = 0;
566d84a7 682 }
878ddad5 683 else // might need scrolling
566d84a7 684 {
878ddad5
RR
685 // Round up integer division to catch any "leftover" client space.
686 const int wVirt = m_targetWindow->GetVirtualSize().GetWidth();
687 m_xScrollLines = (wVirt + m_xScrollPixelsPerLine - 1) / m_xScrollPixelsPerLine;
566d84a7
RL
688
689 // Calculate page size i.e. number of scroll units you get on the
878ddad5
RR
690 // current client window.
691 linesPerPage = w / m_xScrollPixelsPerLine;
692
693 // Special case. When client and virtual size are very close but
694 // the client is big enough, kill scrollbar.
695 if ((linesPerPage < m_xScrollLines) && (w >= wVirt)) ++linesPerPage;
696
697 if (linesPerPage >= m_xScrollLines)
698 {
699 // we're big enough to not need scrolling
700 linesPerPage =
701 m_xScrollLines =
702 m_xScrollPosition = 0;
703 }
704 else // we do need a scrollbar
705 {
706 if ( linesPerPage < 1 )
707 linesPerPage = 1;
708
709 // Correct position if greater than extent of canvas minus
710 // the visible portion of it or if below zero
711 const int posMax = m_xScrollLines - linesPerPage;
712 if ( m_xScrollPosition > posMax )
713 m_xScrollPosition = posMax;
714 else if ( m_xScrollPosition < 0 )
715 m_xScrollPosition = 0;
716 }
566d84a7 717 }
c801d85f 718
878ddad5
RR
719 m_win->SetScrollbar(wxHORIZONTAL, m_xScrollPosition,
720 linesPerPage, m_xScrollLines);
a58a12e9 721
878ddad5
RR
722 // The amount by which we scroll when paging
723 SetScrollPageSize(wxHORIZONTAL, linesPerPage);
724
725 GetTargetSize(0, &h);
be9b0663
VZ
726
727 if ( m_yScrollPixelsPerLine == 0 )
566d84a7 728 {
be9b0663 729 // scrolling is disabled
566d84a7
RL
730 m_yScrollLines = 0;
731 m_yScrollPosition = 0;
be9b0663 732 linesPerPage = 0;
566d84a7 733 }
be9b0663 734 else // might need scrolling
566d84a7 735 {
878ddad5
RR
736 // Round up integer division to catch any "leftover" client space.
737 const int hVirt = m_targetWindow->GetVirtualSize().GetHeight();
738 m_yScrollLines = ( hVirt + m_yScrollPixelsPerLine - 1 ) / m_yScrollPixelsPerLine;
566d84a7
RL
739
740 // Calculate page size i.e. number of scroll units you get on the
878ddad5 741 // current client window.
be9b0663 742 linesPerPage = h / m_yScrollPixelsPerLine;
878ddad5
RR
743
744 // Special case. When client and virtual size are very close but
745 // the client is big enough, kill scrollbar.
746 if ((linesPerPage < m_yScrollLines) && (h >= hVirt)) ++linesPerPage;
747
748 if (linesPerPage >= m_yScrollLines)
be9b0663
VZ
749 {
750 // we're big enough to not need scrolling
751 linesPerPage =
752 m_yScrollLines =
753 m_yScrollPosition = 0;
754 }
755 else // we do need a scrollbar
756 {
757 if ( linesPerPage < 1 )
758 linesPerPage = 1;
759
760 // Correct position if greater than extent of canvas minus
761 // the visible portion of it or if below zero
762 const int posMax = m_yScrollLines - linesPerPage;
763 if ( m_yScrollPosition > posMax )
764 m_yScrollPosition = posMax;
765 else if ( m_yScrollPosition < 0 )
766 m_yScrollPosition = 0;
767 }
768 }
566d84a7 769
be9b0663
VZ
770 m_win->SetScrollbar(wxVERTICAL, m_yScrollPosition,
771 linesPerPage, m_yScrollLines);
566d84a7 772
be9b0663
VZ
773 // The amount by which we scroll when paging
774 SetScrollPageSize(wxVERTICAL, linesPerPage);
c801d85f 775
139adb6a 776
be9b0663 777 // If a scrollbar (dis)appeared as a result of this, adjust them again.
566d84a7
RL
778 oldw = w;
779 oldh = h;
780
781 GetTargetSize( &w, &h );
870c86bc 782 } while ( (w != oldw || h != oldh) && (iterationCount < iterationMax) );
566d84a7
RL
783
784#ifdef __WXMOTIF__
785 // Sorry, some Motif-specific code to implement a backing pixmap
786 // for the wxRETAINED style. Implementing a backing store can't
787 // be entirely generic because it relies on the wxWindowDC implementation
788 // to duplicate X drawing calls for the backing pixmap.
789
790 if ( m_targetWindow->GetWindowStyle() & wxRETAINED )
139adb6a 791 {
566d84a7
RL
792 Display* dpy = XtDisplay((Widget)m_targetWindow->GetMainWidget());
793
794 int totalPixelWidth = m_xScrollLines * m_xScrollPixelsPerLine;
795 int totalPixelHeight = m_yScrollLines * m_yScrollPixelsPerLine;
796 if (m_targetWindow->GetBackingPixmap() &&
797 !((m_targetWindow->GetPixmapWidth() == totalPixelWidth) &&
798 (m_targetWindow->GetPixmapHeight() == totalPixelHeight)))
799 {
800 XFreePixmap (dpy, (Pixmap) m_targetWindow->GetBackingPixmap());
801 m_targetWindow->SetBackingPixmap((WXPixmap) 0);
802 }
803
804 if (!m_targetWindow->GetBackingPixmap() &&
9b66c26a 805 (m_xScrollLines != 0) && (m_yScrollLines != 0))
566d84a7
RL
806 {
807 int depth = wxDisplayDepth();
808 m_targetWindow->SetPixmapWidth(totalPixelWidth);
809 m_targetWindow->SetPixmapHeight(totalPixelHeight);
810 m_targetWindow->SetBackingPixmap((WXPixmap) XCreatePixmap (dpy, RootWindow (dpy, DefaultScreen (dpy)),
811 m_targetWindow->GetPixmapWidth(), m_targetWindow->GetPixmapHeight(), depth));
812 }
813
139adb6a 814 }
566d84a7 815#endif // Motif
a58a12e9 816
27d029c7
RR
817 if (oldXScroll != m_xScrollPosition)
818 {
819 if (m_xScrollingEnabled)
566d84a7 820 m_targetWindow->ScrollWindow( m_xScrollPixelsPerLine * (oldXScroll - m_xScrollPosition), 0,
d5d58a93 821 GetScrollRect() );
27d029c7 822 else
ca65c044 823 m_targetWindow->Refresh(true, GetScrollRect());
27d029c7 824 }
a58a12e9 825
27d029c7
RR
826 if (oldYScroll != m_yScrollPosition)
827 {
828 if (m_yScrollingEnabled)
1e6feb95 829 m_targetWindow->ScrollWindow( 0, m_yScrollPixelsPerLine * (oldYScroll-m_yScrollPosition),
d5d58a93 830 GetScrollRect() );
27d029c7 831 else
ca65c044 832 m_targetWindow->Refresh(true, GetScrollRect());
27d029c7 833 }
c801d85f
KB
834}
835
1e6feb95 836void wxScrollHelper::DoPrepareDC(wxDC& dc)
c801d85f 837{
1e6feb95 838 wxPoint pt = dc.GetDeviceOrigin();
807a572e
RR
839#ifdef __WXGTK__
840 // It may actually be correct to always query
841 // the m_sign from the DC here, but I leve the
842 // #ifdef GTK for now.
843 if (m_win->GetLayoutDirection() == wxLayout_RightToLeft)
844 dc.SetDeviceOrigin( pt.x + m_xScrollPosition * m_xScrollPixelsPerLine,
845 pt.y - m_yScrollPosition * m_yScrollPixelsPerLine );
846 else
847#endif
848 dc.SetDeviceOrigin( pt.x - m_xScrollPosition * m_xScrollPixelsPerLine,
849 pt.y - m_yScrollPosition * m_yScrollPixelsPerLine );
139adb6a 850 dc.SetUserScale( m_scaleX, m_scaleY );
c801d85f
KB
851}
852
566d84a7
RL
853void wxScrollHelper::SetScrollRate( int xstep, int ystep )
854{
855 int old_x = m_xScrollPixelsPerLine * m_xScrollPosition;
856 int old_y = m_yScrollPixelsPerLine * m_yScrollPosition;
857
858 m_xScrollPixelsPerLine = xstep;
859 m_yScrollPixelsPerLine = ystep;
860
861 int new_x = m_xScrollPixelsPerLine * m_xScrollPosition;
862 int new_y = m_yScrollPixelsPerLine * m_yScrollPosition;
863
864 m_win->SetScrollPos( wxHORIZONTAL, m_xScrollPosition );
865 m_win->SetScrollPos( wxVERTICAL, m_yScrollPosition );
866 m_targetWindow->ScrollWindow( old_x - new_x, old_y - new_y );
867
868 AdjustScrollbars();
869}
870
1e6feb95 871void wxScrollHelper::GetScrollPixelsPerUnit (int *x_unit, int *y_unit) const
c801d85f 872{
a0bc2c1d
VZ
873 if ( x_unit )
874 *x_unit = m_xScrollPixelsPerLine;
875 if ( y_unit )
876 *y_unit = m_yScrollPixelsPerLine;
c801d85f
KB
877}
878
5713b349
RR
879
880int wxScrollHelper::GetScrollLines( int orient ) const
881{
882 if ( orient == wxHORIZONTAL )
883 return m_xScrollLines;
884 else
885 return m_yScrollLines;
886}
887
1e6feb95 888int wxScrollHelper::GetScrollPageSize(int orient) const
c801d85f
KB
889{
890 if ( orient == wxHORIZONTAL )
891 return m_xScrollLinesPerPage;
892 else
893 return m_yScrollLinesPerPage;
894}
895
1e6feb95 896void wxScrollHelper::SetScrollPageSize(int orient, int pageSize)
c801d85f
KB
897{
898 if ( orient == wxHORIZONTAL )
899 m_xScrollLinesPerPage = pageSize;
900 else
901 m_yScrollLinesPerPage = pageSize;
902}
903
904/*
905 * Scroll to given position (scroll position, not pixel position)
906 */
1e6feb95 907void wxScrollHelper::Scroll( int x_pos, int y_pos )
c801d85f 908{
8b089c5e
JS
909 if (!m_targetWindow)
910 return;
911
a58a12e9 912 if (((x_pos == -1) || (x_pos == m_xScrollPosition)) &&
139adb6a 913 ((y_pos == -1) || (y_pos == m_yScrollPosition))) return;
a58a12e9 914
8d7eaf91 915 int w = 0, h = 0;
1e6feb95 916 GetTargetSize(&w, &h);
c801d85f 917
b97dc9c8
VS
918 // compute new position:
919 int new_x = m_xScrollPosition;
920 int new_y = m_yScrollPosition;
8ea45699 921
8775b357 922 if ((x_pos != -1) && (m_xScrollPixelsPerLine))
c801d85f 923 {
b97dc9c8 924 new_x = x_pos;
a58a12e9 925
3d2b9c20
RR
926 // Calculate page size i.e. number of scroll units you get on the
927 // current client window
5713b349 928 int noPagePositions = w/m_xScrollPixelsPerLine;
139adb6a
RR
929 if (noPagePositions < 1) noPagePositions = 1;
930
931 // Correct position if greater than extent of canvas minus
3d2b9c20 932 // the visible portion of it or if below zero
b97dc9c8
VS
933 new_x = wxMin( m_xScrollLines-noPagePositions, new_x );
934 new_x = wxMax( 0, new_x );
c801d85f 935 }
8775b357 936 if ((y_pos != -1) && (m_yScrollPixelsPerLine))
c801d85f 937 {
b97dc9c8 938 new_y = y_pos;
a58a12e9 939
3d2b9c20
RR
940 // Calculate page size i.e. number of scroll units you get on the
941 // current client window
5713b349 942 int noPagePositions = h/m_yScrollPixelsPerLine;
139adb6a
RR
943 if (noPagePositions < 1) noPagePositions = 1;
944
945 // Correct position if greater than extent of canvas minus
3d2b9c20 946 // the visible portion of it or if below zero
b97dc9c8
VS
947 new_y = wxMin( m_yScrollLines-noPagePositions, new_y );
948 new_y = wxMax( 0, new_y );
949 }
d2c52078 950
b97dc9c8
VS
951 if ( new_x == m_xScrollPosition && new_y == m_yScrollPosition )
952 return; // nothing to do, the position didn't change
953
954 // flush all pending repaints before we change m_{x,y}ScrollPosition, as
955 // otherwise invalidated area could be updated incorrectly later when
956 // ScrollWindow() makes sure they're repainted before scrolling them
957 m_targetWindow->Update();
958
959 // update the position and scroll the window now:
960 if (m_xScrollPosition != new_x)
961 {
962 int old_x = m_xScrollPosition;
963 m_xScrollPosition = new_x;
964 m_win->SetScrollPos( wxHORIZONTAL, new_x );
965 m_targetWindow->ScrollWindow( (old_x-new_x)*m_xScrollPixelsPerLine, 0,
966 GetScrollRect() );
967 }
968
969 if (m_yScrollPosition != new_y)
970 {
971 int old_y = m_yScrollPosition;
972 m_yScrollPosition = new_y;
973 m_win->SetScrollPos( wxVERTICAL, new_y );
974 m_targetWindow->ScrollWindow( 0, (old_y-new_y)*m_yScrollPixelsPerLine,
975 GetScrollRect() );
c801d85f 976 }
c801d85f
KB
977}
978
1e6feb95 979void wxScrollHelper::EnableScrolling (bool x_scroll, bool y_scroll)
c801d85f 980{
139adb6a
RR
981 m_xScrollingEnabled = x_scroll;
982 m_yScrollingEnabled = y_scroll;
c801d85f
KB
983}
984
c801d85f 985// Where the current view starts from
1e6feb95 986void wxScrollHelper::GetViewStart (int *x, int *y) const
c801d85f 987{
a0bc2c1d
VZ
988 if ( x )
989 *x = m_xScrollPosition;
990 if ( y )
991 *y = m_yScrollPosition;
c801d85f
KB
992}
993
8c2f3797 994void wxScrollHelper::DoCalcScrolledPosition(int x, int y, int *xx, int *yy) const
c801d85f 995{
a0bc2c1d 996 if ( xx )
807a572e 997 *xx = x - m_xScrollPosition * m_xScrollPixelsPerLine;
a0bc2c1d
VZ
998 if ( yy )
999 *yy = y - m_yScrollPosition * m_yScrollPixelsPerLine;
c801d85f
KB
1000}
1001
8c2f3797 1002void wxScrollHelper::DoCalcUnscrolledPosition(int x, int y, int *xx, int *yy) const
c801d85f 1003{
a0bc2c1d 1004 if ( xx )
807a572e 1005 *xx = x + m_xScrollPosition * m_xScrollPixelsPerLine;
a0bc2c1d
VZ
1006 if ( yy )
1007 *yy = y + m_yScrollPosition * m_yScrollPixelsPerLine;
c801d85f 1008}
d80cd92a 1009
d32e78bd
VZ
1010// ----------------------------------------------------------------------------
1011// geometry
1012// ----------------------------------------------------------------------------
1013
1014bool wxScrollHelper::ScrollLayout()
1015{
1016 if ( m_win->GetSizer() && m_targetWindow == m_win )
1017 {
1018 // If we're the scroll target, take into account the
1019 // virtual size and scrolled position of the window.
1020
8d7eaf91 1021 int x = 0, y = 0, w = 0, h = 0;
d32e78bd
VZ
1022 CalcScrolledPosition(0,0, &x,&y);
1023 m_win->GetVirtualSize(&w, &h);
1024 m_win->GetSizer()->SetDimension(x, y, w, h);
1025 return true;
1026 }
1027
1028 // fall back to default for LayoutConstraints
1029 return m_win->wxWindow::Layout();
1030}
1031
1032void wxScrollHelper::ScrollDoSetVirtualSize(int x, int y)
1033{
1034 m_win->wxWindow::DoSetVirtualSize( x, y );
1035 AdjustScrollbars();
1036
1037 if (m_win->GetAutoLayout())
1038 m_win->Layout();
1039}
1040
1041// wxWindow's GetBestVirtualSize returns the actual window size,
1042// whereas we want to return the virtual size
1043wxSize wxScrollHelper::ScrollGetBestVirtualSize() const
1044{
1045 wxSize clientSize(m_win->GetClientSize());
1046 if ( m_win->GetSizer() )
1047 clientSize.IncTo(m_win->GetSizer()->CalcMin());
1048
1049 return clientSize;
1050}
1051
1052// return the window best size from the given best virtual size
1053wxSize
1054wxScrollHelper::ScrollGetWindowSizeForVirtualSize(const wxSize& size) const
1055{
1056 // Only use the content to set the window size in the direction
1057 // where there's no scrolling; otherwise we're going to get a huge
1058 // window in the direction in which scrolling is enabled
1059 int ppuX, ppuY;
1060 GetScrollPixelsPerUnit(&ppuX, &ppuY);
1061
1062 wxSize minSize = m_win->GetMinSize();
1063 if ( !minSize.IsFullySpecified() )
1064 minSize = m_win->GetSize();
1065
1066 wxSize best(size);
1067 if (ppuX > 0)
1068 best.x = minSize.x;
1069 if (ppuY > 0)
1070 best.y = minSize.y;
1071
1072 return best;
1073}
1074
d80cd92a
VZ
1075// ----------------------------------------------------------------------------
1076// event handlers
1077// ----------------------------------------------------------------------------
1078
1079// Default OnSize resets scrollbars, if any
1e6feb95 1080void wxScrollHelper::HandleOnSize(wxSizeEvent& WXUNUSED(event))
d80cd92a 1081{
c376d80f 1082 if ( m_targetWindow->GetAutoLayout() )
2b5f62a0 1083 {
c376d80f 1084 wxSize size = m_targetWindow->GetBestVirtualSize();
d32e78bd 1085
c376d80f 1086 // This will call ::Layout() and ::AdjustScrollbars()
168f82ce 1087 m_win->SetVirtualSize( size );
2b5f62a0
VZ
1088 }
1089 else
c376d80f 1090 {
2b5f62a0 1091 AdjustScrollbars();
c376d80f 1092 }
d80cd92a
VZ
1093}
1094
1095// This calls OnDraw, having adjusted the origin according to the current
1096// scroll position
1e6feb95 1097void wxScrollHelper::HandleOnPaint(wxPaintEvent& WXUNUSED(event))
d80cd92a 1098{
af4088f1
VZ
1099 // don't use m_targetWindow here, this is always called for ourselves
1100 wxPaintDC dc(m_win);
1e6feb95 1101 DoPrepareDC(dc);
d80cd92a
VZ
1102
1103 OnDraw(dc);
1104}
1105
438e3558
VZ
1106// kbd handling: notice that we use OnChar() and not OnKeyDown() for
1107// compatibility here - if we used OnKeyDown(), the programs which process
1108// arrows themselves in their OnChar() would never get the message and like
1109// this they always have the priority
1e6feb95 1110void wxScrollHelper::HandleOnChar(wxKeyEvent& event)
d80cd92a 1111{
8d7eaf91
MW
1112 int stx = 0, sty = 0, // view origin
1113 szx = 0, szy = 0, // view size (total)
1114 clix = 0, cliy = 0; // view size (on screen)
d80cd92a 1115
1e6feb95
VZ
1116 GetViewStart(&stx, &sty);
1117 GetTargetSize(&clix, &cliy);
566d84a7 1118 m_targetWindow->GetVirtualSize(&szx, &szy);
56dade3c
RL
1119
1120 if( m_xScrollPixelsPerLine )
1121 {
1122 clix /= m_xScrollPixelsPerLine;
d7da9756 1123 szx /= m_xScrollPixelsPerLine;
56dade3c
RL
1124 }
1125 else
1126 {
1127 clix = 0;
d7da9756 1128 szx = -1;
56dade3c
RL
1129 }
1130 if( m_yScrollPixelsPerLine )
1131 {
1132 cliy /= m_yScrollPixelsPerLine;
1133 szy /= m_yScrollPixelsPerLine;
1134 }
1135 else
1136 {
1137 cliy = 0;
d7da9756 1138 szy = -1;
56dade3c 1139 }
d80cd92a 1140
39c869a6
VZ
1141 int xScrollOld = m_xScrollPosition,
1142 yScrollOld = m_yScrollPosition;
1143
ecb01792 1144 int dsty;
4995ca80 1145 switch ( event.GetKeyCode() )
d80cd92a
VZ
1146 {
1147 case WXK_PAGEUP:
ecb01792
RL
1148 dsty = sty - (5 * cliy / 6);
1149 Scroll(-1, (dsty == -1) ? 0 : dsty);
d80cd92a
VZ
1150 break;
1151
1152 case WXK_PAGEDOWN:
d80cd92a
VZ
1153 Scroll(-1, sty + (5 * cliy / 6));
1154 break;
1155
d80cd92a
VZ
1156 case WXK_HOME:
1157 Scroll(0, event.ControlDown() ? 0 : -1);
1158 break;
1159
1160 case WXK_END:
4acd108c 1161 Scroll(szx - clix, event.ControlDown() ? szy - cliy : -1);
d80cd92a
VZ
1162 break;
1163
1164 case WXK_UP:
1165 Scroll(-1, sty - 1);
1166 break;
1167
1168 case WXK_DOWN:
1169 Scroll(-1, sty + 1);
1170 break;
1171
1172 case WXK_LEFT:
1173 Scroll(stx - 1, -1);
1174 break;
1175
1176 case WXK_RIGHT:
1177 Scroll(stx + 1, -1);
1178 break;
1179
1180 default:
1181 // not for us
1182 event.Skip();
1183 }
39c869a6
VZ
1184
1185 if ( m_xScrollPosition != xScrollOld )
1186 {
1187 wxScrollWinEvent event(wxEVT_SCROLLWIN_THUMBTRACK, m_xScrollPosition,
1188 wxHORIZONTAL);
1189 event.SetEventObject(m_win);
1190 m_win->GetEventHandler()->ProcessEvent(event);
1191 }
1192
1193 if ( m_yScrollPosition != yScrollOld )
1194 {
1195 wxScrollWinEvent event(wxEVT_SCROLLWIN_THUMBTRACK, m_yScrollPosition,
1196 wxVERTICAL);
1197 event.SetEventObject(m_win);
1198 m_win->GetEventHandler()->ProcessEvent(event);
1199 }
d80cd92a 1200}
d2c52078 1201
1e6feb95
VZ
1202// ----------------------------------------------------------------------------
1203// autoscroll stuff: these functions deal with sending fake scroll events when
1204// a captured mouse is being held outside the window
1205// ----------------------------------------------------------------------------
1206
1207bool wxScrollHelper::SendAutoScrollEvents(wxScrollWinEvent& event) const
1208{
1209 // only send the event if the window is scrollable in this direction
1210 wxWindow *win = (wxWindow *)event.GetEventObject();
1211 return win->HasScrollbar(event.GetOrientation());
1212}
1213
1214void wxScrollHelper::StopAutoScrolling()
1215{
4b316329 1216#if wxUSE_TIMER
1e6feb95
VZ
1217 if ( m_timerAutoScroll )
1218 {
1219 delete m_timerAutoScroll;
1220 m_timerAutoScroll = (wxTimer *)NULL;
1221 }
4b316329 1222#endif
1e6feb95 1223}
d2c52078 1224
1e6feb95 1225void wxScrollHelper::HandleOnMouseEnter(wxMouseEvent& event)
d2c52078 1226{
1e6feb95
VZ
1227 StopAutoScrolling();
1228
1229 event.Skip();
1230}
d2c52078 1231
1e6feb95
VZ
1232void wxScrollHelper::HandleOnMouseLeave(wxMouseEvent& event)
1233{
1234 // don't prevent the usual processing of the event from taking place
1235 event.Skip();
1236
1237 // when a captured mouse leave a scrolled window we start generate
1238 // scrolling events to allow, for example, extending selection beyond the
1239 // visible area in some controls
1240 if ( wxWindow::GetCapture() == m_targetWindow )
1241 {
1242 // where is the mouse leaving?
1243 int pos, orient;
1244 wxPoint pt = event.GetPosition();
1245 if ( pt.x < 0 )
1246 {
1247 orient = wxHORIZONTAL;
1248 pos = 0;
1249 }
1250 else if ( pt.y < 0 )
1251 {
1252 orient = wxVERTICAL;
1253 pos = 0;
1254 }
1255 else // we're lower or to the right of the window
1256 {
1257 wxSize size = m_targetWindow->GetClientSize();
1258 if ( pt.x > size.x )
1259 {
1260 orient = wxHORIZONTAL;
1261 pos = m_xScrollLines;
1262 }
1263 else if ( pt.y > size.y )
1264 {
1265 orient = wxVERTICAL;
1266 pos = m_yScrollLines;
1267 }
1268 else // this should be impossible
1269 {
1270 // but seems to happen sometimes under wxMSW - maybe it's a bug
1271 // there but for now just ignore it
1272
1273 //wxFAIL_MSG( _T("can't understand where has mouse gone") );
1274
1275 return;
1276 }
1277 }
1278
1279 // only start the auto scroll timer if the window can be scrolled in
1280 // this direction
1281 if ( !m_targetWindow->HasScrollbar(orient) )
1282 return;
1283
4b316329 1284#if wxUSE_TIMER
1e6feb95
VZ
1285 delete m_timerAutoScroll;
1286 m_timerAutoScroll = new wxAutoScrollTimer
1287 (
1288 m_targetWindow, this,
1289 pos == 0 ? wxEVT_SCROLLWIN_LINEUP
1290 : wxEVT_SCROLLWIN_LINEDOWN,
1291 pos,
1292 orient
1293 );
1294 m_timerAutoScroll->Start(50); // FIXME: make configurable
534b127c
WS
1295#else
1296 wxUnusedVar(pos);
4b316329 1297#endif
1e6feb95
VZ
1298 }
1299}
1300
e421922f
VZ
1301#if wxUSE_MOUSEWHEEL
1302
1e6feb95
VZ
1303void wxScrollHelper::HandleOnMouseWheel(wxMouseEvent& event)
1304{
d2c52078 1305 m_wheelRotation += event.GetWheelRotation();
1e6feb95 1306 int lines = m_wheelRotation / event.GetWheelDelta();
d2c52078
RD
1307 m_wheelRotation -= lines * event.GetWheelDelta();
1308
1e6feb95
VZ
1309 if (lines != 0)
1310 {
1e6feb95 1311
b6b85bdc
JS
1312 wxScrollWinEvent newEvent;
1313
ac6f6ffc 1314 newEvent.SetPosition(0);
6682e732 1315 newEvent.SetOrientation( event.GetWheelAxis() == 0 ? wxVERTICAL : wxHORIZONTAL);
687706f5 1316 newEvent.SetEventObject(m_win);
b6b85bdc 1317
9b9337da 1318 if (event.IsPageScroll())
4b056ef5
RD
1319 {
1320 if (lines > 0)
687706f5 1321 newEvent.SetEventType(wxEVT_SCROLLWIN_PAGEUP);
4b056ef5 1322 else
687706f5 1323 newEvent.SetEventType(wxEVT_SCROLLWIN_PAGEDOWN);
4b056ef5 1324
b6b85bdc 1325 m_win->GetEventHandler()->ProcessEvent(newEvent);
4b056ef5
RD
1326 }
1327 else
1328 {
1329 lines *= event.GetLinesPerAction();
1330 if (lines > 0)
687706f5 1331 newEvent.SetEventType(wxEVT_SCROLLWIN_LINEUP);
4b056ef5 1332 else
687706f5 1333 newEvent.SetEventType(wxEVT_SCROLLWIN_LINEDOWN);
b6b85bdc 1334
4b056ef5
RD
1335 int times = abs(lines);
1336 for (; times > 0; times--)
1337 m_win->GetEventHandler()->ProcessEvent(newEvent);
1338 }
d2c52078
RD
1339 }
1340}
1341
e421922f
VZ
1342#endif // wxUSE_MOUSEWHEEL
1343
1e6feb95 1344// ----------------------------------------------------------------------------
d32e78bd 1345// wxScrolledWindow implementation
1e6feb95
VZ
1346// ----------------------------------------------------------------------------
1347
d32e78bd 1348IMPLEMENT_DYNAMIC_CLASS(wxScrolledWindow, wxPanel)
1e6feb95 1349
d32e78bd
VZ
1350BEGIN_EVENT_TABLE(wxScrolledWindow, wxPanel)
1351 EVT_PAINT(wxScrolledWindow::OnPaint)
349efbaa
VZ
1352END_EVENT_TABLE()
1353
d32e78bd 1354bool wxScrolledWindow::Create(wxWindow *parent,
1e6feb95
VZ
1355 wxWindowID id,
1356 const wxPoint& pos,
1357 const wxSize& size,
1358 long style,
1359 const wxString& name)
1360{
1361 m_targetWindow = this;
8adc196b
SC
1362#ifdef __WXMAC__
1363 MacSetClipChildren( true ) ;
1364#endif
1e6feb95 1365
75cbbafd
VZ
1366 // by default, we're scrollable in both directions (but if one of the
1367 // styles is specified explicitly, we shouldn't add the other one
1368 // automatically)
1369 if ( !(style & (wxHSCROLL | wxVSCROLL)) )
1370 style |= wxHSCROLL | wxVSCROLL;
1371
1372 bool ok = wxPanel::Create(parent, id, pos, size, style, name);
1e6feb95 1373
1e6feb95
VZ
1374 return ok;
1375}
1376
d32e78bd 1377wxScrolledWindow::~wxScrolledWindow()
1e6feb95
VZ
1378{
1379}
d2c52078 1380
d32e78bd 1381void wxScrolledWindow::OnPaint(wxPaintEvent& event)
349efbaa
VZ
1382{
1383 // the user code didn't really draw the window if we got here, so set this
1384 // flag to try to call OnDraw() later
1385 m_handler->ResetDrawnFlag();
1386
1387 event.Skip();
1388}
1389
0cf5b099 1390#ifdef __WXMSW__
d32e78bd 1391WXLRESULT wxScrolledWindow::MSWWindowProc(WXUINT nMsg,
0cf5b099
VZ
1392 WXWPARAM wParam,
1393 WXLPARAM lParam)
1394{
c140b7e7 1395 WXLRESULT rc = wxPanel::MSWWindowProc(nMsg, wParam, lParam);
0cf5b099 1396
4676948b 1397#ifndef __WXWINCE__
0cf5b099
VZ
1398 // we need to process arrows ourselves for scrolling
1399 if ( nMsg == WM_GETDLGCODE )
1400 {
1401 rc |= DLGC_WANTARROWS;
1402 }
4676948b 1403#endif
0cf5b099
VZ
1404
1405 return rc;
1406}
1407
1408#endif // __WXMSW__