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 licence
11 /////////////////////////////////////////////////////////////////////////////
13 // ============================================================================
15 // ============================================================================
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
21 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
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 "wx/recguard.h"
50 #include <windows.h> // for DLGC_WANTARROWS
54 // For wxRETAINED implementation
55 #ifdef __VMS__ //VMS's Xm.h is not (yet) compatible with C++
56 //This code switches off the compiler warnings
57 # pragma message disable nosimpint
61 # pragma message enable nosimpint
65 IMPLEMENT_CLASS(wxScrolledWindow
, wxGenericScrolledWindow
)
69 style wxHSCROLL | wxVSCROLL
72 // ----------------------------------------------------------------------------
73 // wxScrollHelperEvtHandler: intercept the events from the window and forward
74 // them to wxScrollHelper
75 // ----------------------------------------------------------------------------
77 class WXDLLEXPORT wxScrollHelperEvtHandler
: public wxEvtHandler
80 wxScrollHelperEvtHandler(wxScrollHelper
*scrollHelper
)
82 m_scrollHelper
= scrollHelper
;
85 virtual bool ProcessEvent(wxEvent
& event
);
87 void ResetDrawnFlag() { m_hasDrawnWindow
= FALSE
; }
90 wxScrollHelper
*m_scrollHelper
;
92 bool m_hasDrawnWindow
;
94 DECLARE_NO_COPY_CLASS(wxScrollHelperEvtHandler
)
98 // ----------------------------------------------------------------------------
99 // wxAutoScrollTimer: the timer used to generate a stream of scroll events when
100 // a captured mouse is held outside the window
101 // ----------------------------------------------------------------------------
103 class wxAutoScrollTimer
: public wxTimer
106 wxAutoScrollTimer(wxWindow
*winToScroll
, wxScrollHelper
*scroll
,
107 wxEventType eventTypeToSend
,
108 int pos
, int orient
);
110 virtual void Notify();
114 wxScrollHelper
*m_scrollHelper
;
115 wxEventType m_eventType
;
119 DECLARE_NO_COPY_CLASS(wxAutoScrollTimer
)
122 // ============================================================================
124 // ============================================================================
126 // ----------------------------------------------------------------------------
128 // ----------------------------------------------------------------------------
130 wxAutoScrollTimer::wxAutoScrollTimer(wxWindow
*winToScroll
,
131 wxScrollHelper
*scroll
,
132 wxEventType eventTypeToSend
,
136 m_scrollHelper
= scroll
;
137 m_eventType
= eventTypeToSend
;
142 void wxAutoScrollTimer::Notify()
144 // only do all this as long as the window is capturing the mouse
145 if ( wxWindow::GetCapture() != m_win
)
149 else // we still capture the mouse, continue generating events
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
) )
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
);
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
;
170 event2
.SetEventObject(m_win
);
172 // FIXME: we don't fill in the other members - ok?
174 m_win
->GetEventHandler()->ProcessEvent(event2
);
176 else // can't scroll further, stop
184 // ----------------------------------------------------------------------------
185 // wxScrollHelperEvtHandler
186 // ----------------------------------------------------------------------------
188 bool wxScrollHelperEvtHandler::ProcessEvent(wxEvent
& event
)
190 wxEventType evType
= event
.GetEventType();
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
196 // 1. override wxScrolledWindow::OnDraw(dc)
197 // 2. define its own OnPaint() handler
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).
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)
208 m_hasDrawnWindow
= TRUE
;
210 // pass it on to the real handler
211 bool processed
= wxEvtHandler::ProcessEvent(event
);
213 // always process the size events ourselves, even if the user code handles
214 // them as well, as we need to AdjustScrollbars()
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
220 if ( evType
== wxEVT_SIZE
)
222 m_scrollHelper
->HandleOnSize((wxSizeEvent
&)event
);
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)
232 if ( m_hasDrawnWindow
)
238 // reset the skipped flag to FALSE as it might have been set to TRUE in
239 // ProcessEvent() above
242 if ( evType
== wxEVT_PAINT
)
244 m_scrollHelper
->HandleOnPaint((wxPaintEvent
&)event
);
248 if ( evType
== wxEVT_SCROLLWIN_TOP
||
249 evType
== wxEVT_SCROLLWIN_BOTTOM
||
250 evType
== wxEVT_SCROLLWIN_LINEUP
||
251 evType
== wxEVT_SCROLLWIN_LINEDOWN
||
252 evType
== wxEVT_SCROLLWIN_PAGEUP
||
253 evType
== wxEVT_SCROLLWIN_PAGEDOWN
||
254 evType
== wxEVT_SCROLLWIN_THUMBTRACK
||
255 evType
== wxEVT_SCROLLWIN_THUMBRELEASE
)
257 m_scrollHelper
->HandleOnScroll((wxScrollWinEvent
&)event
);
258 return !event
.GetSkipped();
261 if ( evType
== wxEVT_ENTER_WINDOW
)
263 m_scrollHelper
->HandleOnMouseEnter((wxMouseEvent
&)event
);
265 else if ( evType
== wxEVT_LEAVE_WINDOW
)
267 m_scrollHelper
->HandleOnMouseLeave((wxMouseEvent
&)event
);
270 else if ( evType
== wxEVT_MOUSEWHEEL
)
272 m_scrollHelper
->HandleOnMouseWheel((wxMouseEvent
&)event
);
274 #endif // wxUSE_MOUSEWHEEL
275 else if ( evType
== wxEVT_CHAR
)
277 m_scrollHelper
->HandleOnChar((wxKeyEvent
&)event
);
278 return !event
.GetSkipped();
284 // ----------------------------------------------------------------------------
285 // wxScrollHelper construction
286 // ----------------------------------------------------------------------------
288 wxScrollHelper::wxScrollHelper(wxWindow
*win
)
290 m_xScrollPixelsPerLine
=
291 m_yScrollPixelsPerLine
=
296 m_xScrollLinesPerPage
=
297 m_yScrollLinesPerPage
= 0;
299 m_xScrollingEnabled
=
300 m_yScrollingEnabled
= TRUE
;
309 m_targetWindow
= (wxWindow
*)NULL
;
311 m_timerAutoScroll
= (wxTimer
*)NULL
;
319 wxScrollHelper::~wxScrollHelper()
326 // ----------------------------------------------------------------------------
327 // setting scrolling parameters
328 // ----------------------------------------------------------------------------
330 void wxScrollHelper::SetScrollbars(int pixelsPerUnitX
,
340 CalcUnscrolledPosition(xPos
, yPos
, &xpos
, &ypos
);
343 (noUnitsX
!= 0 && m_xScrollLines
== 0) ||
344 (noUnitsX
< m_xScrollLines
&& xpos
> pixelsPerUnitX
* noUnitsX
) ||
346 (noUnitsY
!= 0 && m_yScrollLines
== 0) ||
347 (noUnitsY
< m_yScrollLines
&& ypos
> pixelsPerUnitY
* noUnitsY
) ||
348 (xPos
!= m_xScrollPosition
) ||
349 (yPos
!= m_yScrollPosition
)
352 m_xScrollPixelsPerLine
= pixelsPerUnitX
;
353 m_yScrollPixelsPerLine
= pixelsPerUnitY
;
354 m_xScrollPosition
= xPos
;
355 m_yScrollPosition
= yPos
;
357 int w
= noUnitsX
* pixelsPerUnitX
;
358 int h
= noUnitsY
* pixelsPerUnitY
;
360 // For better backward compatibility we set persisting limits
361 // here not just the size. It makes SetScrollbars 'sticky'
362 // emulating the old non-autoscroll behaviour.
364 m_targetWindow
->SetVirtualSizeHints( w
, h
);
366 // The above should arguably be deprecated, this however we still need.
368 m_targetWindow
->SetVirtualSize( w
, h
);
370 if (do_refresh
&& !noRefresh
)
371 m_targetWindow
->Refresh(TRUE
, GetScrollRect());
373 #ifndef __WXUNIVERSAL__
374 // If the target is not the same as the window with the scrollbars,
375 // then we need to update the scrollbars here, since they won't have
376 // been updated by SetVirtualSize().
377 if ( m_targetWindow
!= m_win
)
378 #endif // !__WXUNIVERSAL__
382 #ifndef __WXUNIVERSAL__
385 // otherwise this has been done by AdjustScrollbars, above
387 m_targetWindow
->Update() ;
390 #endif // !__WXUNIVERSAL__
393 // ----------------------------------------------------------------------------
394 // [target] window handling
395 // ----------------------------------------------------------------------------
397 void wxScrollHelper::DeleteEvtHandler()
399 // search for m_handler in the handler list
400 if ( m_win
&& m_handler
)
402 if ( m_win
->RemoveEventHandler(m_handler
) )
406 //else: something is very wrong, so better [maybe] leak memory than
407 // risk a crash because of double deletion
413 void wxScrollHelper::SetWindow(wxWindow
*win
)
415 wxCHECK_RET( win
, _T("wxScrollHelper needs a window to scroll") );
419 // by default, the associated window is also the target window
420 DoSetTargetWindow(win
);
423 void wxScrollHelper::DoSetTargetWindow(wxWindow
*target
)
425 m_targetWindow
= target
;
427 // install the event handler which will intercept the events we're
428 // interested in (but only do it for our real window, not the target window
429 // which we scroll - we don't need to hijack its events)
430 if ( m_targetWindow
== m_win
)
432 // if we already have a handler, delete it first
435 m_handler
= new wxScrollHelperEvtHandler(this);
436 m_targetWindow
->PushEventHandler(m_handler
);
440 void wxScrollHelper::SetTargetWindow(wxWindow
*target
)
442 wxCHECK_RET( target
, wxT("target window must not be NULL") );
444 if ( target
== m_targetWindow
)
447 DoSetTargetWindow(target
);
450 wxWindow
*wxScrollHelper::GetTargetWindow() const
452 return m_targetWindow
;
455 // ----------------------------------------------------------------------------
456 // scrolling implementation itself
457 // ----------------------------------------------------------------------------
459 void wxScrollHelper::HandleOnScroll(wxScrollWinEvent
& event
)
461 int nScrollInc
= CalcScrollInc(event
);
462 if ( nScrollInc
== 0 )
464 // can't scroll further
470 int orient
= event
.GetOrientation();
471 if (orient
== wxHORIZONTAL
)
473 m_xScrollPosition
+= nScrollInc
;
474 m_win
->SetScrollPos(wxHORIZONTAL
, m_xScrollPosition
);
478 m_yScrollPosition
+= nScrollInc
;
479 m_win
->SetScrollPos(wxVERTICAL
, m_yScrollPosition
);
482 bool needsRefresh
= FALSE
;
485 if (orient
== wxHORIZONTAL
)
487 if ( m_xScrollingEnabled
)
489 dx
= -m_xScrollPixelsPerLine
* nScrollInc
;
498 if ( m_yScrollingEnabled
)
500 dy
= -m_yScrollPixelsPerLine
* nScrollInc
;
510 m_targetWindow
->Refresh(TRUE
, GetScrollRect());
514 m_targetWindow
->ScrollWindow(dx
, dy
, GetScrollRect());
518 m_targetWindow
->Update() ;
522 int wxScrollHelper::CalcScrollInc(wxScrollWinEvent
& event
)
524 int pos
= event
.GetPosition();
525 int orient
= event
.GetOrientation();
528 if (event
.GetEventType() == wxEVT_SCROLLWIN_TOP
)
530 if (orient
== wxHORIZONTAL
)
531 nScrollInc
= - m_xScrollPosition
;
533 nScrollInc
= - m_yScrollPosition
;
535 if (event
.GetEventType() == wxEVT_SCROLLWIN_BOTTOM
)
537 if (orient
== wxHORIZONTAL
)
538 nScrollInc
= m_xScrollLines
- m_xScrollPosition
;
540 nScrollInc
= m_yScrollLines
- m_yScrollPosition
;
542 if (event
.GetEventType() == wxEVT_SCROLLWIN_LINEUP
)
546 if (event
.GetEventType() == wxEVT_SCROLLWIN_LINEDOWN
)
550 if (event
.GetEventType() == wxEVT_SCROLLWIN_PAGEUP
)
552 if (orient
== wxHORIZONTAL
)
553 nScrollInc
= -GetScrollPageSize(wxHORIZONTAL
);
555 nScrollInc
= -GetScrollPageSize(wxVERTICAL
);
557 if (event
.GetEventType() == wxEVT_SCROLLWIN_PAGEDOWN
)
559 if (orient
== wxHORIZONTAL
)
560 nScrollInc
= GetScrollPageSize(wxHORIZONTAL
);
562 nScrollInc
= GetScrollPageSize(wxVERTICAL
);
564 if ((event
.GetEventType() == wxEVT_SCROLLWIN_THUMBTRACK
) ||
565 (event
.GetEventType() == wxEVT_SCROLLWIN_THUMBRELEASE
))
567 if (orient
== wxHORIZONTAL
)
568 nScrollInc
= pos
- m_xScrollPosition
;
570 nScrollInc
= pos
- m_yScrollPosition
;
573 if (orient
== wxHORIZONTAL
)
575 if (m_xScrollPixelsPerLine
> 0)
578 GetTargetSize(&w
, &h
);
580 int nMaxWidth
= m_xScrollLines
*m_xScrollPixelsPerLine
;
581 int noPositions
= (int) ( ((nMaxWidth
- w
)/(double)m_xScrollPixelsPerLine
) + 0.5 );
585 if ( (m_xScrollPosition
+ nScrollInc
) < 0 )
586 nScrollInc
= -m_xScrollPosition
; // As -ve as we can go
587 else if ( (m_xScrollPosition
+ nScrollInc
) > noPositions
)
588 nScrollInc
= noPositions
- m_xScrollPosition
; // As +ve as we can go
591 m_targetWindow
->Refresh(TRUE
, GetScrollRect());
595 if ( m_yScrollPixelsPerLine
> 0 )
597 if ( m_yScrollPosition
+ nScrollInc
< 0 )
599 // As -ve as we can go
600 nScrollInc
= -m_yScrollPosition
;
602 else // check for the other bound
604 const int posMax
= m_yScrollLines
- m_yScrollLinesPerPage
;
605 if ( m_yScrollPosition
+ nScrollInc
> posMax
)
607 // As +ve as we can go
608 nScrollInc
= posMax
- m_yScrollPosition
;
614 // VZ: why do we do this? (FIXME)
615 m_targetWindow
->Refresh(TRUE
, GetScrollRect());
622 // Adjust the scrollbars - new version.
623 void wxScrollHelper::AdjustScrollbars()
625 static wxRecursionGuardFlag s_flagReentrancy
;
626 wxRecursionGuard
guard(s_flagReentrancy
);
627 if ( guard
.IsInside() )
629 // don't reenter AdjustScrollbars() while another call to
630 // AdjustScrollbars() is in progress because this may lead to calling
631 // ScrollWindow() twice and this can really happen under MSW if
632 // SetScrollbar() call below adds or removes the scrollbar which
633 // changes the window size and hence results in another
634 // AdjustScrollbars() call
639 m_targetWindow
->Update();
645 int oldXScroll
= m_xScrollPosition
;
646 int oldYScroll
= m_yScrollPosition
;
648 // VZ: at least under Windows this loop is useless because when scrollbars
649 // [dis]appear we get a WM_SIZE resulting in another call to
650 // AdjustScrollbars() anyhow. As it doesn't seem to do any harm I leave
651 // it here for now but it would be better to ensure that all ports
652 // generate EVT_SIZE when scrollbars [dis]appear, emulating it if
653 // necessary, and remove it later
656 GetTargetSize(&w
, 0);
658 if (m_xScrollPixelsPerLine
== 0)
661 m_xScrollPosition
= 0;
662 m_win
->SetScrollbar (wxHORIZONTAL
, 0, 0, 0, FALSE
);
666 m_xScrollLines
= m_targetWindow
->GetVirtualSize().GetWidth() / m_xScrollPixelsPerLine
;
668 // Calculate page size i.e. number of scroll units you get on the
669 // current client window
670 int noPagePositions
= (int) ( (w
/(double)m_xScrollPixelsPerLine
) + 0.5 );
671 if (noPagePositions
< 1) noPagePositions
= 1;
672 if ( noPagePositions
> m_xScrollLines
)
673 noPagePositions
= m_xScrollLines
;
675 // Correct position if greater than extent of canvas minus
676 // the visible portion of it or if below zero
677 m_xScrollPosition
= wxMin( m_xScrollLines
- noPagePositions
, m_xScrollPosition
);
678 m_xScrollPosition
= wxMax( 0, m_xScrollPosition
);
680 m_win
->SetScrollbar(wxHORIZONTAL
, m_xScrollPosition
, noPagePositions
, m_xScrollLines
);
681 // The amount by which we scroll when paging
682 SetScrollPageSize(wxHORIZONTAL
, noPagePositions
);
685 GetTargetSize(0, &h
);
687 // scroll lines per page: if 0, no scrolling is needed
690 if ( m_yScrollPixelsPerLine
== 0 )
692 // scrolling is disabled
694 m_yScrollPosition
= 0;
697 else // might need scrolling
699 int hVirt
= m_targetWindow
->GetVirtualSize().GetHeight();
700 m_yScrollLines
= hVirt
/ m_yScrollPixelsPerLine
;
702 // Calculate page size i.e. number of scroll units you get on the
703 // current client window
704 linesPerPage
= h
/ m_yScrollPixelsPerLine
;
705 if ( linesPerPage
>= m_yScrollLines
)
707 // we're big enough to not need scrolling
710 m_yScrollPosition
= 0;
712 else // we do need a scrollbar
714 if ( linesPerPage
< 1 )
717 // Correct position if greater than extent of canvas minus
718 // the visible portion of it or if below zero
719 const int posMax
= m_yScrollLines
- linesPerPage
;
720 if ( m_yScrollPosition
> posMax
)
721 m_yScrollPosition
= posMax
;
722 else if ( m_yScrollPosition
< 0 )
723 m_yScrollPosition
= 0;
727 m_win
->SetScrollbar(wxVERTICAL
, m_yScrollPosition
,
728 linesPerPage
, m_yScrollLines
);
730 // The amount by which we scroll when paging
731 SetScrollPageSize(wxVERTICAL
, linesPerPage
);
734 // If a scrollbar (dis)appeared as a result of this, adjust them again.
738 GetTargetSize( &w
, &h
);
739 } while ( w
!= oldw
|| h
!= oldh
);
742 // Sorry, some Motif-specific code to implement a backing pixmap
743 // for the wxRETAINED style. Implementing a backing store can't
744 // be entirely generic because it relies on the wxWindowDC implementation
745 // to duplicate X drawing calls for the backing pixmap.
747 if ( m_targetWindow
->GetWindowStyle() & wxRETAINED
)
749 Display
* dpy
= XtDisplay((Widget
)m_targetWindow
->GetMainWidget());
751 int totalPixelWidth
= m_xScrollLines
* m_xScrollPixelsPerLine
;
752 int totalPixelHeight
= m_yScrollLines
* m_yScrollPixelsPerLine
;
753 if (m_targetWindow
->GetBackingPixmap() &&
754 !((m_targetWindow
->GetPixmapWidth() == totalPixelWidth
) &&
755 (m_targetWindow
->GetPixmapHeight() == totalPixelHeight
)))
757 XFreePixmap (dpy
, (Pixmap
) m_targetWindow
->GetBackingPixmap());
758 m_targetWindow
->SetBackingPixmap((WXPixmap
) 0);
761 if (!m_targetWindow
->GetBackingPixmap() &&
762 (m_xScrollLines
!= 0) && (m_yScrollLines
!= 0))
764 int depth
= wxDisplayDepth();
765 m_targetWindow
->SetPixmapWidth(totalPixelWidth
);
766 m_targetWindow
->SetPixmapHeight(totalPixelHeight
);
767 m_targetWindow
->SetBackingPixmap((WXPixmap
) XCreatePixmap (dpy
, RootWindow (dpy
, DefaultScreen (dpy
)),
768 m_targetWindow
->GetPixmapWidth(), m_targetWindow
->GetPixmapHeight(), depth
));
774 if (oldXScroll
!= m_xScrollPosition
)
776 if (m_xScrollingEnabled
)
777 m_targetWindow
->ScrollWindow( m_xScrollPixelsPerLine
* (oldXScroll
- m_xScrollPosition
), 0,
780 m_targetWindow
->Refresh(TRUE
, GetScrollRect());
783 if (oldYScroll
!= m_yScrollPosition
)
785 if (m_yScrollingEnabled
)
786 m_targetWindow
->ScrollWindow( 0, m_yScrollPixelsPerLine
* (oldYScroll
-m_yScrollPosition
),
789 m_targetWindow
->Refresh(TRUE
, GetScrollRect());
793 m_targetWindow
->Update();
797 void wxScrollHelper::DoPrepareDC(wxDC
& dc
)
799 wxPoint pt
= dc
.GetDeviceOrigin();
800 dc
.SetDeviceOrigin( pt
.x
- m_xScrollPosition
* m_xScrollPixelsPerLine
,
801 pt
.y
- m_yScrollPosition
* m_yScrollPixelsPerLine
);
802 dc
.SetUserScale( m_scaleX
, m_scaleY
);
805 void wxScrollHelper::SetScrollRate( int xstep
, int ystep
)
807 int old_x
= m_xScrollPixelsPerLine
* m_xScrollPosition
;
808 int old_y
= m_yScrollPixelsPerLine
* m_yScrollPosition
;
810 m_xScrollPixelsPerLine
= xstep
;
811 m_yScrollPixelsPerLine
= ystep
;
813 int new_x
= m_xScrollPixelsPerLine
* m_xScrollPosition
;
814 int new_y
= m_yScrollPixelsPerLine
* m_yScrollPosition
;
816 m_win
->SetScrollPos( wxHORIZONTAL
, m_xScrollPosition
);
817 m_win
->SetScrollPos( wxVERTICAL
, m_yScrollPosition
);
818 m_targetWindow
->ScrollWindow( old_x
- new_x
, old_y
- new_y
);
823 void wxScrollHelper::GetScrollPixelsPerUnit (int *x_unit
, int *y_unit
) const
826 *x_unit
= m_xScrollPixelsPerLine
;
828 *y_unit
= m_yScrollPixelsPerLine
;
831 int wxScrollHelper::GetScrollPageSize(int orient
) const
833 if ( orient
== wxHORIZONTAL
)
834 return m_xScrollLinesPerPage
;
836 return m_yScrollLinesPerPage
;
839 void wxScrollHelper::SetScrollPageSize(int orient
, int pageSize
)
841 if ( orient
== wxHORIZONTAL
)
842 m_xScrollLinesPerPage
= pageSize
;
844 m_yScrollLinesPerPage
= pageSize
;
848 * Scroll to given position (scroll position, not pixel position)
850 void wxScrollHelper::Scroll( int x_pos
, int y_pos
)
855 if (((x_pos
== -1) || (x_pos
== m_xScrollPosition
)) &&
856 ((y_pos
== -1) || (y_pos
== m_yScrollPosition
))) return;
859 m_targetWindow
->Update();
863 GetTargetSize(&w
, &h
);
865 if ((x_pos
!= -1) && (m_xScrollPixelsPerLine
))
867 int old_x
= m_xScrollPosition
;
868 m_xScrollPosition
= x_pos
;
870 // Calculate page size i.e. number of scroll units you get on the
871 // current client window
872 int noPagePositions
= (int) ( (w
/(double)m_xScrollPixelsPerLine
) + 0.5 );
873 if (noPagePositions
< 1) noPagePositions
= 1;
875 // Correct position if greater than extent of canvas minus
876 // the visible portion of it or if below zero
877 m_xScrollPosition
= wxMin( m_xScrollLines
-noPagePositions
, m_xScrollPosition
);
878 m_xScrollPosition
= wxMax( 0, m_xScrollPosition
);
880 if (old_x
!= m_xScrollPosition
) {
881 m_win
->SetScrollPos( wxHORIZONTAL
, m_xScrollPosition
);
882 m_targetWindow
->ScrollWindow( (old_x
-m_xScrollPosition
)*m_xScrollPixelsPerLine
, 0,
886 if ((y_pos
!= -1) && (m_yScrollPixelsPerLine
))
888 int old_y
= m_yScrollPosition
;
889 m_yScrollPosition
= y_pos
;
891 // Calculate page size i.e. number of scroll units you get on the
892 // current client window
893 int noPagePositions
= (int) ( (h
/(double)m_yScrollPixelsPerLine
) + 0.5 );
894 if (noPagePositions
< 1) noPagePositions
= 1;
896 // Correct position if greater than extent of canvas minus
897 // the visible portion of it or if below zero
898 m_yScrollPosition
= wxMin( m_yScrollLines
-noPagePositions
, m_yScrollPosition
);
899 m_yScrollPosition
= wxMax( 0, m_yScrollPosition
);
901 if (old_y
!= m_yScrollPosition
) {
902 m_win
->SetScrollPos( wxVERTICAL
, m_yScrollPosition
);
903 m_targetWindow
->ScrollWindow( 0, (old_y
-m_yScrollPosition
)*m_yScrollPixelsPerLine
,
909 m_targetWindow
->Update();
914 void wxScrollHelper::EnableScrolling (bool x_scroll
, bool y_scroll
)
916 m_xScrollingEnabled
= x_scroll
;
917 m_yScrollingEnabled
= y_scroll
;
920 // Where the current view starts from
921 void wxScrollHelper::GetViewStart (int *x
, int *y
) const
924 *x
= m_xScrollPosition
;
926 *y
= m_yScrollPosition
;
929 void wxScrollHelper::DoCalcScrolledPosition(int x
, int y
, int *xx
, int *yy
) const
932 *xx
= x
- m_xScrollPosition
* m_xScrollPixelsPerLine
;
934 *yy
= y
- m_yScrollPosition
* m_yScrollPixelsPerLine
;
937 void wxScrollHelper::DoCalcUnscrolledPosition(int x
, int y
, int *xx
, int *yy
) const
940 *xx
= x
+ m_xScrollPosition
* m_xScrollPixelsPerLine
;
942 *yy
= y
+ m_yScrollPosition
* m_yScrollPixelsPerLine
;
945 // ----------------------------------------------------------------------------
947 // ----------------------------------------------------------------------------
949 // Default OnSize resets scrollbars, if any
950 void wxScrollHelper::HandleOnSize(wxSizeEvent
& WXUNUSED(event
))
952 if( m_win
->GetAutoLayout() || m_targetWindow
->GetAutoLayout() )
954 if ( m_targetWindow
!= m_win
)
955 m_targetWindow
->FitInside();
959 // FIXME: Something is really weird here... This should be
960 // called by FitInside above (and apparently is), yet the
961 // scrollsub sample will get the scrollbar wrong if resized
962 // quickly. This masks the bug, but is surely not the right
970 // This calls OnDraw, having adjusted the origin according to the current
972 void wxScrollHelper::HandleOnPaint(wxPaintEvent
& WXUNUSED(event
))
974 // don't use m_targetWindow here, this is always called for ourselves
981 // kbd handling: notice that we use OnChar() and not OnKeyDown() for
982 // compatibility here - if we used OnKeyDown(), the programs which process
983 // arrows themselves in their OnChar() would never get the message and like
984 // this they always have the priority
985 void wxScrollHelper::HandleOnChar(wxKeyEvent
& event
)
987 int stx
, sty
, // view origin
988 szx
, szy
, // view size (total)
989 clix
, cliy
; // view size (on screen)
991 GetViewStart(&stx
, &sty
);
992 GetTargetSize(&clix
, &cliy
);
993 m_targetWindow
->GetVirtualSize(&szx
, &szy
);
995 if( m_xScrollPixelsPerLine
)
997 clix
/= m_xScrollPixelsPerLine
;
998 szx
/= m_xScrollPixelsPerLine
;
1005 if( m_yScrollPixelsPerLine
)
1007 cliy
/= m_yScrollPixelsPerLine
;
1008 szy
/= m_yScrollPixelsPerLine
;
1016 int xScrollOld
= m_xScrollPosition
,
1017 yScrollOld
= m_yScrollPosition
;
1020 switch ( event
.GetKeyCode() )
1024 dsty
= sty
- (5 * cliy
/ 6);
1025 Scroll(-1, (dsty
== -1) ? 0 : dsty
);
1030 Scroll(-1, sty
+ (5 * cliy
/ 6));
1034 Scroll(0, event
.ControlDown() ? 0 : -1);
1038 Scroll(szx
- clix
, event
.ControlDown() ? szy
- cliy
: -1);
1042 Scroll(-1, sty
- 1);
1046 Scroll(-1, sty
+ 1);
1050 Scroll(stx
- 1, -1);
1054 Scroll(stx
+ 1, -1);
1062 if ( m_xScrollPosition
!= xScrollOld
)
1064 wxScrollWinEvent
event(wxEVT_SCROLLWIN_THUMBTRACK
, m_xScrollPosition
,
1066 event
.SetEventObject(m_win
);
1067 m_win
->GetEventHandler()->ProcessEvent(event
);
1070 if ( m_yScrollPosition
!= yScrollOld
)
1072 wxScrollWinEvent
event(wxEVT_SCROLLWIN_THUMBTRACK
, m_yScrollPosition
,
1074 event
.SetEventObject(m_win
);
1075 m_win
->GetEventHandler()->ProcessEvent(event
);
1079 // ----------------------------------------------------------------------------
1080 // autoscroll stuff: these functions deal with sending fake scroll events when
1081 // a captured mouse is being held outside the window
1082 // ----------------------------------------------------------------------------
1084 bool wxScrollHelper::SendAutoScrollEvents(wxScrollWinEvent
& event
) const
1086 // only send the event if the window is scrollable in this direction
1087 wxWindow
*win
= (wxWindow
*)event
.GetEventObject();
1088 return win
->HasScrollbar(event
.GetOrientation());
1091 void wxScrollHelper::StopAutoScrolling()
1094 if ( m_timerAutoScroll
)
1096 delete m_timerAutoScroll
;
1097 m_timerAutoScroll
= (wxTimer
*)NULL
;
1102 void wxScrollHelper::HandleOnMouseEnter(wxMouseEvent
& event
)
1104 StopAutoScrolling();
1109 void wxScrollHelper::HandleOnMouseLeave(wxMouseEvent
& event
)
1111 // don't prevent the usual processing of the event from taking place
1114 // when a captured mouse leave a scrolled window we start generate
1115 // scrolling events to allow, for example, extending selection beyond the
1116 // visible area in some controls
1117 if ( wxWindow::GetCapture() == m_targetWindow
)
1119 // where is the mouse leaving?
1121 wxPoint pt
= event
.GetPosition();
1124 orient
= wxHORIZONTAL
;
1127 else if ( pt
.y
< 0 )
1129 orient
= wxVERTICAL
;
1132 else // we're lower or to the right of the window
1134 wxSize size
= m_targetWindow
->GetClientSize();
1135 if ( pt
.x
> size
.x
)
1137 orient
= wxHORIZONTAL
;
1138 pos
= m_xScrollLines
;
1140 else if ( pt
.y
> size
.y
)
1142 orient
= wxVERTICAL
;
1143 pos
= m_yScrollLines
;
1145 else // this should be impossible
1147 // but seems to happen sometimes under wxMSW - maybe it's a bug
1148 // there but for now just ignore it
1150 //wxFAIL_MSG( _T("can't understand where has mouse gone") );
1156 // only start the auto scroll timer if the window can be scrolled in
1158 if ( !m_targetWindow
->HasScrollbar(orient
) )
1162 delete m_timerAutoScroll
;
1163 m_timerAutoScroll
= new wxAutoScrollTimer
1165 m_targetWindow
, this,
1166 pos
== 0 ? wxEVT_SCROLLWIN_LINEUP
1167 : wxEVT_SCROLLWIN_LINEDOWN
,
1171 m_timerAutoScroll
->Start(50); // FIXME: make configurable
1176 #if wxUSE_MOUSEWHEEL
1178 void wxScrollHelper::HandleOnMouseWheel(wxMouseEvent
& event
)
1180 m_wheelRotation
+= event
.GetWheelRotation();
1181 int lines
= m_wheelRotation
/ event
.GetWheelDelta();
1182 m_wheelRotation
-= lines
* event
.GetWheelDelta();
1187 wxScrollWinEvent newEvent
;
1189 newEvent
.SetPosition(0);
1190 newEvent
.SetOrientation(wxVERTICAL
);
1191 newEvent
.m_eventObject
= m_win
;
1193 if (event
.IsPageScroll())
1196 newEvent
.m_eventType
= wxEVT_SCROLLWIN_PAGEUP
;
1198 newEvent
.m_eventType
= wxEVT_SCROLLWIN_PAGEDOWN
;
1200 m_win
->GetEventHandler()->ProcessEvent(newEvent
);
1204 lines
*= event
.GetLinesPerAction();
1206 newEvent
.m_eventType
= wxEVT_SCROLLWIN_LINEUP
;
1208 newEvent
.m_eventType
= wxEVT_SCROLLWIN_LINEDOWN
;
1210 int times
= abs(lines
);
1211 for (; times
> 0; times
--)
1212 m_win
->GetEventHandler()->ProcessEvent(newEvent
);
1217 #endif // wxUSE_MOUSEWHEEL
1219 // ----------------------------------------------------------------------------
1220 // wxGenericScrolledWindow implementation
1221 // ----------------------------------------------------------------------------
1223 IMPLEMENT_DYNAMIC_CLASS(wxGenericScrolledWindow
, wxPanel
)
1225 BEGIN_EVENT_TABLE(wxGenericScrolledWindow
, wxPanel
)
1226 EVT_PAINT(wxGenericScrolledWindow::OnPaint
)
1229 bool wxGenericScrolledWindow::Create(wxWindow
*parent
,
1234 const wxString
& name
)
1236 m_targetWindow
= this;
1238 bool ok
= wxPanel::Create(parent
, id
, pos
, size
, style
, name
);
1243 wxGenericScrolledWindow::~wxGenericScrolledWindow()
1247 bool wxGenericScrolledWindow::Layout()
1249 if (GetSizer() && m_targetWindow
== this)
1251 // If we're the scroll target, take into account the
1252 // virtual size and scrolled position of the window.
1255 CalcScrolledPosition(0,0, &x
,&y
);
1256 GetVirtualSize(&w
, &h
);
1257 GetSizer()->SetDimension(x
, y
, w
, h
);
1261 // fall back to default for LayoutConstraints
1262 return wxPanel::Layout();
1265 void wxGenericScrolledWindow::DoSetVirtualSize(int x
, int y
)
1267 wxPanel::DoSetVirtualSize( x
, y
);
1270 #if wxUSE_CONSTRAINTS
1271 if (GetAutoLayout())
1276 void wxGenericScrolledWindow::OnPaint(wxPaintEvent
& event
)
1278 // the user code didn't really draw the window if we got here, so set this
1279 // flag to try to call OnDraw() later
1280 m_handler
->ResetDrawnFlag();
1287 wxGenericScrolledWindow::MSWWindowProc(WXUINT nMsg
,
1291 long rc
= wxPanel::MSWWindowProc(nMsg
, wParam
, lParam
);
1294 // we need to process arrows ourselves for scrolling
1295 if ( nMsg
== WM_GETDLGCODE
)
1297 rc
|= DLGC_WANTARROWS
;
1306 #if WXWIN_COMPATIBILITY
1308 void wxGenericScrolledWindow::GetScrollUnitsPerPage (int *x_page
, int *y_page
) const
1310 *x_page
= GetScrollPageSize(wxHORIZONTAL
);
1311 *y_page
= GetScrollPageSize(wxVERTICAL
);
1314 void wxGenericScrolledWindow::CalcUnscrolledPosition(int x
, int y
, float *xx
, float *yy
) const
1317 *xx
= (float)(x
+ m_xScrollPosition
* m_xScrollPixelsPerLine
);
1319 *yy
= (float)(y
+ m_yScrollPosition
* m_yScrollPixelsPerLine
);
1322 #endif // WXWIN_COMPATIBILITY