]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/scrolwin.cpp
added wxUSE_INTL around wxLocale::GetSystemEncoding
[wxWidgets.git] / src / gtk / scrolwin.cpp
CommitLineData
30954328
RR
1/////////////////////////////////////////////////////////////////////////////
2// Name: generic/scrolwin.cpp
3// Purpose: wxScrolledWindow implementation
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20#ifdef __GNUG__
21 #pragma implementation "scrolwin.h"
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
28 #pragma hdrstop
29#endif
30
31#include "wx/utils.h"
32#include "wx/dcclient.h"
33
34#include "wx/gtk/scrolwin.h"
35#include "wx/panel.h"
36
37#include <gtk/gtk.h>
38#include "wx/gtk/win_gtk.h"
39
40// ----------------------------------------------------------------------------
41// event tables
42// ----------------------------------------------------------------------------
43
44BEGIN_EVENT_TABLE(wxScrolledWindow, wxPanel)
d9a4f620 45 EVT_SCROLLWIN(wxScrolledWindow::OnScroll)
30954328
RR
46 EVT_SIZE(wxScrolledWindow::OnSize)
47 EVT_PAINT(wxScrolledWindow::OnPaint)
48 EVT_CHAR(wxScrolledWindow::OnChar)
49END_EVENT_TABLE()
50
51IMPLEMENT_DYNAMIC_CLASS(wxScrolledWindow, wxPanel)
52
53// ============================================================================
54// implementation
55// ============================================================================
56
57//-----------------------------------------------------------------------------
58// data
59//-----------------------------------------------------------------------------
60
61extern bool g_blockEventsOnDrag;
62
63//-----------------------------------------------------------------------------
64// idle system
65//-----------------------------------------------------------------------------
66
67extern void wxapp_install_idle_handler();
68extern bool g_isIdle;
69
70//-----------------------------------------------------------------------------
71// "value_changed" from m_vAdjust
72//-----------------------------------------------------------------------------
73
74static void gtk_scrolled_window_vscroll_callback( GtkAdjustment *adjust, wxScrolledWindow *win )
75{
76 if (g_isIdle)
77 wxapp_install_idle_handler();
78
79 if (g_blockEventsOnDrag) return;
80
81 if (!win->m_hasVMT) return;
82
83 win->GtkVScroll( adjust->value );
84}
85
86//-----------------------------------------------------------------------------
87// "value_changed" from m_hAdjust
88//-----------------------------------------------------------------------------
89
90static void gtk_scrolled_window_hscroll_callback( GtkAdjustment *adjust, wxScrolledWindow *win )
91{
92 if (g_isIdle)
93 wxapp_install_idle_handler();
94
95 if (g_blockEventsOnDrag) return;
96 if (!win->m_hasVMT) return;
97
98 win->GtkHScroll( adjust->value );
99}
100
101//-----------------------------------------------------------------------------
102// InsertChild for wxScrolledWindow
103//-----------------------------------------------------------------------------
104
105static void wxInsertChildInScrolledWindow( wxWindow* parent, wxWindow* child )
106{
830ed6d9
RR
107 // The window might have been scrolled already, do we
108 // have to adapt the position.
30954328
RR
109 GtkPizza *pizza = GTK_PIZZA(parent->m_wxwindow);
110 child->m_x += pizza->xoffset;
111 child->m_y += pizza->yoffset;
112
113 gtk_pizza_put( GTK_PIZZA(parent->m_wxwindow),
114 GTK_WIDGET(child->m_widget),
115 child->m_x,
116 child->m_y,
117 child->m_width,
118 child->m_height );
119}
120
121// ----------------------------------------------------------------------------
122// wxScrolledWindow creation
123// ----------------------------------------------------------------------------
124
830ed6d9 125void wxScrolledWindow::Init()
30954328
RR
126{
127 m_xScrollPixelsPerLine = 0;
128 m_yScrollPixelsPerLine = 0;
129 m_xScrollingEnabled = TRUE;
130 m_yScrollingEnabled = TRUE;
131 m_xScrollPosition = 0;
132 m_yScrollPosition = 0;
133 m_xScrollLines = 0;
134 m_yScrollLines = 0;
135 m_xScrollLinesPerPage = 0;
136 m_yScrollLinesPerPage = 0;
137 m_targetWindow = (wxWindow*) NULL;
d9a4f620
RR
138 m_scaleX = 1.0;
139 m_scaleY = 1.0;
30954328
RR
140}
141
142bool wxScrolledWindow::Create(wxWindow *parent,
143 wxWindowID id,
144 const wxPoint& pos,
145 const wxSize& size,
146 long style,
147 const wxString& name)
148{
830ed6d9
RR
149 Init();
150
30954328
RR
151 if (!PreCreation( parent, pos, size ) ||
152 !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
153 {
154 wxFAIL_MSG( wxT("wxWindow creation failed") );
155 return FALSE;
156 }
157
158 m_insertCallback = wxInsertChildInScrolledWindow;
159
30954328
RR
160 m_targetWindow = this;
161
162 m_widget = gtk_scrolled_window_new( (GtkAdjustment *) NULL, (GtkAdjustment *) NULL );
163 GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS );
164
165 GtkScrolledWindow *scrolledWindow = GTK_SCROLLED_WINDOW(m_widget);
166
167 GtkScrolledWindowClass *scroll_class = GTK_SCROLLED_WINDOW_CLASS( GTK_OBJECT_GET_CLASS(m_widget) );
168 scroll_class->scrollbar_spacing = 0;
169
170 gtk_scrolled_window_set_policy( scrolledWindow, GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC );
171
172 m_hAdjust = gtk_range_get_adjustment( GTK_RANGE(scrolledWindow->hscrollbar) );
173 m_vAdjust = gtk_range_get_adjustment( GTK_RANGE(scrolledWindow->vscrollbar) );
174
175 m_wxwindow = gtk_pizza_new();
176
177 gtk_container_add( GTK_CONTAINER(m_widget), m_wxwindow );
178
179 GtkPizza *pizza = GTK_PIZZA(m_wxwindow);
180
181 if (HasFlag(wxRAISED_BORDER))
182 {
183 gtk_pizza_set_shadow_type( pizza, GTK_MYSHADOW_OUT );
184 }
185 else if (HasFlag(wxSUNKEN_BORDER))
186 {
187 gtk_pizza_set_shadow_type( pizza, GTK_MYSHADOW_IN );
188 }
189 else if (HasFlag(wxSIMPLE_BORDER))
190 {
191 gtk_pizza_set_shadow_type( pizza, GTK_MYSHADOW_THIN );
192 }
193 else
194 {
195 gtk_pizza_set_shadow_type( pizza, GTK_MYSHADOW_NONE );
196 }
197
198 GTK_WIDGET_SET_FLAGS( m_wxwindow, GTK_CAN_FOCUS );
199 m_acceptsFocus = TRUE;
200
201 // I _really_ don't want scrollbars in the beginning
202 m_vAdjust->lower = 0.0;
203 m_vAdjust->upper = 1.0;
204 m_vAdjust->value = 0.0;
205 m_vAdjust->step_increment = 1.0;
206 m_vAdjust->page_increment = 1.0;
207 gtk_signal_emit_by_name( GTK_OBJECT(m_vAdjust), "changed" );
208 m_hAdjust->lower = 0.0;
209 m_hAdjust->upper = 1.0;
210 m_hAdjust->value = 0.0;
211 m_hAdjust->step_increment = 1.0;
212 m_hAdjust->page_increment = 1.0;
213 gtk_signal_emit_by_name( GTK_OBJECT(m_hAdjust), "changed" );
214
830ed6d9
RR
215 // Handlers for new scrollbar values
216 GtkVConnectEvent();
217 GtkHConnectEvent();
30954328
RR
218
219 gtk_widget_show( m_wxwindow );
220
221 if (m_parent)
222 m_parent->DoAddChild( this );
223
224 PostCreation();
225
226 Show( TRUE );
227
228 return TRUE;
229}
230
30954328
RR
231// ----------------------------------------------------------------------------
232// setting scrolling parameters
233// ----------------------------------------------------------------------------
234
235/*
236 * pixelsPerUnitX/pixelsPerUnitY: number of pixels per unit (e.g. pixels per text line)
237 * noUnitsX/noUnitsY: : no. units per scrollbar
238 */
239void wxScrolledWindow::SetScrollbars (int pixelsPerUnitX, int pixelsPerUnitY,
240 int noUnitsX, int noUnitsY,
241 int xPos, int yPos, bool noRefresh )
242{
243 m_xScrollPixelsPerLine = pixelsPerUnitX;
244 m_yScrollPixelsPerLine = pixelsPerUnitY;
245 m_xScrollPosition = xPos;
246 m_yScrollPosition = yPos;
247 m_xScrollLines = noUnitsX;
248 m_yScrollLines = noUnitsY;
249
250 m_hAdjust->lower = 0.0;
251 m_hAdjust->upper = noUnitsX;
252 m_hAdjust->value = xPos;
253 m_hAdjust->step_increment = 1.0;
0bc0cd5d 254 m_hAdjust->page_increment = 2.0;
30954328
RR
255
256 m_vAdjust->lower = 0.0;
257 m_vAdjust->upper = noUnitsY;
258 m_vAdjust->value = yPos;
259 m_vAdjust->step_increment = 1.0;
0bc0cd5d 260 m_vAdjust->page_increment = 2.0;
30954328
RR
261
262 AdjustScrollbars();
263}
264
265void wxScrolledWindow::AdjustScrollbars()
266{
267 int w, h;
268 m_targetWindow->GetClientSize( &w, &h );
269
270 if (m_xScrollPixelsPerLine == 0)
271 m_hAdjust->page_size = 1.0;
272 else
273 m_hAdjust->page_size = (w / m_xScrollPixelsPerLine);
274
275 if (m_yScrollPixelsPerLine == 0)
276 m_vAdjust->page_size = 1.0;
277 else
278 m_vAdjust->page_size = (h / m_yScrollPixelsPerLine);
279
0bc0cd5d
RR
280 m_xScrollLinesPerPage = (int)(m_hAdjust->page_size + 0.5);
281 m_yScrollLinesPerPage = (int)(m_vAdjust->page_size + 0.5);
282
30954328
RR
283 gtk_signal_emit_by_name( GTK_OBJECT(m_vAdjust), "changed" );
284 gtk_signal_emit_by_name( GTK_OBJECT(m_hAdjust), "changed" );
285}
286
287// ----------------------------------------------------------------------------
288// target window handling
289// ----------------------------------------------------------------------------
290
291void wxScrolledWindow::SetTargetWindow( wxWindow *target )
292{
293 wxASSERT_MSG( target, wxT("target window must not be NULL") );
294 m_targetWindow = target;
295}
296
297wxWindow *wxScrolledWindow::GetTargetWindow()
298{
299 return m_targetWindow;
300}
301
302// Override this function if you don't want to have wxScrolledWindow
303// automatically change the origin according to the scroll position.
304void wxScrolledWindow::PrepareDC(wxDC& dc)
305{
306 dc.SetDeviceOrigin( -m_xScrollPosition * m_xScrollPixelsPerLine,
307 -m_yScrollPosition * m_yScrollPixelsPerLine );
308}
309
310void wxScrolledWindow::GetScrollPixelsPerUnit (int *x_unit, int *y_unit) const
311{
312 if ( x_unit )
313 *x_unit = m_xScrollPixelsPerLine;
314 if ( y_unit )
315 *y_unit = m_yScrollPixelsPerLine;
316}
317
318int wxScrolledWindow::GetScrollPageSize(int orient) const
319{
320 if ( orient == wxHORIZONTAL )
321 return m_xScrollLinesPerPage;
322 else
323 return m_yScrollLinesPerPage;
324}
325
326void wxScrolledWindow::SetScrollPageSize(int orient, int pageSize)
327{
328 if ( orient == wxHORIZONTAL )
329 m_xScrollLinesPerPage = pageSize;
330 else
331 m_yScrollLinesPerPage = pageSize;
332}
333
d9a4f620
RR
334void wxScrolledWindow::OnScroll(wxScrollWinEvent& event)
335{
336 int orient = event.GetOrientation();
0bc0cd5d 337
d9a4f620
RR
338 int nScrollInc = CalcScrollInc(event);
339 if (nScrollInc == 0) return;
340
341 if (orient == wxHORIZONTAL)
342 {
343 int newPos = m_xScrollPosition + nScrollInc;
344 SetScrollPos(wxHORIZONTAL, newPos, TRUE );
345 }
346 else
347 {
348 int newPos = m_yScrollPosition + nScrollInc;
349 SetScrollPos(wxVERTICAL, newPos, TRUE );
350 }
351
352 if (orient == wxHORIZONTAL)
353 {
354 m_xScrollPosition += nScrollInc;
355 }
356 else
357 {
358 m_yScrollPosition += nScrollInc;
359 }
360
361 if (orient == wxHORIZONTAL)
362 {
363 if (m_xScrollingEnabled)
364 m_targetWindow->ScrollWindow(-m_xScrollPixelsPerLine * nScrollInc, 0, (const wxRect *) NULL);
365 else
366 m_targetWindow->Refresh();
367 }
368 else
369 {
370 if (m_yScrollingEnabled)
371 m_targetWindow->ScrollWindow(0, -m_yScrollPixelsPerLine * nScrollInc, (const wxRect *) NULL);
372 else
373 m_targetWindow->Refresh();
374 }
375}
376
30954328
RR
377void wxScrolledWindow::Scroll( int x_pos, int y_pos )
378{
379 if (!m_targetWindow)
380 return;
381
382 if (((x_pos == -1) || (x_pos == m_xScrollPosition)) &&
383 ((y_pos == -1) || (y_pos == m_yScrollPosition))) return;
384
30954328
RR
385 if ((x_pos != -1) && (m_xScrollPixelsPerLine))
386 {
830ed6d9
RR
387 int max = (int)(m_hAdjust->upper - m_hAdjust->page_size + 0.5);
388 if (max < 0) max = 0;
389 if (x_pos > max) x_pos = max;
390 if (x_pos < 0) x_pos = 0;
391
30954328
RR
392 int old_x = m_xScrollPosition;
393 m_xScrollPosition = x_pos;
aafe4488
RR
394 m_hAdjust->value = x_pos;
395
396 m_targetWindow->ScrollWindow( (old_x-m_xScrollPosition)*m_xScrollPixelsPerLine, 0 );
397
830ed6d9
RR
398 // Just update the scrollbar, don't send any wxWindows event
399 GtkHDisconnectEvent();
aafe4488 400 gtk_signal_emit_by_name( GTK_OBJECT(m_hAdjust), "value_changed" );
830ed6d9 401 GtkHConnectEvent();
30954328 402 }
aafe4488 403
30954328
RR
404 if ((y_pos != -1) && (m_yScrollPixelsPerLine))
405 {
830ed6d9
RR
406 int max = (int)(m_vAdjust->upper - m_vAdjust->page_size + 0.5);
407 if (max < 0) max = 0;
408 if (y_pos > max) y_pos = max;
409 if (y_pos < 0) y_pos = 0;
410
30954328
RR
411 int old_y = m_yScrollPosition;
412 m_yScrollPosition = y_pos;
aafe4488 413 m_vAdjust->value = y_pos;
30954328 414
aafe4488
RR
415 m_targetWindow->ScrollWindow( 0, (old_y-m_yScrollPosition)*m_yScrollPixelsPerLine );
416
830ed6d9
RR
417 // Just update the scrollbar, don't send any wxWindows event
418 GtkVDisconnectEvent();
aafe4488 419 gtk_signal_emit_by_name( GTK_OBJECT(m_vAdjust), "value_changed" );
830ed6d9 420 GtkVConnectEvent();
30954328
RR
421 }
422}
423
424void wxScrolledWindow::GtkVScroll( float value )
425{
aafe4488
RR
426 if (!m_targetWindow)
427 return;
428
429 if (m_yScrollPixelsPerLine == 0)
430 return;
431
432 int y_pos = (int)(value+0.5);
433
434 if (y_pos == m_yScrollPosition)
435 return;
436
d9a4f620 437 GtkScrolledWindow *scrolledWindow = GTK_SCROLLED_WINDOW(m_widget);
0bc0cd5d 438 GtkRange *range = GTK_RANGE(scrolledWindow->vscrollbar);
d9a4f620
RR
439
440 wxEventType command = wxEVT_SCROLLWIN_THUMBTRACK;
441 if (range->scroll_type == GTK_SCROLL_STEP_BACKWARD) command = wxEVT_SCROLLWIN_LINEUP;
442 else if (range->scroll_type == GTK_SCROLL_STEP_FORWARD) command = wxEVT_SCROLLWIN_LINEDOWN;
443 else if (range->scroll_type == GTK_SCROLL_PAGE_BACKWARD) command = wxEVT_SCROLLWIN_PAGEUP;
444 else if (range->scroll_type == GTK_SCROLL_PAGE_FORWARD) command = wxEVT_SCROLLWIN_PAGEDOWN;
445
0bc0cd5d 446 wxScrollWinEvent event( command, y_pos, wxVERTICAL );
d9a4f620
RR
447 event.SetEventObject( this );
448 GetEventHandler()->ProcessEvent( event );
30954328
RR
449}
450
451void wxScrolledWindow::GtkHScroll( float value )
452{
aafe4488
RR
453 if (!m_targetWindow)
454 return;
0bc0cd5d 455
aafe4488
RR
456 if (m_xScrollPixelsPerLine == 0)
457 return;
458
459 int x_pos = (int)(value+0.5);
0bc0cd5d 460
aafe4488
RR
461 if (x_pos == m_xScrollPosition)
462 return;
aafe4488 463
d9a4f620
RR
464 GtkScrolledWindow *scrolledWindow = GTK_SCROLLED_WINDOW(m_widget);
465 GtkRange *range = GTK_RANGE(scrolledWindow->hscrollbar);
466
467 wxEventType command = wxEVT_SCROLLWIN_THUMBTRACK;
468 if (range->scroll_type == GTK_SCROLL_STEP_BACKWARD) command = wxEVT_SCROLLWIN_LINEUP;
469 else if (range->scroll_type == GTK_SCROLL_STEP_FORWARD) command = wxEVT_SCROLLWIN_LINEDOWN;
470 else if (range->scroll_type == GTK_SCROLL_PAGE_BACKWARD) command = wxEVT_SCROLLWIN_PAGEUP;
471 else if (range->scroll_type == GTK_SCROLL_PAGE_FORWARD) command = wxEVT_SCROLLWIN_PAGEDOWN;
472
0bc0cd5d 473 wxScrollWinEvent event( command, x_pos, wxHORIZONTAL );
d9a4f620
RR
474 event.SetEventObject( this );
475 GetEventHandler()->ProcessEvent( event );
30954328
RR
476}
477
478void wxScrolledWindow::EnableScrolling (bool x_scroll, bool y_scroll)
479{
480 m_xScrollingEnabled = x_scroll;
481 m_yScrollingEnabled = y_scroll;
482}
483
484void wxScrolledWindow::GetVirtualSize (int *x, int *y) const
485{
486 if ( x )
487 *x = m_xScrollPixelsPerLine * m_xScrollLines;
488 if ( y )
489 *y = m_yScrollPixelsPerLine * m_yScrollLines;
490}
491
492// Where the current view starts from
493void wxScrolledWindow::GetViewStart (int *x, int *y) const
494{
495 if ( x )
496 *x = m_xScrollPosition;
497 if ( y )
498 *y = m_yScrollPosition;
499}
500
501void wxScrolledWindow::CalcScrolledPosition(int x, int y, int *xx, int *yy) const
502{
503 if ( xx )
504 *xx = x - m_xScrollPosition * m_xScrollPixelsPerLine;
505 if ( yy )
506 *yy = y - m_yScrollPosition * m_yScrollPixelsPerLine;
507}
508
509void wxScrolledWindow::CalcUnscrolledPosition(int x, int y, int *xx, int *yy) const
510{
511 if ( xx )
512 *xx = x + m_xScrollPosition * m_xScrollPixelsPerLine;
513 if ( yy )
514 *yy = y + m_yScrollPosition * m_yScrollPixelsPerLine;
515}
516
d9a4f620
RR
517int wxScrolledWindow::CalcScrollInc(wxScrollWinEvent& event)
518{
519 int pos = event.GetPosition();
520 int orient = event.GetOrientation();
521
522 int nScrollInc = 0;
523 if (event.GetEventType() == wxEVT_SCROLLWIN_TOP)
524 {
525 if (orient == wxHORIZONTAL)
526 nScrollInc = - m_xScrollPosition;
527 else
528 nScrollInc = - m_yScrollPosition;
529 } else
530 if (event.GetEventType() == wxEVT_SCROLLWIN_BOTTOM)
531 {
532 if (orient == wxHORIZONTAL)
533 nScrollInc = m_xScrollLines - m_xScrollPosition;
534 else
535 nScrollInc = m_yScrollLines - m_yScrollPosition;
536 } else
537 if (event.GetEventType() == wxEVT_SCROLLWIN_LINEUP)
538 {
539 nScrollInc = -1;
540 } else
541 if (event.GetEventType() == wxEVT_SCROLLWIN_LINEDOWN)
542 {
543 nScrollInc = 1;
544 } else
545 if (event.GetEventType() == wxEVT_SCROLLWIN_PAGEUP)
546 {
547 if (orient == wxHORIZONTAL)
548 nScrollInc = -GetScrollPageSize(wxHORIZONTAL);
549 else
550 nScrollInc = -GetScrollPageSize(wxVERTICAL);
551 } else
552 if (event.GetEventType() == wxEVT_SCROLLWIN_PAGEDOWN)
553 {
554 if (orient == wxHORIZONTAL)
555 nScrollInc = GetScrollPageSize(wxHORIZONTAL);
556 else
557 nScrollInc = GetScrollPageSize(wxVERTICAL);
558 } else
559 if ((event.GetEventType() == wxEVT_SCROLLWIN_THUMBTRACK) ||
560 (event.GetEventType() == wxEVT_SCROLLWIN_THUMBRELEASE))
561 {
562 if (orient == wxHORIZONTAL)
563 nScrollInc = pos - m_xScrollPosition;
564 else
565 nScrollInc = pos - m_yScrollPosition;
566 }
567
568 if (orient == wxHORIZONTAL)
569 {
570 if (m_xScrollPixelsPerLine > 0)
571 {
830ed6d9
RR
572 int max = (int)(m_hAdjust->upper - m_hAdjust->page_size + 0.5);
573 if (max < 0) max = 0;
d9a4f620
RR
574
575 if ( (m_xScrollPosition + nScrollInc) < 0 )
576 nScrollInc = -m_xScrollPosition; // As -ve as we can go
830ed6d9
RR
577 else if ( (m_xScrollPosition + nScrollInc) > max )
578 nScrollInc = max - m_xScrollPosition; // As +ve as we can go
d9a4f620
RR
579 }
580 else
581 m_targetWindow->Refresh();
582 }
583 else
584 {
585 if (m_yScrollPixelsPerLine > 0)
586 {
830ed6d9
RR
587 int max = (int)(m_vAdjust->upper - m_vAdjust->page_size + 0.5);
588 if (max < 0) max = 0;
d9a4f620
RR
589
590 if ( (m_yScrollPosition + nScrollInc) < 0 )
591 nScrollInc = -m_yScrollPosition; // As -ve as we can go
830ed6d9
RR
592 else if ( (m_yScrollPosition + nScrollInc) > max )
593 nScrollInc = max - m_yScrollPosition; // As +ve as we can go
d9a4f620
RR
594 }
595 else
596 m_targetWindow->Refresh();
597 }
598
599 return nScrollInc;
600}
601
0bc0cd5d
RR
602void wxScrolledWindow::SetScrollPos( int orient, int pos, bool WXUNUSED(refresh) )
603{
604 wxCHECK_RET( m_widget != NULL, wxT("invalid window") );
605
606 wxCHECK_RET( m_wxwindow != NULL, wxT("window needs client area for scrolling") );
607
608 if (orient == wxHORIZONTAL)
609 {
830ed6d9
RR
610 int max = (int)(m_hAdjust->upper - m_hAdjust->page_size + 0.5);
611 if (max < 0) max = 0;
612
613 if (pos > max) pos = 0;
614 if (pos < 0) pos = 0;
615
616 if (pos == (int)(m_hAdjust->value+0.5)) return;
617 m_hAdjust->value = pos;
0bc0cd5d
RR
618 }
619 else
620 {
830ed6d9
RR
621 int max = (int)(m_vAdjust->upper - m_vAdjust->page_size + 0.5);
622 if (max < 0) max = 0;
623
624 if (pos > max) pos = 0;
625 if (pos < 0) pos = 0;
626
627 if (pos == (int)(m_vAdjust->value+0.5)) return;
628 m_vAdjust->value = pos;
0bc0cd5d
RR
629 }
630
631 if (m_wxwindow->window)
632 {
633 if (orient == wxHORIZONTAL)
634 {
830ed6d9
RR
635 // Just update the scrollbar, don't send any wxWindows event
636 GtkHDisconnectEvent();
0bc0cd5d 637 gtk_signal_emit_by_name( GTK_OBJECT(m_hAdjust), "value_changed" );
830ed6d9 638 GtkHConnectEvent();
0bc0cd5d
RR
639 }
640 else
641 {
830ed6d9
RR
642 // Just update the scrollbar, don't send any wxWindows event
643 GtkVDisconnectEvent();
0bc0cd5d 644 gtk_signal_emit_by_name( GTK_OBJECT(m_vAdjust), "value_changed" );
830ed6d9 645 GtkVConnectEvent();
0bc0cd5d
RR
646 }
647 }
648}
649
830ed6d9
RR
650void wxScrolledWindow::GtkVConnectEvent()
651{
652 gtk_signal_connect( GTK_OBJECT(m_vAdjust), "value_changed",
653 (GtkSignalFunc) gtk_scrolled_window_vscroll_callback, (gpointer) this );
654}
655
656void wxScrolledWindow::GtkHConnectEvent()
657{
658 gtk_signal_connect( GTK_OBJECT(m_hAdjust), "value_changed",
659 (GtkSignalFunc) gtk_scrolled_window_hscroll_callback, (gpointer) this );
660}
661
662void wxScrolledWindow::GtkHDisconnectEvent()
663{
664 gtk_signal_disconnect_by_func( GTK_OBJECT(m_hAdjust),
665 (GtkSignalFunc) gtk_scrolled_window_hscroll_callback, (gpointer) this );
666}
667
668void wxScrolledWindow::GtkVDisconnectEvent()
669{
670 gtk_signal_disconnect_by_func( GTK_OBJECT(m_vAdjust),
671 (GtkSignalFunc) gtk_scrolled_window_vscroll_callback, (gpointer) this );
672}
673
30954328
RR
674// ----------------------------------------------------------------------------
675// event handlers
676// ----------------------------------------------------------------------------
677
678// Default OnSize resets scrollbars, if any
679void wxScrolledWindow::OnSize(wxSizeEvent& WXUNUSED(event))
680{
681#if wxUSE_CONSTRAINTS
682 if (GetAutoLayout())
683 Layout();
684#endif
685
686 AdjustScrollbars();
687}
688
689// This calls OnDraw, having adjusted the origin according to the current
690// scroll position
691void wxScrolledWindow::OnPaint(wxPaintEvent& WXUNUSED(event))
692{
693 wxPaintDC dc(this);
694 PrepareDC(dc);
695
696 OnDraw(dc);
697}
698
699// kbd handling: notice that we use OnChar() and not OnKeyDown() for
700// compatibility here - if we used OnKeyDown(), the programs which process
701// arrows themselves in their OnChar() would never get the message and like
702// this they always have the priority
703void wxScrolledWindow::OnChar(wxKeyEvent& event)
704{
705 int stx, sty, // view origin
706 szx, szy, // view size (total)
707 clix, cliy; // view size (on screen)
708
709 ViewStart(&stx, &sty);
710 GetClientSize(&clix, &cliy);
711 GetVirtualSize(&szx, &szy);
712
713 if( m_xScrollPixelsPerLine )
714 {
715 clix /= m_xScrollPixelsPerLine;
716 szx /= m_xScrollPixelsPerLine;
717 }
718 else
719 {
720 clix = 0;
721 szx = -1;
722 }
723 if( m_yScrollPixelsPerLine )
724 {
725 cliy /= m_yScrollPixelsPerLine;
726 szy /= m_yScrollPixelsPerLine;
727 }
728 else
729 {
730 cliy = 0;
731 szy = -1;
732 }
733
734 int dsty;
735 switch ( event.KeyCode() )
736 {
737 case WXK_PAGEUP:
738 case WXK_PRIOR:
739 dsty = sty - (5 * cliy / 6);
740 Scroll(-1, (dsty == -1) ? 0 : dsty);
741 break;
742
743 case WXK_PAGEDOWN:
744 case WXK_NEXT:
745 Scroll(-1, sty + (5 * cliy / 6));
746 break;
747
748 case WXK_HOME:
749 Scroll(0, event.ControlDown() ? 0 : -1);
750 break;
751
752 case WXK_END:
753 Scroll(szx - clix, event.ControlDown() ? szy - cliy : -1);
754 break;
755
756 case WXK_UP:
757 Scroll(-1, sty - 1);
758 break;
759
760 case WXK_DOWN:
761 Scroll(-1, sty + 1);
762 break;
763
764 case WXK_LEFT:
765 Scroll(stx - 1, -1);
766 break;
767
768 case WXK_RIGHT:
769 Scroll(stx + 1, -1);
770 break;
771
772 default:
773 // not for us
774 event.Skip();
775 }
776}