1 /////////////////////////////////////////////////////////////////////////////
2 // Name: generic/scrolwin.cpp
3 // Purpose: wxGenericScrolledWindow 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.
9 // Copyright: (c) wxWindows team
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
13 // ============================================================================
15 // ============================================================================
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
22 #pragma implementation "genscrolwin.h"
26 #define XtDisplay XTDISPLAY
29 // For compilers that support precompilation, includes "wx.h".
30 #include "wx/wxprec.h"
36 #if !defined(__WXGTK__) || defined(__WXUNIVERSAL__)
39 #include "wx/dcclient.h"
41 #include "wx/scrolwin.h"
47 #include <windows.h> // for DLGC_WANTARROWS
51 // For wxRETAINED implementation
52 #ifdef __VMS__ //VMS's Xm.h is not (yet) compatible with C++
53 //This code switches off the compiler warnings
54 # pragma message disable nosimpint
58 # pragma message enable nosimpint
62 IMPLEMENT_CLASS(wxScrolledWindow
, wxGenericScrolledWindow
)
64 // ----------------------------------------------------------------------------
65 // wxScrollHelperEvtHandler: intercept the events from the window and forward
66 // them to wxScrollHelper
67 // ----------------------------------------------------------------------------
69 class WXDLLEXPORT wxScrollHelperEvtHandler
: public wxEvtHandler
72 wxScrollHelperEvtHandler(wxScrollHelper
*scrollHelper
)
74 m_scrollHelper
= scrollHelper
;
77 virtual bool ProcessEvent(wxEvent
& event
);
79 void ResetDrawnFlag() { m_hasDrawnWindow
= FALSE
; }
82 wxScrollHelper
*m_scrollHelper
;
84 bool m_hasDrawnWindow
;
87 // ----------------------------------------------------------------------------
88 // wxAutoScrollTimer: the timer used to generate a stream of scroll events when
89 // a captured mouse is held outside the window
90 // ----------------------------------------------------------------------------
92 class wxAutoScrollTimer
: public wxTimer
95 wxAutoScrollTimer(wxWindow
*winToScroll
, wxScrollHelper
*scroll
,
96 wxEventType eventTypeToSend
,
99 virtual void Notify();
103 wxScrollHelper
*m_scrollHelper
;
104 wxEventType m_eventType
;
109 // ============================================================================
111 // ============================================================================
113 // ----------------------------------------------------------------------------
115 // ----------------------------------------------------------------------------
117 wxAutoScrollTimer::wxAutoScrollTimer(wxWindow
*winToScroll
,
118 wxScrollHelper
*scroll
,
119 wxEventType eventTypeToSend
,
123 m_scrollHelper
= scroll
;
124 m_eventType
= eventTypeToSend
;
129 void wxAutoScrollTimer::Notify()
131 // only do all this as long as the window is capturing the mouse
132 if ( wxWindow::GetCapture() != m_win
)
136 else // we still capture the mouse, continue generating events
138 // first scroll the window if we are allowed to do it
139 wxScrollWinEvent
event1(m_eventType
, m_pos
, m_orient
);
140 event1
.SetEventObject(m_win
);
141 if ( m_scrollHelper
->SendAutoScrollEvents(event1
) &&
142 m_win
->GetEventHandler()->ProcessEvent(event1
) )
144 // and then send a pseudo mouse-move event to refresh the selection
145 wxMouseEvent
event2(wxEVT_MOTION
);
146 wxGetMousePosition(&event2
.m_x
, &event2
.m_y
);
148 // the mouse event coordinates should be client, not screen as
149 // returned by wxGetMousePosition
150 wxWindow
*parentTop
= m_win
;
151 while ( parentTop
->GetParent() )
152 parentTop
= parentTop
->GetParent();
153 wxPoint ptOrig
= parentTop
->GetPosition();
154 event2
.m_x
-= ptOrig
.x
;
155 event2
.m_y
-= ptOrig
.y
;
157 event2
.SetEventObject(m_win
);
159 // FIXME: we don't fill in the other members - ok?
161 m_win
->GetEventHandler()->ProcessEvent(event2
);
163 else // can't scroll further, stop
170 // ----------------------------------------------------------------------------
171 // wxScrollHelperEvtHandler
172 // ----------------------------------------------------------------------------
174 bool wxScrollHelperEvtHandler::ProcessEvent(wxEvent
& event
)
176 wxEventType evType
= event
.GetEventType();
178 // the explanation of wxEVT_PAINT processing hack: for historic reasons
179 // there are 2 ways to process this event in classes deriving from
180 // wxScrolledWindow. The user code may
182 // 1. override wxScrolledWindow::OnDraw(dc)
183 // 2. define its own OnPaint() handler
185 // In addition, in wxUniversal wxWindow defines OnPaint() itself and
186 // always processes the draw event, so we can't just try the window
187 // OnPaint() first and call our HandleOnPaint() if it doesn't process it
188 // (the latter would never be called in wxUniversal).
190 // So the solution is to have a flag telling us whether the user code drew
191 // anything in the window. We set it to true here but reset it to false in
192 // wxScrolledWindow::OnPaint() handler (which wouldn't be called if the
193 // user code defined OnPaint() in the derived class)
194 m_hasDrawnWindow
= TRUE
;
196 // pass it on to the real handler
197 bool processed
= wxEvtHandler::ProcessEvent(event
);
199 // always process the size events ourselves, even if the user code handles
200 // them as well, as we need to AdjustScrollbars()
202 // NB: it is important to do it after processing the event in the normal
203 // way as HandleOnSize() may generate a wxEVT_SIZE itself if the
204 // scrollbar[s] (dis)appear and it should be seen by the user code
206 if ( evType
== wxEVT_SIZE
)
208 m_scrollHelper
->HandleOnSize((wxSizeEvent
&)event
);
215 // normally, nothing more to do here - except if it was a paint event
216 // which wasn't really processed, then we'll try to call our
217 // OnDraw() below (from HandleOnPaint)
218 if ( m_hasDrawnWindow
)
224 // reset the skipped flag to FALSE as it might have been set to TRUE in
225 // ProcessEvent() above
228 if ( evType
== wxEVT_PAINT
)
230 m_scrollHelper
->HandleOnPaint((wxPaintEvent
&)event
);
234 if ( evType
== wxEVT_SCROLLWIN_TOP
||
235 evType
== wxEVT_SCROLLWIN_BOTTOM
||
236 evType
== wxEVT_SCROLLWIN_LINEUP
||
237 evType
== wxEVT_SCROLLWIN_LINEDOWN
||
238 evType
== wxEVT_SCROLLWIN_PAGEUP
||
239 evType
== wxEVT_SCROLLWIN_PAGEDOWN
||
240 evType
== wxEVT_SCROLLWIN_THUMBTRACK
||
241 evType
== wxEVT_SCROLLWIN_THUMBRELEASE
)
243 m_scrollHelper
->HandleOnScroll((wxScrollWinEvent
&)event
);
244 return !event
.GetSkipped();
247 if ( evType
== wxEVT_ENTER_WINDOW
)
249 m_scrollHelper
->HandleOnMouseEnter((wxMouseEvent
&)event
);
251 else if ( evType
== wxEVT_LEAVE_WINDOW
)
253 m_scrollHelper
->HandleOnMouseLeave((wxMouseEvent
&)event
);
256 else if ( evType
== wxEVT_MOUSEWHEEL
)
258 m_scrollHelper
->HandleOnMouseWheel((wxMouseEvent
&)event
);
260 #endif // wxUSE_MOUSEWHEEL
261 else if ( evType
== wxEVT_CHAR
)
263 m_scrollHelper
->HandleOnChar((wxKeyEvent
&)event
);
264 return !event
.GetSkipped();
270 // ----------------------------------------------------------------------------
271 // wxScrollHelper construction
272 // ----------------------------------------------------------------------------
274 wxScrollHelper::wxScrollHelper(wxWindow
*win
)
276 m_xScrollPixelsPerLine
=
277 m_yScrollPixelsPerLine
=
282 m_xScrollLinesPerPage
=
283 m_yScrollLinesPerPage
= 0;
285 m_xScrollingEnabled
=
286 m_yScrollingEnabled
= TRUE
;
295 m_targetWindow
= (wxWindow
*)NULL
;
297 m_timerAutoScroll
= (wxTimer
*)NULL
;
305 wxScrollHelper::~wxScrollHelper()
312 // ----------------------------------------------------------------------------
313 // setting scrolling parameters
314 // ----------------------------------------------------------------------------
316 void wxScrollHelper::SetScrollbars(int pixelsPerUnitX
,
326 CalcUnscrolledPosition(xPos
, yPos
, &xpos
, &ypos
);
329 (noUnitsX
!= 0 && m_xScrollLines
== 0) ||
330 (noUnitsX
< m_xScrollLines
&& xpos
> pixelsPerUnitX
* noUnitsX
) ||
332 (noUnitsY
!= 0 && m_yScrollLines
== 0) ||
333 (noUnitsY
< m_yScrollLines
&& ypos
> pixelsPerUnitY
* noUnitsY
) ||
334 (xPos
!= m_xScrollPosition
) ||
335 (yPos
!= m_yScrollPosition
)
338 m_xScrollPixelsPerLine
= pixelsPerUnitX
;
339 m_yScrollPixelsPerLine
= pixelsPerUnitY
;
340 m_xScrollPosition
= xPos
;
341 m_yScrollPosition
= yPos
;
343 // For better backward compatibility we set persisting limits
344 // here not just the size. It makes SetScrollbars 'sticky'
345 // emulating the old non-autoscroll behaviour.
347 m_targetWindow
->SetVirtualSizeHints( noUnitsX
* pixelsPerUnitX
, noUnitsY
* pixelsPerUnitY
);
349 // The above should arguably be deprecated, this however we still need.
351 m_targetWindow
->SetVirtualSize( noUnitsX
* pixelsPerUnitX
, noUnitsY
* pixelsPerUnitY
);
353 if (do_refresh
&& !noRefresh
)
354 m_targetWindow
->Refresh(TRUE
, GetRect());
356 // TODO: check if we can use AdjustScrollbars always.
357 #ifdef __WXUNIVERSAL__
360 // This is also done by AdjustScrollbars, above
362 m_targetWindow
->MacUpdateImmediately() ;
367 // ----------------------------------------------------------------------------
368 // [target] window handling
369 // ----------------------------------------------------------------------------
371 void wxScrollHelper::DeleteEvtHandler()
373 // search for m_handler in the handler list
374 if ( m_win
&& m_handler
)
376 if ( m_win
->RemoveEventHandler(m_handler
) )
380 //else: something is very wrong, so better [maybe] leak memory than
381 // risk a crash because of double deletion
387 void wxScrollHelper::SetWindow(wxWindow
*win
)
389 wxCHECK_RET( win
, _T("wxScrollHelper needs a window to scroll") );
393 // by default, the associated window is also the target window
394 DoSetTargetWindow(win
);
397 void wxScrollHelper::DoSetTargetWindow(wxWindow
*target
)
399 m_targetWindow
= target
;
401 // install the event handler which will intercept the events we're
402 // interested in (but only do it for our real window, not the target window
403 // which we scroll - we don't need to hijack its events)
404 if ( m_targetWindow
== m_win
)
406 // if we already have a handler, delete it first
409 m_handler
= new wxScrollHelperEvtHandler(this);
410 m_targetWindow
->PushEventHandler(m_handler
);
414 void wxScrollHelper::SetTargetWindow(wxWindow
*target
)
416 wxCHECK_RET( target
, wxT("target window must not be NULL") );
418 if ( target
== m_targetWindow
)
421 DoSetTargetWindow(target
);
424 wxWindow
*wxScrollHelper::GetTargetWindow() const
426 return m_targetWindow
;
429 // ----------------------------------------------------------------------------
430 // scrolling implementation itself
431 // ----------------------------------------------------------------------------
433 void wxScrollHelper::HandleOnScroll(wxScrollWinEvent
& event
)
435 int nScrollInc
= CalcScrollInc(event
);
436 if ( nScrollInc
== 0 )
438 // can't scroll further
444 int orient
= event
.GetOrientation();
445 if (orient
== wxHORIZONTAL
)
447 m_xScrollPosition
+= nScrollInc
;
448 m_win
->SetScrollPos(wxHORIZONTAL
, m_xScrollPosition
);
452 m_yScrollPosition
+= nScrollInc
;
453 m_win
->SetScrollPos(wxVERTICAL
, m_yScrollPosition
);
456 bool needsRefresh
= FALSE
;
459 if (orient
== wxHORIZONTAL
)
461 if ( m_xScrollingEnabled
)
463 dx
= -m_xScrollPixelsPerLine
* nScrollInc
;
472 if ( m_yScrollingEnabled
)
474 dy
= -m_yScrollPixelsPerLine
* nScrollInc
;
484 m_targetWindow
->Refresh(TRUE
, GetRect());
488 m_targetWindow
->ScrollWindow(dx
, dy
, GetRect());
492 m_targetWindow
->MacUpdateImmediately() ;
496 int wxScrollHelper::CalcScrollInc(wxScrollWinEvent
& event
)
498 int pos
= event
.GetPosition();
499 int orient
= event
.GetOrientation();
502 if (event
.GetEventType() == wxEVT_SCROLLWIN_TOP
)
504 if (orient
== wxHORIZONTAL
)
505 nScrollInc
= - m_xScrollPosition
;
507 nScrollInc
= - m_yScrollPosition
;
509 if (event
.GetEventType() == wxEVT_SCROLLWIN_BOTTOM
)
511 if (orient
== wxHORIZONTAL
)
512 nScrollInc
= m_xScrollLines
- m_xScrollPosition
;
514 nScrollInc
= m_yScrollLines
- m_yScrollPosition
;
516 if (event
.GetEventType() == wxEVT_SCROLLWIN_LINEUP
)
520 if (event
.GetEventType() == wxEVT_SCROLLWIN_LINEDOWN
)
524 if (event
.GetEventType() == wxEVT_SCROLLWIN_PAGEUP
)
526 if (orient
== wxHORIZONTAL
)
527 nScrollInc
= -GetScrollPageSize(wxHORIZONTAL
);
529 nScrollInc
= -GetScrollPageSize(wxVERTICAL
);
531 if (event
.GetEventType() == wxEVT_SCROLLWIN_PAGEDOWN
)
533 if (orient
== wxHORIZONTAL
)
534 nScrollInc
= GetScrollPageSize(wxHORIZONTAL
);
536 nScrollInc
= GetScrollPageSize(wxVERTICAL
);
538 if ((event
.GetEventType() == wxEVT_SCROLLWIN_THUMBTRACK
) ||
539 (event
.GetEventType() == wxEVT_SCROLLWIN_THUMBRELEASE
))
541 if (orient
== wxHORIZONTAL
)
542 nScrollInc
= pos
- m_xScrollPosition
;
544 nScrollInc
= pos
- m_yScrollPosition
;
547 if (orient
== wxHORIZONTAL
)
549 if (m_xScrollPixelsPerLine
> 0)
552 GetTargetSize(&w
, &h
);
554 int nMaxWidth
= m_xScrollLines
*m_xScrollPixelsPerLine
;
555 int noPositions
= (int) ( ((nMaxWidth
- w
)/(double)m_xScrollPixelsPerLine
) + 0.5 );
559 if ( (m_xScrollPosition
+ nScrollInc
) < 0 )
560 nScrollInc
= -m_xScrollPosition
; // As -ve as we can go
561 else if ( (m_xScrollPosition
+ nScrollInc
) > noPositions
)
562 nScrollInc
= noPositions
- m_xScrollPosition
; // As +ve as we can go
565 m_targetWindow
->Refresh(TRUE
, GetRect());
569 if (m_yScrollPixelsPerLine
> 0)
572 GetTargetSize(&w
, &h
);
574 int nMaxHeight
= m_yScrollLines
*m_yScrollPixelsPerLine
;
575 int noPositions
= (int) ( ((nMaxHeight
- h
)/(double)m_yScrollPixelsPerLine
) + 0.5 );
579 if ( (m_yScrollPosition
+ nScrollInc
) < 0 )
580 nScrollInc
= -m_yScrollPosition
; // As -ve as we can go
581 else if ( (m_yScrollPosition
+ nScrollInc
) > noPositions
)
582 nScrollInc
= noPositions
- m_yScrollPosition
; // As +ve as we can go
585 m_targetWindow
->Refresh(TRUE
, GetRect());
591 // Adjust the scrollbars - new version.
592 void wxScrollHelper::AdjustScrollbars()
595 m_targetWindow
->MacUpdateImmediately();
601 int oldXScroll
= m_xScrollPosition
;
602 int oldYScroll
= m_yScrollPosition
;
605 GetTargetSize(&w
, 0);
607 if (m_xScrollPixelsPerLine
== 0)
610 m_xScrollPosition
= 0;
611 m_win
->SetScrollbar (wxHORIZONTAL
, 0, 0, 0, FALSE
);
615 m_xScrollLines
= m_targetWindow
->GetVirtualSize().GetWidth() / m_xScrollPixelsPerLine
;
617 // Calculate page size i.e. number of scroll units you get on the
618 // current client window
619 int noPagePositions
= (int) ( (w
/(double)m_xScrollPixelsPerLine
) + 0.5 );
620 if (noPagePositions
< 1) noPagePositions
= 1;
621 if ( noPagePositions
> m_xScrollLines
)
622 noPagePositions
= m_xScrollLines
;
624 // Correct position if greater than extent of canvas minus
625 // the visible portion of it or if below zero
626 m_xScrollPosition
= wxMin( m_xScrollLines
- noPagePositions
, m_xScrollPosition
);
627 m_xScrollPosition
= wxMax( 0, m_xScrollPosition
);
629 m_win
->SetScrollbar(wxHORIZONTAL
, m_xScrollPosition
, noPagePositions
, m_xScrollLines
);
630 // The amount by which we scroll when paging
631 SetScrollPageSize(wxHORIZONTAL
, noPagePositions
);
634 GetTargetSize(0, &h
);
636 if (m_yScrollPixelsPerLine
== 0)
639 m_yScrollPosition
= 0;
640 m_win
->SetScrollbar (wxVERTICAL
, 0, 0, 0, FALSE
);
644 m_yScrollLines
= m_targetWindow
->GetVirtualSize().GetHeight() / m_yScrollPixelsPerLine
;
646 // Calculate page size i.e. number of scroll units you get on the
647 // current client window
648 int noPagePositions
= (int) ( (h
/(double)m_yScrollPixelsPerLine
) + 0.5 );
649 if (noPagePositions
< 1) noPagePositions
= 1;
650 if ( noPagePositions
> m_yScrollLines
)
651 noPagePositions
= m_yScrollLines
;
653 // Correct position if greater than extent of canvas minus
654 // the visible portion of it or if below zero
655 m_yScrollPosition
= wxMin( m_yScrollLines
- noPagePositions
, m_yScrollPosition
);
656 m_yScrollPosition
= wxMax( 0, m_yScrollPosition
);
658 m_win
->SetScrollbar(wxVERTICAL
, m_yScrollPosition
, noPagePositions
, m_yScrollLines
);
659 // The amount by which we scroll when paging
660 SetScrollPageSize(wxVERTICAL
, noPagePositions
);
663 // If a scrollbar (dis)appeared as a result of this, adjust them again.
668 GetTargetSize( &w
, &h
);
669 } while ( w
!= oldw
&& h
!= oldh
);
672 // Sorry, some Motif-specific code to implement a backing pixmap
673 // for the wxRETAINED style. Implementing a backing store can't
674 // be entirely generic because it relies on the wxWindowDC implementation
675 // to duplicate X drawing calls for the backing pixmap.
677 if ( m_targetWindow
->GetWindowStyle() & wxRETAINED
)
679 Display
* dpy
= XtDisplay((Widget
)m_targetWindow
->GetMainWidget());
681 int totalPixelWidth
= m_xScrollLines
* m_xScrollPixelsPerLine
;
682 int totalPixelHeight
= m_yScrollLines
* m_yScrollPixelsPerLine
;
683 if (m_targetWindow
->GetBackingPixmap() &&
684 !((m_targetWindow
->GetPixmapWidth() == totalPixelWidth
) &&
685 (m_targetWindow
->GetPixmapHeight() == totalPixelHeight
)))
687 XFreePixmap (dpy
, (Pixmap
) m_targetWindow
->GetBackingPixmap());
688 m_targetWindow
->SetBackingPixmap((WXPixmap
) 0);
691 if (!m_targetWindow
->GetBackingPixmap() &&
692 (m_xScrollLines
!= 0) && (m_yScrollLines
!= 0))
694 int depth
= wxDisplayDepth();
695 m_targetWindow
->SetPixmapWidth(totalPixelWidth
);
696 m_targetWindow
->SetPixmapHeight(totalPixelHeight
);
697 m_targetWindow
->SetBackingPixmap((WXPixmap
) XCreatePixmap (dpy
, RootWindow (dpy
, DefaultScreen (dpy
)),
698 m_targetWindow
->GetPixmapWidth(), m_targetWindow
->GetPixmapHeight(), depth
));
704 if (oldXScroll
!= m_xScrollPosition
)
706 if (m_xScrollingEnabled
)
707 m_targetWindow
->ScrollWindow( m_xScrollPixelsPerLine
* (oldXScroll
- m_xScrollPosition
), 0,
710 m_targetWindow
->Refresh(TRUE
, GetRect());
713 if (oldYScroll
!= m_yScrollPosition
)
715 if (m_yScrollingEnabled
)
716 m_targetWindow
->ScrollWindow( 0, m_yScrollPixelsPerLine
* (oldYScroll
-m_yScrollPosition
),
719 m_targetWindow
->Refresh(TRUE
, GetRect());
723 m_targetWindow
->MacUpdateImmediately();
727 void wxScrollHelper::DoPrepareDC(wxDC
& dc
)
729 wxPoint pt
= dc
.GetDeviceOrigin();
730 dc
.SetDeviceOrigin( pt
.x
- m_xScrollPosition
* m_xScrollPixelsPerLine
,
731 pt
.y
- m_yScrollPosition
* m_yScrollPixelsPerLine
);
732 dc
.SetUserScale( m_scaleX
, m_scaleY
);
735 void wxScrollHelper::SetScrollRate( int xstep
, int ystep
)
737 int old_x
= m_xScrollPixelsPerLine
* m_xScrollPosition
;
738 int old_y
= m_yScrollPixelsPerLine
* m_yScrollPosition
;
740 m_xScrollPixelsPerLine
= xstep
;
741 m_yScrollPixelsPerLine
= ystep
;
743 int new_x
= m_xScrollPixelsPerLine
* m_xScrollPosition
;
744 int new_y
= m_yScrollPixelsPerLine
* m_yScrollPosition
;
746 m_win
->SetScrollPos( wxHORIZONTAL
, m_xScrollPosition
);
747 m_win
->SetScrollPos( wxVERTICAL
, m_yScrollPosition
);
748 m_targetWindow
->ScrollWindow( old_x
- new_x
, old_y
- new_y
);
753 void wxScrollHelper::GetScrollPixelsPerUnit (int *x_unit
, int *y_unit
) const
756 *x_unit
= m_xScrollPixelsPerLine
;
758 *y_unit
= m_yScrollPixelsPerLine
;
761 int wxScrollHelper::GetScrollPageSize(int orient
) const
763 if ( orient
== wxHORIZONTAL
)
764 return m_xScrollLinesPerPage
;
766 return m_yScrollLinesPerPage
;
769 void wxScrollHelper::SetScrollPageSize(int orient
, int pageSize
)
771 if ( orient
== wxHORIZONTAL
)
772 m_xScrollLinesPerPage
= pageSize
;
774 m_yScrollLinesPerPage
= pageSize
;
778 * Scroll to given position (scroll position, not pixel position)
780 void wxScrollHelper::Scroll( int x_pos
, int y_pos
)
785 if (((x_pos
== -1) || (x_pos
== m_xScrollPosition
)) &&
786 ((y_pos
== -1) || (y_pos
== m_yScrollPosition
))) return;
789 m_targetWindow
->MacUpdateImmediately();
793 GetTargetSize(&w
, &h
);
795 if ((x_pos
!= -1) && (m_xScrollPixelsPerLine
))
797 int old_x
= m_xScrollPosition
;
798 m_xScrollPosition
= x_pos
;
800 // Calculate page size i.e. number of scroll units you get on the
801 // current client window
802 int noPagePositions
= (int) ( (w
/(double)m_xScrollPixelsPerLine
) + 0.5 );
803 if (noPagePositions
< 1) noPagePositions
= 1;
805 // Correct position if greater than extent of canvas minus
806 // the visible portion of it or if below zero
807 m_xScrollPosition
= wxMin( m_xScrollLines
-noPagePositions
, m_xScrollPosition
);
808 m_xScrollPosition
= wxMax( 0, m_xScrollPosition
);
810 if (old_x
!= m_xScrollPosition
) {
811 m_win
->SetScrollPos( wxHORIZONTAL
, m_xScrollPosition
);
812 m_targetWindow
->ScrollWindow( (old_x
-m_xScrollPosition
)*m_xScrollPixelsPerLine
, 0,
816 if ((y_pos
!= -1) && (m_yScrollPixelsPerLine
))
818 int old_y
= m_yScrollPosition
;
819 m_yScrollPosition
= y_pos
;
821 // Calculate page size i.e. number of scroll units you get on the
822 // current client window
823 int noPagePositions
= (int) ( (h
/(double)m_yScrollPixelsPerLine
) + 0.5 );
824 if (noPagePositions
< 1) noPagePositions
= 1;
826 // Correct position if greater than extent of canvas minus
827 // the visible portion of it or if below zero
828 m_yScrollPosition
= wxMin( m_yScrollLines
-noPagePositions
, m_yScrollPosition
);
829 m_yScrollPosition
= wxMax( 0, m_yScrollPosition
);
831 if (old_y
!= m_yScrollPosition
) {
832 m_win
->SetScrollPos( wxVERTICAL
, m_yScrollPosition
);
833 m_targetWindow
->ScrollWindow( 0, (old_y
-m_yScrollPosition
)*m_yScrollPixelsPerLine
,
839 m_targetWindow
->MacUpdateImmediately();
844 void wxScrollHelper::EnableScrolling (bool x_scroll
, bool y_scroll
)
846 m_xScrollingEnabled
= x_scroll
;
847 m_yScrollingEnabled
= y_scroll
;
850 // Where the current view starts from
851 void wxScrollHelper::GetViewStart (int *x
, int *y
) const
854 *x
= m_xScrollPosition
;
856 *y
= m_yScrollPosition
;
859 void wxScrollHelper::DoCalcScrolledPosition(int x
, int y
, int *xx
, int *yy
) const
862 *xx
= x
- m_xScrollPosition
* m_xScrollPixelsPerLine
;
864 *yy
= y
- m_yScrollPosition
* m_yScrollPixelsPerLine
;
867 void wxScrollHelper::DoCalcUnscrolledPosition(int x
, int y
, int *xx
, int *yy
) const
870 *xx
= x
+ m_xScrollPosition
* m_xScrollPixelsPerLine
;
872 *yy
= y
+ m_yScrollPosition
* m_yScrollPixelsPerLine
;
875 // ----------------------------------------------------------------------------
877 // ----------------------------------------------------------------------------
879 // Default OnSize resets scrollbars, if any
880 void wxScrollHelper::HandleOnSize(wxSizeEvent
& WXUNUSED(event
))
882 if( m_win
->GetAutoLayout() )
884 if ( m_targetWindow
!= m_win
)
885 m_targetWindow
->FitInside();
889 #if wxUSE_CONSTRAINTS
897 // This calls OnDraw, having adjusted the origin according to the current
899 void wxScrollHelper::HandleOnPaint(wxPaintEvent
& WXUNUSED(event
))
901 // don't use m_targetWindow here, this is always called for ourselves
908 // kbd handling: notice that we use OnChar() and not OnKeyDown() for
909 // compatibility here - if we used OnKeyDown(), the programs which process
910 // arrows themselves in their OnChar() would never get the message and like
911 // this they always have the priority
912 void wxScrollHelper::HandleOnChar(wxKeyEvent
& event
)
914 int stx
, sty
, // view origin
915 szx
, szy
, // view size (total)
916 clix
, cliy
; // view size (on screen)
918 GetViewStart(&stx
, &sty
);
919 GetTargetSize(&clix
, &cliy
);
920 m_targetWindow
->GetVirtualSize(&szx
, &szy
);
922 if( m_xScrollPixelsPerLine
)
924 clix
/= m_xScrollPixelsPerLine
;
925 szx
/= m_xScrollPixelsPerLine
;
932 if( m_yScrollPixelsPerLine
)
934 cliy
/= m_yScrollPixelsPerLine
;
935 szy
/= m_yScrollPixelsPerLine
;
943 int xScrollOld
= m_xScrollPosition
,
944 yScrollOld
= m_yScrollPosition
;
947 switch ( event
.KeyCode() )
951 dsty
= sty
- (5 * cliy
/ 6);
952 Scroll(-1, (dsty
== -1) ? 0 : dsty
);
957 Scroll(-1, sty
+ (5 * cliy
/ 6));
961 Scroll(0, event
.ControlDown() ? 0 : -1);
965 Scroll(szx
- clix
, event
.ControlDown() ? szy
- cliy
: -1);
989 if ( m_xScrollPosition
!= xScrollOld
)
991 wxScrollWinEvent
event(wxEVT_SCROLLWIN_THUMBTRACK
, m_xScrollPosition
,
993 event
.SetEventObject(m_win
);
994 m_win
->GetEventHandler()->ProcessEvent(event
);
997 if ( m_yScrollPosition
!= yScrollOld
)
999 wxScrollWinEvent
event(wxEVT_SCROLLWIN_THUMBTRACK
, m_yScrollPosition
,
1001 event
.SetEventObject(m_win
);
1002 m_win
->GetEventHandler()->ProcessEvent(event
);
1006 // ----------------------------------------------------------------------------
1007 // autoscroll stuff: these functions deal with sending fake scroll events when
1008 // a captured mouse is being held outside the window
1009 // ----------------------------------------------------------------------------
1011 bool wxScrollHelper::SendAutoScrollEvents(wxScrollWinEvent
& event
) const
1013 // only send the event if the window is scrollable in this direction
1014 wxWindow
*win
= (wxWindow
*)event
.GetEventObject();
1015 return win
->HasScrollbar(event
.GetOrientation());
1018 void wxScrollHelper::StopAutoScrolling()
1020 if ( m_timerAutoScroll
)
1022 delete m_timerAutoScroll
;
1023 m_timerAutoScroll
= (wxTimer
*)NULL
;
1027 void wxScrollHelper::HandleOnMouseEnter(wxMouseEvent
& event
)
1029 StopAutoScrolling();
1034 void wxScrollHelper::HandleOnMouseLeave(wxMouseEvent
& event
)
1036 // don't prevent the usual processing of the event from taking place
1039 // when a captured mouse leave a scrolled window we start generate
1040 // scrolling events to allow, for example, extending selection beyond the
1041 // visible area in some controls
1042 if ( wxWindow::GetCapture() == m_targetWindow
)
1044 // where is the mouse leaving?
1046 wxPoint pt
= event
.GetPosition();
1049 orient
= wxHORIZONTAL
;
1052 else if ( pt
.y
< 0 )
1054 orient
= wxVERTICAL
;
1057 else // we're lower or to the right of the window
1059 wxSize size
= m_targetWindow
->GetClientSize();
1060 if ( pt
.x
> size
.x
)
1062 orient
= wxHORIZONTAL
;
1063 pos
= m_xScrollLines
;
1065 else if ( pt
.y
> size
.y
)
1067 orient
= wxVERTICAL
;
1068 pos
= m_yScrollLines
;
1070 else // this should be impossible
1072 // but seems to happen sometimes under wxMSW - maybe it's a bug
1073 // there but for now just ignore it
1075 //wxFAIL_MSG( _T("can't understand where has mouse gone") );
1081 // only start the auto scroll timer if the window can be scrolled in
1083 if ( !m_targetWindow
->HasScrollbar(orient
) )
1086 delete m_timerAutoScroll
;
1087 m_timerAutoScroll
= new wxAutoScrollTimer
1089 m_targetWindow
, this,
1090 pos
== 0 ? wxEVT_SCROLLWIN_LINEUP
1091 : wxEVT_SCROLLWIN_LINEDOWN
,
1095 m_timerAutoScroll
->Start(50); // FIXME: make configurable
1099 #if wxUSE_MOUSEWHEEL
1101 void wxScrollHelper::HandleOnMouseWheel(wxMouseEvent
& event
)
1103 m_wheelRotation
+= event
.GetWheelRotation();
1104 int lines
= m_wheelRotation
/ event
.GetWheelDelta();
1105 m_wheelRotation
-= lines
* event
.GetWheelDelta();
1110 wxScrollWinEvent newEvent
;
1112 newEvent
.SetPosition(0);
1113 newEvent
.SetOrientation(wxVERTICAL
);
1114 newEvent
.m_eventObject
= m_win
;
1116 if (event
.IsPageScroll())
1119 newEvent
.m_eventType
= wxEVT_SCROLLWIN_PAGEUP
;
1121 newEvent
.m_eventType
= wxEVT_SCROLLWIN_PAGEDOWN
;
1123 m_win
->GetEventHandler()->ProcessEvent(newEvent
);
1127 lines
*= event
.GetLinesPerAction();
1129 newEvent
.m_eventType
= wxEVT_SCROLLWIN_LINEUP
;
1131 newEvent
.m_eventType
= wxEVT_SCROLLWIN_LINEDOWN
;
1133 int times
= abs(lines
);
1134 for (; times
> 0; times
--)
1135 m_win
->GetEventHandler()->ProcessEvent(newEvent
);
1140 #endif // wxUSE_MOUSEWHEEL
1142 // ----------------------------------------------------------------------------
1143 // wxGenericScrolledWindow implementation
1144 // ----------------------------------------------------------------------------
1146 IMPLEMENT_DYNAMIC_CLASS(wxGenericScrolledWindow
, wxPanel
)
1148 BEGIN_EVENT_TABLE(wxGenericScrolledWindow
, wxPanel
)
1149 EVT_PAINT(wxGenericScrolledWindow::OnPaint
)
1152 bool wxGenericScrolledWindow::Create(wxWindow
*parent
,
1157 const wxString
& name
)
1159 m_targetWindow
= this;
1161 bool ok
= wxPanel::Create(parent
, id
, pos
, size
, style
, name
);
1166 wxGenericScrolledWindow::~wxGenericScrolledWindow()
1170 bool wxGenericScrolledWindow::Layout()
1172 if (GetSizer() && m_targetWindow
== this)
1174 // If we're the scroll target, take into account the
1175 // virtual size and scrolled position of the window.
1178 CalcScrolledPosition(0,0, &x
,&y
);
1179 GetVirtualSize(&w
, &h
);
1180 GetSizer()->SetDimension(x
, y
, w
, h
);
1184 // fall back to default for LayoutConstraints
1185 return wxPanel::Layout();
1188 void wxGenericScrolledWindow::DoSetVirtualSize(int x
, int y
)
1190 wxPanel::DoSetVirtualSize( x
, y
);
1193 #if wxUSE_CONSTRAINTS
1194 if (GetAutoLayout())
1199 void wxGenericScrolledWindow::OnPaint(wxPaintEvent
& event
)
1201 // the user code didn't really draw the window if we got here, so set this
1202 // flag to try to call OnDraw() later
1203 m_handler
->ResetDrawnFlag();
1210 wxGenericScrolledWindow::MSWWindowProc(WXUINT nMsg
,
1214 long rc
= wxPanel::MSWWindowProc(nMsg
, wParam
, lParam
);
1216 // we need to process arrows ourselves for scrolling
1217 if ( nMsg
== WM_GETDLGCODE
)
1219 rc
|= DLGC_WANTARROWS
;
1227 #if WXWIN_COMPATIBILITY
1229 void wxGenericScrolledWindow::GetScrollUnitsPerPage (int *x_page
, int *y_page
) const
1231 *x_page
= GetScrollPageSize(wxHORIZONTAL
);
1232 *y_page
= GetScrollPageSize(wxVERTICAL
);
1235 void wxGenericScrolledWindow::CalcUnscrolledPosition(int x
, int y
, float *xx
, float *yy
) const
1238 *xx
= (float)(x
+ m_xScrollPosition
* m_xScrollPixelsPerLine
);
1240 *yy
= (float)(y
+ m_yScrollPosition
* m_yScrollPixelsPerLine
);
1243 #endif // WXWIN_COMPATIBILITY