]> git.saurik.com Git - wxWidgets.git/blame - contrib/utils/wxrcedit/splittree.cpp
Typos fixed and further clarification of the Python situation on Panther
[wxWidgets.git] / contrib / utils / wxrcedit / splittree.cpp
CommitLineData
12d9e308
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: splittree.cpp
3// Purpose: Classes to achieve a remotely-scrolled tree in a splitter
4// window that can be scrolled by a scrolled window higher in the
5// hierarchy
6// Author: Julian Smart
7// Modified by:
8// Created: 8/7/2000
9// RCS-ID: $Id$
10// Copyright: (c) Julian Smart
11// Licence: wxWindows licence
12/////////////////////////////////////////////////////////////////////////////
13
14// ============================================================================
15// declarations
16// ============================================================================
17
18// ----------------------------------------------------------------------------
19// headers
20// ----------------------------------------------------------------------------
c74caa09 21#if defined(__GNUG__) && !defined(__APPLE__)
12d9e308
VS
22 #pragma implementation "splittree.h"
23#endif
24
25// For compilers that support precompilation, includes "wx/wx.h".
26#include "wx/wxprec.h"
27
28#ifdef __BORLANDC__
29 #pragma hdrstop
30#endif
31
32// for all others, include the necessary headers (this file is usually all you
33// need because it includes almost all "standard" wxWindows headers)
34#ifndef WX_PRECOMP
35 #include "wx/wx.h"
36#endif
37
43ef6d9e 38#ifdef __WXMSW__
6495f2dd 39#include <windows.h>
43ef6d9e
VS
40#include "wx/msw/winundef.h"
41#endif
42
6495f2dd
JS
43#include "wx/gizmos/splittree.h"
44#include <math.h>
12d9e308
VS
45
46/*
47 * wxRemotelyScrolledTreeCtrl
48 */
49
50#if USE_GENERIC_TREECTRL
51IMPLEMENT_CLASS(wxRemotelyScrolledTreeCtrl, wxGenericTreeCtrl)
52#else
53IMPLEMENT_CLASS(wxRemotelyScrolledTreeCtrl, wxTreeCtrl)
54#endif
55
56#if USE_GENERIC_TREECTRL
57BEGIN_EVENT_TABLE(wxRemotelyScrolledTreeCtrl, wxGenericTreeCtrl)
58#else
59BEGIN_EVENT_TABLE(wxRemotelyScrolledTreeCtrl, wxTreeCtrl)
60#endif
61 EVT_SIZE(wxRemotelyScrolledTreeCtrl::OnSize)
62 EVT_TREE_ITEM_EXPANDED(-1, wxRemotelyScrolledTreeCtrl::OnExpand)
63 EVT_TREE_ITEM_COLLAPSED(-1, wxRemotelyScrolledTreeCtrl::OnExpand)
64 EVT_SCROLLWIN(wxRemotelyScrolledTreeCtrl::OnScroll)
65END_EVENT_TABLE()
66
67wxRemotelyScrolledTreeCtrl::wxRemotelyScrolledTreeCtrl(wxWindow* parent, wxWindowID id, const wxPoint& pt,
68 const wxSize& sz, long style):
69 wxTreeCtrl(parent, id, pt, sz, style)
70{
71 m_companionWindow = NULL;
72}
73
74wxRemotelyScrolledTreeCtrl::~wxRemotelyScrolledTreeCtrl()
75{
76}
77
78void wxRemotelyScrolledTreeCtrl::HideVScrollbar()
79{
6495f2dd 80#if defined(__WXMSW__) && USE_GENERIC_TREECTRL
12d9e308
VS
81 if (!IsKindOf(CLASSINFO(wxGenericTreeCtrl)))
82 {
83 ::ShowScrollBar((HWND) GetHWND(), SB_VERT, FALSE);
84 }
85 else
86#endif
87 {
88 // Implicit in overriding SetScrollbars
89 }
90}
91
92// Number of pixels per user unit (0 or -1 for no scrollbar)
93// Length of virtual canvas in user units
94// Length of page in user units
859e5b17 95#if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
12d9e308
VS
96void wxRemotelyScrolledTreeCtrl::SetScrollbars(int pixelsPerUnitX, int pixelsPerUnitY,
97 int noUnitsX, int noUnitsY,
98 int xPos, int yPos,
99 bool noRefresh)
100{
101 if (IsKindOf(CLASSINFO(wxGenericTreeCtrl)))
102 {
103 wxGenericTreeCtrl* win = (wxGenericTreeCtrl*) this;
104 win->wxGenericTreeCtrl::SetScrollbars(pixelsPerUnitX, 0, noUnitsX, 0, xPos, 0, noRefresh);
105
106 wxScrolledWindow* scrolledWindow = GetScrolledWindow();
107 if (scrolledWindow)
108 {
109 scrolledWindow->SetScrollbars(0, pixelsPerUnitY, 0, noUnitsY, 0, yPos, noRefresh);
110 }
111 }
859e5b17
JS
112#else
113void wxRemotelyScrolledTreeCtrl::SetScrollbars(int WXUNUSED(pixelsPerUnitX), int WXUNUSED(pixelsPerUnitY),
114 int WXUNUSED(noUnitsX), int WXUNUSED(noUnitsY),
115 int WXUNUSED(xPos), int WXUNUSED(yPos),
116 bool WXUNUSED(noRefresh))
117{
6495f2dd 118#endif
12d9e308
VS
119}
120
121// In case we're using the generic tree control.
859e5b17 122#if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
12d9e308
VS
123int wxRemotelyScrolledTreeCtrl::GetScrollPos(int orient) const
124{
125 wxScrolledWindow* scrolledWindow = GetScrolledWindow();
126
127 if (IsKindOf(CLASSINFO(wxGenericTreeCtrl)))
128 {
129 wxGenericTreeCtrl* win = (wxGenericTreeCtrl*) this;
130
131 if (orient == wxHORIZONTAL)
132 return win->wxGenericTreeCtrl::GetScrollPos(orient);
133 else
134 {
135 return scrolledWindow->GetScrollPos(orient);
136 }
137 }
859e5b17
JS
138#else
139int wxRemotelyScrolledTreeCtrl::GetScrollPos(int WXUNUSED(orient)) const
140{
6495f2dd 141#endif
12d9e308
VS
142 return 0;
143}
144
145
146// In case we're using the generic tree control.
147// Get the view start
148void wxRemotelyScrolledTreeCtrl::GetViewStart(int *x, int *y) const
149{
150 wxScrolledWindow* scrolledWindow = GetScrolledWindow();
151
6495f2dd 152#if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
12d9e308
VS
153 if (IsKindOf(CLASSINFO(wxGenericTreeCtrl)))
154 {
155
156 wxGenericTreeCtrl* win = (wxGenericTreeCtrl*) this;
157 int x1, y1, x2, y2;
158 win->wxGenericTreeCtrl::GetViewStart(& x1, & y1);
159 * x = x1; * y = y1;
160 if (!scrolledWindow)
161 return;
162
163 scrolledWindow->GetViewStart(& x2, & y2);
164 * y = y2;
165 }
166 else
6495f2dd 167#endif
12d9e308
VS
168 {
169 // x is wrong since the horizontal scrollbar is controlled by the
170 // tree control, but we probably don't need it.
171 scrolledWindow->GetViewStart(x, y);
172 }
173}
174
175// In case we're using the generic tree control.
859e5b17 176#if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
12d9e308
VS
177void wxRemotelyScrolledTreeCtrl::PrepareDC(wxDC& dc)
178{
179 if (IsKindOf(CLASSINFO(wxGenericTreeCtrl)))
180 {
181 wxScrolledWindow* scrolledWindow = GetScrolledWindow();
182
183 wxGenericTreeCtrl* win = (wxGenericTreeCtrl*) this;
184
185 int startX, startY;
186 GetViewStart(& startX, & startY);
187
188 int xppu1, yppu1, xppu2, yppu2;
189 win->wxGenericTreeCtrl::GetScrollPixelsPerUnit(& xppu1, & yppu1);
190 scrolledWindow->GetScrollPixelsPerUnit(& xppu2, & yppu2);
191
192 dc.SetDeviceOrigin( -startX * xppu1, -startY * yppu2 );
6495f2dd 193 // dc.SetUserScale( win->GetScaleX(), win->GetScaleY() );
12d9e308 194 }
859e5b17
JS
195#else
196void wxRemotelyScrolledTreeCtrl::PrepareDC(wxDC& WXUNUSED(dc))
197{
6495f2dd 198#endif
12d9e308
VS
199}
200
201// Scroll to the given line (in scroll units where each unit is
202// the height of an item)
859e5b17 203void wxRemotelyScrolledTreeCtrl::ScrollToLine(int WXUNUSED(posHoriz), int posVert)
12d9e308
VS
204{
205#ifdef __WXMSW__
6495f2dd 206#if USE_GENERIC_TREECTRL
12d9e308 207 if (!IsKindOf(CLASSINFO(wxGenericTreeCtrl)))
6495f2dd 208#endif
12d9e308
VS
209 {
210 UINT sbCode = SB_THUMBPOSITION;
211 HWND vertScrollBar = 0;
212 MSWDefWindowProc((WXUINT) WM_VSCROLL, MAKELONG(sbCode, posVert), (WXHWND) vertScrollBar);
213 }
6495f2dd 214#if USE_GENERIC_TREECTRL
12d9e308
VS
215 else
216#endif
6495f2dd
JS
217#endif
218#if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
12d9e308
VS
219 {
220 wxGenericTreeCtrl* win = (wxGenericTreeCtrl*) this;
221 win->Refresh();
222 /* Doesn't work yet because scrolling is ignored by Scroll
223 int xppu, yppu;
224 wxScrolledWindow* scrolledWindow = GetScrolledWindow();
225 if (scrolledWindow)
226 {
227 scrolledWindow->GetScrollPixelsPerUnit(& xppu, & yppu);
228 win->Scroll(-1, posVert*yppu);
229 }
230 */
231 }
6495f2dd 232#endif
12d9e308
VS
233}
234
235void wxRemotelyScrolledTreeCtrl::OnSize(wxSizeEvent& event)
236{
237 HideVScrollbar();
238 AdjustRemoteScrollbars();
239 event.Skip();
240}
241
242void wxRemotelyScrolledTreeCtrl::OnExpand(wxTreeEvent& event)
243{
244 AdjustRemoteScrollbars();
245 event.Skip();
246
247 // If we don't have this, we get some bits of lines still remaining
248 if (event.GetEventType() == wxEVT_COMMAND_TREE_ITEM_COLLAPSED)
249 Refresh();
250
251 // Pass on the event
252 if (m_companionWindow)
253 m_companionWindow->GetEventHandler()->ProcessEvent(event);
254}
255
256// Adjust the containing wxScrolledWindow's scrollbars appropriately
257void wxRemotelyScrolledTreeCtrl::AdjustRemoteScrollbars()
258{
6495f2dd 259#if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
12d9e308
VS
260 if (IsKindOf(CLASSINFO(wxGenericTreeCtrl)))
261 {
262 // This is for the generic tree control.
263 // It calls SetScrollbars which has been overridden
264 // to adjust the parent scrolled window vertical
265 // scrollbar.
266 ((wxGenericTreeCtrl*) this)->AdjustMyScrollbars();
267 return;
268 }
269 else
6495f2dd 270#endif
12d9e308
VS
271 {
272 // This is for the wxMSW tree control
273 wxScrolledWindow* scrolledWindow = GetScrolledWindow();
274 if (scrolledWindow)
275 {
276 wxRect itemRect;
277 if (GetBoundingRect(GetRootItem(), itemRect))
278 {
6495f2dd
JS
279 // Actually, the real height seems to be 1 less than reported
280 // (e.g. 16 instead of 16)
281 int itemHeight = itemRect.GetHeight() - 1;
12d9e308
VS
282
283 int w, h;
284 GetClientSize(&w, &h);
285
286 wxRect rect(0, 0, 0, 0);
287 CalcTreeSize(rect);
6495f2dd
JS
288
289 double f = ((double) (rect.GetHeight()) / (double) itemHeight) ;
290 int treeViewHeight = (int) ceil(f);
12d9e308
VS
291
292 int scrollPixelsPerLine = itemHeight;
293 int scrollPos = - (itemRect.y / itemHeight);
294
295 scrolledWindow->SetScrollbars(0, scrollPixelsPerLine, 0, treeViewHeight, 0, scrollPos);
296
297 // Ensure that when a scrollbar becomes hidden or visible,
298 // the contained window sizes are right.
299 // Problem: this is called too early (?)
300 wxSizeEvent event(scrolledWindow->GetSize(), scrolledWindow->GetId());
301 scrolledWindow->GetEventHandler()->ProcessEvent(event);
302 }
303 }
304 }
305}
306
307
308// Calculate the area that contains both rectangles
309static wxRect CombineRectangles(const wxRect& rect1, const wxRect& rect2)
310{
311 wxRect rect;
312
313 int right1 = rect1.GetRight();
314 int bottom1 = rect1.GetBottom();
315 int right2 = rect2.GetRight();
316 int bottom2 = rect2.GetBottom();
317
318 wxPoint topLeft = wxPoint(wxMin(rect1.x, rect2.x), wxMin(rect1.y, rect2.y));
319 wxPoint bottomRight = wxPoint(wxMax(right1, right2), wxMax(bottom1, bottom2));
320
321 rect.x = topLeft.x; rect.y = topLeft.y;
322 rect.SetRight(bottomRight.x);
323 rect.SetBottom(bottomRight.y);
324
325 return rect;
326}
327
328
329// Calculate the tree overall size so we can set the scrollbar
330// correctly
331void wxRemotelyScrolledTreeCtrl::CalcTreeSize(wxRect& rect)
332{
333 CalcTreeSize(GetRootItem(), rect);
334}
335
336void wxRemotelyScrolledTreeCtrl::CalcTreeSize(const wxTreeItemId& id, wxRect& rect)
337{
12d9e308
VS
338 // More efficient implementation would be to find the last item (but how?)
339 // Q: is the bounding rect relative to the top of the virtual tree workspace
340 // or the top of the window? How would we convert?
341 wxRect itemSize;
342 if (GetBoundingRect(id, itemSize))
343 {
344 rect = CombineRectangles(rect, itemSize);
345 }
346
c74caa09 347 void* cookie;
12d9e308 348 wxTreeItemId childId = GetFirstChild(id, cookie);
c74caa09 349 while (childId)
12d9e308
VS
350 {
351 CalcTreeSize(childId, rect);
352 childId = GetNextChild(childId, cookie);
353 }
354}
355
356// Find the scrolled window that contains this control
357wxScrolledWindow* wxRemotelyScrolledTreeCtrl::GetScrolledWindow() const
358{
359 wxWindow* parent = wxWindow::GetParent();
360 while (parent)
361 {
362 if (parent->IsKindOf(CLASSINFO(wxScrolledWindow)))
363 return (wxScrolledWindow*) parent;
364 parent = parent->GetParent();
365 }
366 return NULL;
367}
368
369void wxRemotelyScrolledTreeCtrl::OnScroll(wxScrollWinEvent& event)
370{
371 int orient = event.GetOrientation();
372 if (orient == wxHORIZONTAL)
373 {
374 event.Skip();
375 return;
376 }
377 wxScrolledWindow* scrollWin = GetScrolledWindow();
378 if (!scrollWin)
379 return;
380
381 int x, y;
382 scrollWin->GetViewStart(& x, & y);
383
384 ScrollToLine(-1, y);
385}
386
387/*
388 * wxTreeCompanionWindow
389 *
390 * A window displaying values associated with tree control items.
391 */
392
393IMPLEMENT_CLASS(wxTreeCompanionWindow, wxWindow)
394
395BEGIN_EVENT_TABLE(wxTreeCompanionWindow, wxWindow)
396 EVT_PAINT(wxTreeCompanionWindow::OnPaint)
397 EVT_SCROLLWIN(wxTreeCompanionWindow::OnScroll)
398 EVT_TREE_ITEM_EXPANDED(-1, wxTreeCompanionWindow::OnExpand)
399 EVT_TREE_ITEM_COLLAPSED(-1, wxTreeCompanionWindow::OnExpand)
400END_EVENT_TABLE()
401
402wxTreeCompanionWindow::wxTreeCompanionWindow(wxWindow* parent, wxWindowID id,
403 const wxPoint& pos,
404 const wxSize& sz,
405 long style):
406 wxWindow(parent, id, pos, sz, style)
407{
408 m_treeCtrl = NULL;
409}
410
411void wxTreeCompanionWindow::DrawItem(wxDC& dc, wxTreeItemId id, const wxRect& rect)
412{
413 // TEST CODE
414#if 1
415 if (m_treeCtrl)
416 {
417 wxString text = m_treeCtrl->GetItemText(id);
418 dc.SetTextForeground(* wxBLACK);
419 dc.SetBackgroundMode(wxTRANSPARENT);
420
421 int textW, textH;
422 dc.GetTextExtent(text, & textW, & textH);
423
424 int x = 5;
425 int y = rect.GetY() + wxMax(0, (rect.GetHeight() - textH) / 2);
426
427 dc.DrawText(text, x, y);
428 }
429#endif
430}
431
859e5b17 432void wxTreeCompanionWindow::OnPaint(wxPaintEvent& WXUNUSED(event))
12d9e308
VS
433{
434 wxPaintDC dc(this);
435
436 if (!m_treeCtrl)
437 return;
438
e1c6c6ae 439 wxPen pen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT), 1, wxSOLID);
12d9e308
VS
440 dc.SetPen(pen);
441 dc.SetBrush(* wxTRANSPARENT_BRUSH);
e1c6c6ae 442 wxFont font(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT));
12d9e308
VS
443 dc.SetFont(font);
444
445 wxSize clientSize = GetClientSize();
446 wxRect itemRect;
12d9e308
VS
447 wxTreeItemId h, lastH;
448 for(h=m_treeCtrl->GetFirstVisibleItem();h;h=m_treeCtrl->GetNextVisible(h))
449 {
450 if (m_treeCtrl->GetBoundingRect(h, itemRect))
451 {
19d0f58d 452 int cy = itemRect.GetTop();
12d9e308
VS
453 wxRect drawItemRect(0, cy, clientSize.x, itemRect.GetHeight());
454
455 lastH = h;
456
457 // Draw the actual item
458 DrawItem(dc, h, drawItemRect);
459 dc.DrawLine(0, cy, clientSize.x, cy);
460 }
461 }
462 if (lastH.IsOk() && m_treeCtrl->GetBoundingRect(lastH, itemRect))
463 {
19d0f58d 464 int cy = itemRect.GetBottom();
12d9e308
VS
465 dc.DrawLine(0, cy, clientSize.x, cy);
466 }
467}
468
469void wxTreeCompanionWindow::OnScroll(wxScrollWinEvent& event)
470{
471 int orient = event.GetOrientation();
472 if (orient == wxHORIZONTAL)
473 {
474 event.Skip();
475 return;
476 }
477 if (!m_treeCtrl)
478 return;
479
480 // TODO: scroll the window physically instead of just refreshing.
481 Refresh(TRUE);
482}
483
859e5b17 484void wxTreeCompanionWindow::OnExpand(wxTreeEvent& WXUNUSED(event))
12d9e308
VS
485{
486 // TODO: something more optimized than simply refresh the whole
487 // window when the tree is expanded/collapsed. Tricky.
488 Refresh();
489}
490
491/*
492 * wxThinSplitterWindow
493 */
494
495IMPLEMENT_CLASS(wxThinSplitterWindow, wxSplitterWindow)
496
497BEGIN_EVENT_TABLE(wxThinSplitterWindow, wxSplitterWindow)
498 EVT_SIZE(wxThinSplitterWindow::OnSize)
499END_EVENT_TABLE()
500
501wxThinSplitterWindow::wxThinSplitterWindow(wxWindow* parent, wxWindowID id,
502 const wxPoint& pos,
503 const wxSize& sz,
504 long style):
505 wxSplitterWindow(parent, id, pos, sz, style)
506{
507}
508
c74caa09
MB
509wxThinSplitterWindow::~wxThinSplitterWindow()
510{
511}
512
12d9e308
VS
513void wxThinSplitterWindow::SizeWindows()
514{
515 // The client size may have changed inbetween
516 // the sizing of the first window and the sizing of
517 // the second. So repeat SizeWindows.
518 wxSplitterWindow::SizeWindows();
519 wxSplitterWindow::SizeWindows();
520}
521
522// Tests for x, y over sash
859e5b17 523bool wxThinSplitterWindow::SashHitTest(int x, int y, int WXUNUSED(tolerance))
12d9e308
VS
524{
525 return wxSplitterWindow::SashHitTest(x, y, 4);
526}
527
528void wxThinSplitterWindow::DrawSash(wxDC& dc)
529{
c74caa09 530 if ( GetSashPosition() == 0 || !m_windowTwo)
12d9e308
VS
531 return;
532 if (GetWindowStyle() & wxSP_NOSASH)
533 return;
534
535 int w, h;
536 GetClientSize(&w, &h);
537
538 if ( m_splitMode == wxSPLIT_VERTICAL )
539 {
540 dc.SetPen(* m_facePen);
541 dc.SetBrush(* m_faceBrush);
542 int h1 = h-1;
543 int y1 = 0;
544 if ( (GetWindowStyleFlag() & wxSP_BORDER) != wxSP_BORDER && (GetWindowStyleFlag() & wxSP_3DBORDER) != wxSP_3DBORDER )
545 h1 += 1; // Not sure why this is necessary...
546 if ( (GetWindowStyleFlag() & wxSP_3DBORDER) == wxSP_3DBORDER)
547 {
548 y1 = 2; h1 -= 3;
549 }
c74caa09 550 dc.DrawRectangle(GetSashPosition(), y1, GetSashSize(), h1);
12d9e308
VS
551 }
552 else
553 {
554 dc.SetPen(* m_facePen);
555 dc.SetBrush(* m_faceBrush);
556 int w1 = w-1;
557 int x1 = 0;
558 if ( (GetWindowStyleFlag() & wxSP_BORDER) != wxSP_BORDER && (GetWindowStyleFlag() & wxSP_3DBORDER) != wxSP_3DBORDER )
559 w1 ++;
560 if ( (GetWindowStyleFlag() & wxSP_3DBORDER) == wxSP_3DBORDER)
561 {
562 x1 = 2; w1 -= 3;
563 }
c74caa09 564 dc.DrawRectangle(x1, GetSashPosition(), w1, GetSashSize());
12d9e308
VS
565 }
566
567 dc.SetPen(wxNullPen);
568 dc.SetBrush(wxNullBrush);
569}
570
571void wxThinSplitterWindow::OnSize(wxSizeEvent& event)
572{
573 wxSplitterWindow::OnSize(event);
574}
575
576/*
577 * wxSplitterScrolledWindow
578 */
579
580IMPLEMENT_CLASS(wxSplitterScrolledWindow, wxScrolledWindow)
581
582BEGIN_EVENT_TABLE(wxSplitterScrolledWindow, wxScrolledWindow)
583 EVT_SCROLLWIN(wxSplitterScrolledWindow::OnScroll)
584 EVT_SIZE(wxSplitterScrolledWindow::OnSize)
585END_EVENT_TABLE()
586
587wxSplitterScrolledWindow::wxSplitterScrolledWindow(wxWindow* parent, wxWindowID id,
588 const wxPoint& pos,
589 const wxSize& sz,
590 long style):
591 wxScrolledWindow(parent, id, pos, sz, style)
592{
593}
594
859e5b17 595void wxSplitterScrolledWindow::OnSize(wxSizeEvent& WXUNUSED(event))
12d9e308
VS
596{
597 wxSize sz = GetClientSize();
859e5b17 598 if (GetChildren().GetFirst())
12d9e308 599 {
859e5b17 600 ((wxWindow*) GetChildren().GetFirst()->GetData())->SetSize(0, 0, sz.x, sz.y);
12d9e308
VS
601 }
602}
603
604void wxSplitterScrolledWindow::OnScroll(wxScrollWinEvent& event)
605{
606 // Ensure that events being propagated back up the window hierarchy
607 // don't cause an infinite loop
608 static bool inOnScroll = FALSE;
609 if (inOnScroll)
6495f2dd
JS
610 {
611 event.Skip();
12d9e308 612 return;
6495f2dd 613 }
12d9e308 614 inOnScroll = TRUE;
6495f2dd 615
12d9e308
VS
616 int orient = event.GetOrientation();
617
6495f2dd 618 int nScrollInc = CalcScrollInc(event);
12d9e308
VS
619 if (nScrollInc == 0)
620 {
621 inOnScroll = FALSE;
622 return;
623 }
624
625 if (orient == wxHORIZONTAL)
626 {
627 inOnScroll = FALSE;
628 event.Skip();
629 return;
630#if 0
631 int newPos = m_xScrollPosition + nScrollInc;
632 SetScrollPos(wxHORIZONTAL, newPos, TRUE );
633#endif
634 }
635 else
636 {
637 int newPos = m_yScrollPosition + nScrollInc;
638 SetScrollPos(wxVERTICAL, newPos, TRUE );
639 }
640
641 if (orient == wxHORIZONTAL)
642 {
643 m_xScrollPosition += nScrollInc;
644 }
645 else
646 {
647 m_yScrollPosition += nScrollInc;
648 }
649
650 // Find targets in splitter window and send the event to them
859e5b17 651 wxNode* node = (wxNode *)GetChildren().GetFirst();
12d9e308
VS
652 while (node)
653 {
859e5b17 654 wxWindow* child = (wxWindow*) node->GetData();
12d9e308
VS
655 if (child->IsKindOf(CLASSINFO(wxSplitterWindow)))
656 {
657 wxSplitterWindow* splitter = (wxSplitterWindow*) child;
658 if (splitter->GetWindow1())
659 splitter->GetWindow1()->ProcessEvent(event);
660 if (splitter->GetWindow2())
661 splitter->GetWindow2()->ProcessEvent(event);
662 break;
663 }
859e5b17 664 node = node->GetNext();
12d9e308
VS
665 }
666
667#ifdef __WXMAC__
668 m_targetWindow->MacUpdateImmediately() ;
669#endif
670
671 inOnScroll = FALSE;
672}
673