1 /////////////////////////////////////////////////////////////////////////////
2 // Name: gtk/scrolwin.cpp
3 // Purpose: wxScrolledWindow implementation
4 // Author: Julian Smart
5 // Modified by: Ron Lee
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "scrolwin.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
32 #include "wx/dcclient.h"
34 #include "wx/scrolwin.h"
38 #include "wx/gtk/private.h"
39 #include "wx/gtk/win_gtk.h"
41 // ----------------------------------------------------------------------------
43 // ----------------------------------------------------------------------------
45 BEGIN_EVENT_TABLE(wxScrolledWindow
, wxPanel
)
46 EVT_SCROLLWIN(wxScrolledWindow::OnScroll
)
47 EVT_SIZE(wxScrolledWindow::OnSize
)
48 EVT_PAINT(wxScrolledWindow::OnPaint
)
49 EVT_CHAR(wxScrolledWindow::OnChar
)
52 IMPLEMENT_DYNAMIC_CLASS(wxScrolledWindow
, wxPanel
)
54 // ============================================================================
56 // ============================================================================
58 //-----------------------------------------------------------------------------
60 //-----------------------------------------------------------------------------
62 extern bool g_blockEventsOnDrag
;
63 extern bool g_blockEventsOnScroll
;
65 //-----------------------------------------------------------------------------
67 //-----------------------------------------------------------------------------
69 extern void wxapp_install_idle_handler();
72 //-----------------------------------------------------------------------------
73 // "value_changed" from m_vAdjust
74 //-----------------------------------------------------------------------------
76 static void gtk_scrolled_window_vscroll_callback( GtkAdjustment
*adjust
,
78 wxScrolledWindow
*win
)
81 wxapp_install_idle_handler();
83 if (g_blockEventsOnDrag
) return;
85 if (!win
->m_hasVMT
) return;
87 win
->GtkVScroll( adjust
->value
,
88 GET_SCROLL_TYPE(GTK_SCROLLED_WINDOW(win
->m_widget
)->vscrollbar
) );
91 //-----------------------------------------------------------------------------
92 // "value_changed" from m_hAdjust
93 //-----------------------------------------------------------------------------
95 static void gtk_scrolled_window_hscroll_callback( GtkAdjustment
*adjust
,
97 wxScrolledWindow
*win
)
100 wxapp_install_idle_handler();
102 if (g_blockEventsOnDrag
) return;
103 if (!win
->m_hasVMT
) return;
105 win
->GtkHScroll( adjust
->value
,
106 GET_SCROLL_TYPE(GTK_SCROLLED_WINDOW(win
->m_widget
)->hscrollbar
) );
109 //-----------------------------------------------------------------------------
110 // "button_press_event" from scrollbar
111 //-----------------------------------------------------------------------------
113 static gint
gtk_scrollbar_button_press_callback( GtkRange
*widget
,
114 GdkEventButton
*gdk_event
,
118 wxapp_install_idle_handler();
120 g_blockEventsOnScroll
= TRUE
;
122 // FIXME: there is no slider field any more, what was meant here?
124 win
->m_isScrolling
= (gdk_event
->window
== widget
->slider
);
130 //-----------------------------------------------------------------------------
131 // "button_release_event" from scrollbar
132 //-----------------------------------------------------------------------------
134 static gint
gtk_scrollbar_button_release_callback( GtkRange
*widget
,
135 GdkEventButton
*WXUNUSED(gdk_event
),
138 // don't test here as we can release the mouse while being over
139 // a different window than the slider
141 // if (gdk_event->window != widget->slider) return FALSE;
143 g_blockEventsOnScroll
= FALSE
;
145 if (win
->m_isScrolling
)
147 wxEventType command
= wxEVT_SCROLLWIN_THUMBRELEASE
;
151 GtkScrolledWindow
*scrolledWindow
= GTK_SCROLLED_WINDOW(win
->m_widget
);
152 if (widget
== GTK_RANGE(scrolledWindow
->hscrollbar
))
154 value
= (int)(win
->m_hAdjust
->value
+0.5);
157 if (widget
== GTK_RANGE(scrolledWindow
->vscrollbar
))
159 value
= (int)(win
->m_vAdjust
->value
+0.5);
163 wxScrollWinEvent
event( command
, value
, dir
);
164 event
.SetEventObject( win
);
165 win
->GetEventHandler()->ProcessEvent( event
);
168 win
->m_isScrolling
= FALSE
;
173 //-----------------------------------------------------------------------------
174 // InsertChild for wxScrolledWindow
175 //-----------------------------------------------------------------------------
177 static void wxInsertChildInScrolledWindow( wxWindow
* parent
, wxWindow
* child
)
179 // The window might have been scrolled already, do we
180 // have to adapt the position.
181 GtkPizza
*pizza
= GTK_PIZZA(parent
->m_wxwindow
);
182 child
->m_x
+= pizza
->xoffset
;
183 child
->m_y
+= pizza
->yoffset
;
185 gtk_pizza_put( GTK_PIZZA(parent
->m_wxwindow
),
186 GTK_WIDGET(child
->m_widget
),
193 // ----------------------------------------------------------------------------
194 // wxScrolledWindow creation
195 // ----------------------------------------------------------------------------
197 void wxScrolledWindow::Init()
199 m_xScrollPixelsPerLine
= 0;
200 m_yScrollPixelsPerLine
= 0;
201 m_xScrollingEnabled
= TRUE
;
202 m_yScrollingEnabled
= TRUE
;
203 m_xScrollPosition
= 0;
204 m_yScrollPosition
= 0;
205 m_xScrollLinesPerPage
= 0;
206 m_yScrollLinesPerPage
= 0;
207 m_targetWindow
= (wxWindow
*) NULL
;
210 m_hasScrolling
= TRUE
;
213 bool wxScrolledWindow::Create(wxWindow
*parent
,
218 const wxString
& name
)
222 if (!PreCreation( parent
, pos
, size
) ||
223 !CreateBase( parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
))
225 wxFAIL_MSG( wxT("wxWindow creation failed") );
229 m_insertCallback
= wxInsertChildInScrolledWindow
;
231 m_targetWindow
= this;
233 m_widget
= gtk_scrolled_window_new( (GtkAdjustment
*) NULL
, (GtkAdjustment
*) NULL
);
234 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
236 GtkScrolledWindow
*scrolledWindow
= GTK_SCROLLED_WINDOW(m_widget
);
238 GtkScrolledWindowClass
*scroll_class
= GTK_SCROLLED_WINDOW_CLASS( GTK_OBJECT_GET_CLASS(m_widget
) );
239 scroll_class
->scrollbar_spacing
= 0;
241 gtk_scrolled_window_set_policy( scrolledWindow
, GTK_POLICY_AUTOMATIC
, GTK_POLICY_AUTOMATIC
);
243 m_hAdjust
= gtk_range_get_adjustment( GTK_RANGE(scrolledWindow
->hscrollbar
) );
244 m_vAdjust
= gtk_range_get_adjustment( GTK_RANGE(scrolledWindow
->vscrollbar
) );
246 m_wxwindow
= gtk_pizza_new();
248 gtk_container_add( GTK_CONTAINER(m_widget
), m_wxwindow
);
250 GtkPizza
*pizza
= GTK_PIZZA(m_wxwindow
);
252 if (HasFlag(wxRAISED_BORDER
))
254 gtk_pizza_set_shadow_type( pizza
, GTK_MYSHADOW_OUT
);
256 else if (HasFlag(wxSUNKEN_BORDER
))
258 gtk_pizza_set_shadow_type( pizza
, GTK_MYSHADOW_IN
);
260 else if (HasFlag(wxSIMPLE_BORDER
))
262 gtk_pizza_set_shadow_type( pizza
, GTK_MYSHADOW_THIN
);
266 gtk_pizza_set_shadow_type( pizza
, GTK_MYSHADOW_NONE
);
269 GTK_WIDGET_SET_FLAGS( m_wxwindow
, GTK_CAN_FOCUS
);
270 m_acceptsFocus
= TRUE
;
272 // I _really_ don't want scrollbars in the beginning
273 m_vAdjust
->lower
= 0.0;
274 m_vAdjust
->upper
= 1.0;
275 m_vAdjust
->value
= 0.0;
276 m_vAdjust
->step_increment
= 1.0;
277 m_vAdjust
->page_increment
= 2.0;
278 gtk_signal_emit_by_name( GTK_OBJECT(m_vAdjust
), "changed" );
279 m_hAdjust
->lower
= 0.0;
280 m_hAdjust
->upper
= 1.0;
281 m_hAdjust
->value
= 0.0;
282 m_hAdjust
->step_increment
= 1.0;
283 m_hAdjust
->page_increment
= 2.0;
284 gtk_signal_emit_by_name( GTK_OBJECT(m_hAdjust
), "changed" );
286 // Handlers for new scrollbar values
290 // these handlers block mouse events to any window during scrolling such as
291 // motion events and prevent GTK and wxWindows from fighting over where the
294 gtk_signal_connect( GTK_OBJECT(scrolledWindow
->vscrollbar
), "button_press_event",
295 (GtkSignalFunc
)gtk_scrollbar_button_press_callback
, (gpointer
) this );
297 gtk_signal_connect( GTK_OBJECT(scrolledWindow
->hscrollbar
), "button_press_event",
298 (GtkSignalFunc
)gtk_scrollbar_button_press_callback
, (gpointer
) this );
300 gtk_signal_connect( GTK_OBJECT(scrolledWindow
->vscrollbar
), "button_release_event",
301 (GtkSignalFunc
)gtk_scrollbar_button_release_callback
, (gpointer
) this );
303 gtk_signal_connect( GTK_OBJECT(scrolledWindow
->hscrollbar
), "button_release_event",
304 (GtkSignalFunc
)gtk_scrollbar_button_release_callback
, (gpointer
) this );
306 gtk_widget_show( m_wxwindow
);
309 m_parent
->DoAddChild( this );
311 m_focusWidget
= m_wxwindow
;
320 // ----------------------------------------------------------------------------
321 // setting scrolling parameters
322 // ----------------------------------------------------------------------------
324 void wxScrolledWindow::DoSetVirtualSize( int x
, int y
)
326 wxPanel::DoSetVirtualSize( x
, y
);
329 #if wxUSE_CONSTRAINTS
336 * pixelsPerUnitX/pixelsPerUnitY: number of pixels per unit (e.g. pixels per text line)
337 * noUnitsX/noUnitsY: : no. units per scrollbar
339 void wxScrolledWindow::SetScrollbars( int pixelsPerUnitX
, int pixelsPerUnitY
,
340 int noUnitsX
, int noUnitsY
,
341 int xPos
, int yPos
, bool noRefresh
)
343 int old_x
= m_xScrollPixelsPerLine
* m_xScrollPosition
;
344 int old_y
= m_yScrollPixelsPerLine
* m_yScrollPosition
;
346 m_xScrollPixelsPerLine
= pixelsPerUnitX
;
347 m_yScrollPixelsPerLine
= pixelsPerUnitY
;
349 m_hAdjust
->value
= m_xScrollPosition
= xPos
;
350 m_vAdjust
->value
= m_yScrollPosition
= yPos
;
352 // Setting hints here should arguably be deprecated, but without it
353 // a sizer might override this manual scrollbar setting in old code.
354 m_targetWindow
->SetVirtualSizeHints( noUnitsX
* pixelsPerUnitX
, noUnitsY
* pixelsPerUnitY
);
356 m_targetWindow
->SetVirtualSize( noUnitsX
* pixelsPerUnitX
, noUnitsY
* pixelsPerUnitY
);
360 int new_x
= m_xScrollPixelsPerLine
* m_xScrollPosition
;
361 int new_y
= m_yScrollPixelsPerLine
* m_yScrollPosition
;
363 m_targetWindow
->ScrollWindow( old_x
- new_x
, old_y
- new_y
);
367 void wxScrolledWindow::AdjustScrollbars()
372 m_targetWindow
->GetClientSize( &w
, &h
);
373 m_targetWindow
->GetVirtualSize( &vw
, &vh
);
375 if (m_xScrollPixelsPerLine
== 0)
377 m_hAdjust
->upper
= 1.0;
378 m_hAdjust
->page_size
= 1.0;
382 m_hAdjust
->upper
= vw
/ m_xScrollPixelsPerLine
;
383 m_hAdjust
->page_size
= (w
/ m_xScrollPixelsPerLine
);
385 // If the scrollbar hits the right side, move the window
386 // right to keep it from over extending.
388 if ((m_hAdjust
->value
!= 0.0) && (m_hAdjust
->value
+ m_hAdjust
->page_size
> m_hAdjust
->upper
))
390 m_hAdjust
->value
= m_hAdjust
->upper
- m_hAdjust
->page_size
;
391 if (m_hAdjust
->value
< 0.0)
392 m_hAdjust
->value
= 0.0;
394 if (GetChildren().GetCount() == 0)
395 m_xScrollPosition
= (int)m_hAdjust
->value
; // This is enough without child windows
397 gtk_signal_emit_by_name( GTK_OBJECT(m_hAdjust
), "value_changed" ); // Actually scroll window
401 if (m_yScrollPixelsPerLine
== 0)
403 m_vAdjust
->upper
= 1.0;
404 m_vAdjust
->page_size
= 1.0;
408 m_vAdjust
->upper
= vh
/ m_yScrollPixelsPerLine
;
409 m_vAdjust
->page_size
= (h
/ m_yScrollPixelsPerLine
);
411 if ((m_vAdjust
->value
!= 0.0) && (m_vAdjust
->value
+ m_vAdjust
->page_size
> m_vAdjust
->upper
))
413 m_vAdjust
->value
= m_vAdjust
->upper
- m_vAdjust
->page_size
;
414 if (m_vAdjust
->value
< 0.0)
415 m_vAdjust
->value
= 0.0;
417 if (GetChildren().GetCount() == 0)
418 m_yScrollPosition
= (int)m_vAdjust
->value
;
420 gtk_signal_emit_by_name( GTK_OBJECT(m_vAdjust
), "value_changed" );
424 m_xScrollLinesPerPage
= (int)(m_hAdjust
->page_size
+ 0.5);
425 m_yScrollLinesPerPage
= (int)(m_vAdjust
->page_size
+ 0.5);
427 gtk_signal_emit_by_name( GTK_OBJECT(m_vAdjust
), "changed" );
428 gtk_signal_emit_by_name( GTK_OBJECT(m_hAdjust
), "changed" );
432 // ----------------------------------------------------------------------------
433 // target window handling
434 // ----------------------------------------------------------------------------
436 void wxScrolledWindow::SetTargetWindow( wxWindow
*target
, bool WXUNUSED(pushEventHandler
) )
438 wxASSERT_MSG( target
, wxT("target window must not be NULL") );
439 m_targetWindow
= target
;
442 wxWindow
*wxScrolledWindow::GetTargetWindow()
444 return m_targetWindow
;
447 // Override this function if you don't want to have wxScrolledWindow
448 // automatically change the origin according to the scroll position.
449 void wxScrolledWindow::PrepareDC(wxDC
& dc
)
451 dc
.SetDeviceOrigin( -m_xScrollPosition
* m_xScrollPixelsPerLine
,
452 -m_yScrollPosition
* m_yScrollPixelsPerLine
);
455 void wxScrolledWindow::SetScrollRate( int xstep
, int ystep
)
457 int old_x
= m_xScrollPixelsPerLine
* m_xScrollPosition
;
458 int old_y
= m_yScrollPixelsPerLine
* m_yScrollPosition
;
460 m_xScrollPixelsPerLine
= xstep
;
461 m_yScrollPixelsPerLine
= ystep
;
463 int new_x
= m_xScrollPixelsPerLine
* m_xScrollPosition
;
464 int new_y
= m_yScrollPixelsPerLine
* m_yScrollPosition
;
466 m_targetWindow
->ScrollWindow( old_x
- new_x
, old_y
- new_y
);
471 void wxScrolledWindow::GetScrollPixelsPerUnit (int *x_unit
, int *y_unit
) const
474 *x_unit
= m_xScrollPixelsPerLine
;
476 *y_unit
= m_yScrollPixelsPerLine
;
479 int wxScrolledWindow::GetScrollPageSize(int orient
) const
481 if ( orient
== wxHORIZONTAL
)
482 return m_xScrollLinesPerPage
;
484 return m_yScrollLinesPerPage
;
487 void wxScrolledWindow::SetScrollPageSize(int orient
, int pageSize
)
489 if ( orient
== wxHORIZONTAL
)
490 m_xScrollLinesPerPage
= pageSize
;
492 m_yScrollLinesPerPage
= pageSize
;
495 void wxScrolledWindow::OnScroll(wxScrollWinEvent
& event
)
497 int orient
= event
.GetOrientation();
499 int nScrollInc
= CalcScrollInc(event
);
500 if (nScrollInc
== 0) return;
502 if (orient
== wxHORIZONTAL
)
504 int newPos
= m_xScrollPosition
+ nScrollInc
;
505 SetScrollPos(wxHORIZONTAL
, newPos
, TRUE
);
509 int newPos
= m_yScrollPosition
+ nScrollInc
;
510 SetScrollPos(wxVERTICAL
, newPos
, TRUE
);
513 if (orient
== wxHORIZONTAL
)
515 m_xScrollPosition
+= nScrollInc
;
519 m_yScrollPosition
+= nScrollInc
;
522 if (orient
== wxHORIZONTAL
)
524 if (m_xScrollingEnabled
)
525 m_targetWindow
->ScrollWindow(-m_xScrollPixelsPerLine
* nScrollInc
, 0, (const wxRect
*) NULL
);
527 m_targetWindow
->Refresh();
531 if (m_yScrollingEnabled
)
532 m_targetWindow
->ScrollWindow(0, -m_yScrollPixelsPerLine
* nScrollInc
, (const wxRect
*) NULL
);
534 m_targetWindow
->Refresh();
538 void wxScrolledWindow::Scroll( int x_pos
, int y_pos
)
540 wxASSERT_MSG( m_targetWindow
!= 0, _T("No target window") );
542 if (((x_pos
== -1) || (x_pos
== m_xScrollPosition
)) &&
543 ((y_pos
== -1) || (y_pos
== m_yScrollPosition
))) return;
545 if ((x_pos
!= -1) && (m_xScrollPixelsPerLine
))
547 int max
= (int)(m_hAdjust
->upper
- m_hAdjust
->page_size
+ 0.5);
548 if (max
< 0) max
= 0;
549 if (x_pos
> max
) x_pos
= max
;
550 if (x_pos
< 0) x_pos
= 0;
552 int old_x
= m_xScrollPosition
;
553 m_xScrollPosition
= x_pos
;
554 m_hAdjust
->value
= x_pos
;
556 m_targetWindow
->ScrollWindow( (old_x
-m_xScrollPosition
)*m_xScrollPixelsPerLine
, 0 );
558 // Just update the scrollbar, don't send any wxWindows event
559 GtkHDisconnectEvent();
560 gtk_signal_emit_by_name( GTK_OBJECT(m_hAdjust
), "value_changed" );
564 if ((y_pos
!= -1) && (m_yScrollPixelsPerLine
))
566 int max
= (int)(m_vAdjust
->upper
- m_vAdjust
->page_size
+ 0.5);
567 if (max
< 0) max
= 0;
568 if (y_pos
> max
) y_pos
= max
;
569 if (y_pos
< 0) y_pos
= 0;
571 int old_y
= m_yScrollPosition
;
572 m_yScrollPosition
= y_pos
;
573 m_vAdjust
->value
= y_pos
;
575 m_targetWindow
->ScrollWindow( 0, (old_y
-m_yScrollPosition
)*m_yScrollPixelsPerLine
);
577 // Just update the scrollbar, don't send any wxWindows event
578 GtkVDisconnectEvent();
579 gtk_signal_emit_by_name( GTK_OBJECT(m_vAdjust
), "value_changed" );
584 // TODO: [VH]Scroll functions should be combined
586 void wxScrolledWindow::GtkVScroll( float value
, unsigned int scroll_type
)
588 wxASSERT_MSG( m_targetWindow
!= 0, _T("No target window") );
590 if (m_yScrollPixelsPerLine
== 0)
593 int y_pos
= (int)(value
+0.5);
595 if (y_pos
== m_yScrollPosition
)
598 wxEventType command
= GtkScrollWinTypeToWx(scroll_type
);
600 wxScrollWinEvent
event( command
, y_pos
, wxVERTICAL
);
601 event
.SetEventObject( this );
602 GetEventHandler()->ProcessEvent( event
);
605 void wxScrolledWindow::GtkHScroll( float value
, unsigned int scroll_type
)
607 wxASSERT_MSG( m_targetWindow
!= 0, _T("No target window") );
609 if (m_xScrollPixelsPerLine
== 0)
612 int x_pos
= (int)(value
+0.5);
614 if (x_pos
== m_xScrollPosition
)
617 wxEventType command
= GtkScrollWinTypeToWx(scroll_type
);
619 wxScrollWinEvent
event( command
, x_pos
, wxHORIZONTAL
);
620 event
.SetEventObject( this );
621 GetEventHandler()->ProcessEvent( event
);
624 void wxScrolledWindow::EnableScrolling (bool x_scroll
, bool y_scroll
)
626 m_xScrollingEnabled
= x_scroll
;
627 m_yScrollingEnabled
= y_scroll
;
630 // Where the current view starts from
631 void wxScrolledWindow::GetViewStart (int *x
, int *y
) const
634 *x
= m_xScrollPosition
;
636 *y
= m_yScrollPosition
;
639 void wxScrolledWindow::DoCalcScrolledPosition(int x
, int y
, int *xx
, int *yy
) const
642 *xx
= x
- m_xScrollPosition
* m_xScrollPixelsPerLine
;
644 *yy
= y
- m_yScrollPosition
* m_yScrollPixelsPerLine
;
647 void wxScrolledWindow::DoCalcUnscrolledPosition(int x
, int y
, int *xx
, int *yy
) const
650 *xx
= x
+ m_xScrollPosition
* m_xScrollPixelsPerLine
;
652 *yy
= y
+ m_yScrollPosition
* m_yScrollPixelsPerLine
;
655 int wxScrolledWindow::CalcScrollInc(wxScrollWinEvent
& event
)
657 int pos
= event
.GetPosition();
658 int orient
= event
.GetOrientation();
661 if (event
.GetEventType() == wxEVT_SCROLLWIN_TOP
)
663 if (orient
== wxHORIZONTAL
)
664 nScrollInc
= - m_xScrollPosition
;
666 nScrollInc
= - m_yScrollPosition
;
668 if (event
.GetEventType() == wxEVT_SCROLLWIN_BOTTOM
)
670 if (orient
== wxHORIZONTAL
)
671 nScrollInc
= GetVirtualSize().GetWidth() / m_xScrollPixelsPerLine
- m_xScrollPosition
;
673 nScrollInc
= GetVirtualSize().GetHeight() / m_yScrollPixelsPerLine
- m_yScrollPosition
;
675 if (event
.GetEventType() == wxEVT_SCROLLWIN_LINEUP
)
679 if (event
.GetEventType() == wxEVT_SCROLLWIN_LINEDOWN
)
683 if (event
.GetEventType() == wxEVT_SCROLLWIN_PAGEUP
)
685 if (orient
== wxHORIZONTAL
)
686 nScrollInc
= -GetScrollPageSize(wxHORIZONTAL
);
688 nScrollInc
= -GetScrollPageSize(wxVERTICAL
);
690 if (event
.GetEventType() == wxEVT_SCROLLWIN_PAGEDOWN
)
692 if (orient
== wxHORIZONTAL
)
693 nScrollInc
= GetScrollPageSize(wxHORIZONTAL
);
695 nScrollInc
= GetScrollPageSize(wxVERTICAL
);
697 if ((event
.GetEventType() == wxEVT_SCROLLWIN_THUMBTRACK
) ||
698 (event
.GetEventType() == wxEVT_SCROLLWIN_THUMBRELEASE
))
700 if (orient
== wxHORIZONTAL
)
701 nScrollInc
= pos
- m_xScrollPosition
;
703 nScrollInc
= pos
- m_yScrollPosition
;
706 if (orient
== wxHORIZONTAL
)
708 if (m_xScrollPixelsPerLine
> 0)
710 int max
= (int)(m_hAdjust
->upper
- m_hAdjust
->page_size
+ 0.5);
711 if (max
< 0) max
= 0;
713 if ( (m_xScrollPosition
+ nScrollInc
) < 0 )
714 nScrollInc
= -m_xScrollPosition
; // As -ve as we can go
715 else if ( (m_xScrollPosition
+ nScrollInc
) > max
)
716 nScrollInc
= max
- m_xScrollPosition
; // As +ve as we can go
719 m_targetWindow
->Refresh();
723 if (m_yScrollPixelsPerLine
> 0)
725 int max
= (int)(m_vAdjust
->upper
- m_vAdjust
->page_size
+ 0.5);
726 if (max
< 0) max
= 0;
728 if ( (m_yScrollPosition
+ nScrollInc
) < 0 )
729 nScrollInc
= -m_yScrollPosition
; // As -ve as we can go
730 else if ( (m_yScrollPosition
+ nScrollInc
) > max
)
731 nScrollInc
= max
- m_yScrollPosition
; // As +ve as we can go
734 m_targetWindow
->Refresh();
740 void wxScrolledWindow::SetScrollPos( int orient
, int pos
, bool refresh
)
742 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
744 wxCHECK_RET( m_wxwindow
!= NULL
, wxT("window needs client area for scrolling") );
746 if (orient
== wxHORIZONTAL
)
748 int max
= (int)(m_hAdjust
->upper
- m_hAdjust
->page_size
+ 0.5);
749 if (max
< 0) max
= 0;
751 if (pos
> max
) pos
= 0;
752 if (pos
< 0) pos
= 0;
754 if (pos
== (int)(m_hAdjust
->value
+0.5)) return;
755 m_hAdjust
->value
= pos
;
759 int max
= (int)(m_vAdjust
->upper
- m_vAdjust
->page_size
+ 0.5);
760 if (max
< 0) max
= 0;
762 if (pos
> max
) pos
= 0;
763 if (pos
< 0) pos
= 0;
765 if (pos
== (int)(m_vAdjust
->value
+0.5)) return;
766 m_vAdjust
->value
= pos
;
769 if (m_wxwindow
->window
)
771 if (orient
== wxHORIZONTAL
)
773 // Just update the scrollbar, don't send any wxWindows event
774 GtkHDisconnectEvent();
775 gtk_signal_emit_by_name( GTK_OBJECT(m_hAdjust
), "value_changed" );
780 // Just update the scrollbar, don't send any wxWindows event
781 GtkVDisconnectEvent();
782 gtk_signal_emit_by_name( GTK_OBJECT(m_vAdjust
), "value_changed" );
788 void wxScrolledWindow::GtkVConnectEvent()
790 gtk_signal_connect( GTK_OBJECT(m_vAdjust
), "value_changed",
791 (GtkSignalFunc
) gtk_scrolled_window_vscroll_callback
, (gpointer
) this );
794 void wxScrolledWindow::GtkHConnectEvent()
796 gtk_signal_connect( GTK_OBJECT(m_hAdjust
), "value_changed",
797 (GtkSignalFunc
) gtk_scrolled_window_hscroll_callback
, (gpointer
) this );
800 void wxScrolledWindow::GtkHDisconnectEvent()
802 gtk_signal_disconnect_by_func( GTK_OBJECT(m_hAdjust
),
803 (GtkSignalFunc
) gtk_scrolled_window_hscroll_callback
, (gpointer
) this );
806 void wxScrolledWindow::GtkVDisconnectEvent()
808 gtk_signal_disconnect_by_func( GTK_OBJECT(m_vAdjust
),
809 (GtkSignalFunc
) gtk_scrolled_window_vscroll_callback
, (gpointer
) this );
812 bool wxScrolledWindow::Layout()
814 if (GetSizer() && m_targetWindow
== this)
816 // If we're the scroll target, take into account the
817 // virtual size and scrolled position of the window.
820 CalcScrolledPosition(0,0, &x
,&y
);
821 GetVirtualSize(&w
, &h
);
822 GetSizer()->SetDimension(x
, y
, w
, h
);
826 return wxPanel::Layout(); // fall back to default for LayoutConstraints
829 // ----------------------------------------------------------------------------
831 // ----------------------------------------------------------------------------
833 // Default OnSize resets scrollbars, if any
834 void wxScrolledWindow::OnSize(wxSizeEvent
& WXUNUSED(event
))
836 if( GetAutoLayout() || m_targetWindow
->GetAutoLayout() )
838 if( m_targetWindow
!= this )
839 m_targetWindow
->FitInside();
843 // FIXME: Something is really weird here... This should be
844 // called by FitInside above (and apparently is), yet the
845 // scrollsub sample will get the scrollbar wrong if resized
846 // quickly. This masks the bug, but is surely not the right
856 // This calls OnDraw, having adjusted the origin according to the current
858 void wxScrolledWindow::OnPaint(wxPaintEvent
& WXUNUSED(event
))
866 // kbd handling: notice that we use OnChar() and not OnKeyDown() for
867 // compatibility here - if we used OnKeyDown(), the programs which process
868 // arrows themselves in their OnChar() would never get the message and like
869 // this they always have the priority
870 void wxScrolledWindow::OnChar(wxKeyEvent
& event
)
872 int stx
, sty
, // view origin
873 szx
, szy
, // view size (total)
874 clix
, cliy
; // view size (on screen)
876 GetViewStart(&stx
, &sty
);
877 GetClientSize(&clix
, &cliy
);
878 GetVirtualSize(&szx
, &szy
);
880 if( m_xScrollPixelsPerLine
)
882 clix
/= m_xScrollPixelsPerLine
;
883 szx
/= m_xScrollPixelsPerLine
;
890 if( m_yScrollPixelsPerLine
)
892 cliy
/= m_yScrollPixelsPerLine
;
893 szy
/= m_yScrollPixelsPerLine
;
901 int xScrollOld
= GetScrollPos(wxHORIZONTAL
),
902 yScrollOld
= GetScrollPos(wxVERTICAL
);
905 switch ( event
.GetKeyCode() )
909 dsty
= sty
- (5 * cliy
/ 6);
910 Scroll(-1, (dsty
== -1) ? 0 : dsty
);
915 Scroll(-1, sty
+ (5 * cliy
/ 6));
919 Scroll(0, event
.ControlDown() ? 0 : -1);
923 Scroll(szx
- clix
, event
.ControlDown() ? szy
- cliy
: -1);
948 int xScroll
= GetScrollPos(wxHORIZONTAL
);
949 if ( xScroll
!= xScrollOld
)
951 wxScrollWinEvent
event(wxEVT_SCROLLWIN_THUMBTRACK
, xScroll
,
953 event
.SetEventObject(this);
954 GetEventHandler()->ProcessEvent(event
);
957 int yScroll
= GetScrollPos(wxVERTICAL
);
958 if ( yScroll
!= yScrollOld
)
960 wxScrollWinEvent
event(wxEVT_SCROLLWIN_THUMBTRACK
, yScroll
,
962 event
.SetEventObject(this);
963 GetEventHandler()->ProcessEvent(event
);