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