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