1 /////////////////////////////////////////////////////////////////////////////
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
6 // Author: Julian Smart
10 // Copyright: (c) Julian Smart
11 // Licence: wxWindows licence
12 /////////////////////////////////////////////////////////////////////////////
14 // ============================================================================
16 // ============================================================================
18 // ----------------------------------------------------------------------------
20 // ----------------------------------------------------------------------------
22 #pragma implementation "splittree.h"
25 // For compilers that support precompilation, includes "wx/wx.h".
26 #include "wx/wxprec.h"
32 // for all others, include the necessary headers (this file is usually all you
33 // need because it includes almost all "standard" wxWidgets headers)
40 #include "wx/msw/winundef.h"
43 #include "wx/gizmos/splittree.h"
47 * wxRemotelyScrolledTreeCtrl
50 #if USE_GENERIC_TREECTRL
51 IMPLEMENT_CLASS(wxRemotelyScrolledTreeCtrl
, wxGenericTreeCtrl
)
53 IMPLEMENT_CLASS(wxRemotelyScrolledTreeCtrl
, wxTreeCtrl
)
56 #if USE_GENERIC_TREECTRL
57 BEGIN_EVENT_TABLE(wxRemotelyScrolledTreeCtrl
, wxGenericTreeCtrl
)
59 BEGIN_EVENT_TABLE(wxRemotelyScrolledTreeCtrl
, wxTreeCtrl
)
61 EVT_SIZE(wxRemotelyScrolledTreeCtrl::OnSize
)
62 EVT_PAINT(wxRemotelyScrolledTreeCtrl::OnPaint
)
63 EVT_TREE_ITEM_EXPANDED(wxID_ANY
, wxRemotelyScrolledTreeCtrl::OnExpand
)
64 EVT_TREE_ITEM_COLLAPSED(wxID_ANY
, wxRemotelyScrolledTreeCtrl::OnExpand
)
65 EVT_SCROLLWIN(wxRemotelyScrolledTreeCtrl::OnScroll
)
68 wxRemotelyScrolledTreeCtrl::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
)
73 m_companionWindow
= NULL
;
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
79 m_drawRowLines
= (style
& wxTR_ROW_LINES
) != 0;
82 wxRemotelyScrolledTreeCtrl::~wxRemotelyScrolledTreeCtrl()
86 void wxRemotelyScrolledTreeCtrl::HideVScrollbar()
88 #if defined(__WXMSW__)
89 #if USE_GENERIC_TREECTRL
90 if (!IsKindOf(CLASSINFO(wxGenericTreeCtrl
)))
93 ::ShowScrollBar((HWND
) GetHWND(), SB_VERT
, false);
95 #if USE_GENERIC_TREECTRL
98 // Implicit in overriding SetScrollbars
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
107 void wxRemotelyScrolledTreeCtrl::SetScrollbars(
108 #if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
109 int pixelsPerUnitX
, int pixelsPerUnitY
,
110 int noUnitsX
, int noUnitsY
,
114 int WXUNUSED(pixelsPerUnitX
), int WXUNUSED(pixelsPerUnitY
),
115 int WXUNUSED(noUnitsX
), int WXUNUSED(noUnitsY
),
116 int WXUNUSED(xPos
), int WXUNUSED(yPos
),
117 bool WXUNUSED(noRefresh
)
121 #if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
122 if (IsKindOf(CLASSINFO(wxGenericTreeCtrl
)))
124 wxGenericTreeCtrl
* win
= (wxGenericTreeCtrl
*) this;
125 win
->wxGenericTreeCtrl::SetScrollbars(pixelsPerUnitX
, pixelsPerUnitY
, noUnitsX
, 0, xPos
, 0, /* noRefresh */ true);
127 wxScrolledWindow
* scrolledWindow
= GetScrolledWindow();
130 scrolledWindow
->SetScrollbars(0, pixelsPerUnitY
, 0, noUnitsY
, 0, yPos
, noRefresh
);
136 // In case we're using the generic tree control.
137 int wxRemotelyScrolledTreeCtrl::GetScrollPos(
138 #if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
146 #if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
147 // this condition fixes extsitence of warning but
148 wxScrolledWindow
* scrolledWindow
=
149 // but GetScrolledWindow is still executed in case internally does something
153 #if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
154 if (IsKindOf(CLASSINFO(wxGenericTreeCtrl
)))
156 wxGenericTreeCtrl
* win
= (wxGenericTreeCtrl
*) this;
158 if (orient
== wxHORIZONTAL
)
159 return win
->wxGenericTreeCtrl::GetScrollPos(orient
);
162 return scrolledWindow
->GetScrollPos(orient
);
170 // In case we're using the generic tree control.
171 // Get the view start
172 void wxRemotelyScrolledTreeCtrl::GetViewStart(int *x
, int *y
) const
174 wxScrolledWindow
* scrolledWindow
= GetScrolledWindow();
176 #if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
177 if (IsKindOf(CLASSINFO(wxGenericTreeCtrl
)))
180 wxGenericTreeCtrl
* win
= (wxGenericTreeCtrl
*) this;
182 win
->wxGenericTreeCtrl::GetViewStart(& x1
, & y1
);
187 scrolledWindow
->GetViewStart(& x2
, & y2
);
193 // x is wrong since the horizontal scrollbar is controlled by the
194 // tree control, but we probably don't need it.
195 scrolledWindow
->GetViewStart(x
, y
);
199 // In case we're using the generic tree control.
200 void wxRemotelyScrolledTreeCtrl::PrepareDC(
201 #if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
208 #if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
209 if (IsKindOf(CLASSINFO(wxGenericTreeCtrl
)))
211 wxScrolledWindow
* scrolledWindow
= GetScrolledWindow();
213 wxGenericTreeCtrl
* win
= (wxGenericTreeCtrl
*) this;
216 GetViewStart(& startX
, & startY
);
218 int xppu1
, yppu1
, xppu2
, yppu2
;
219 win
->wxGenericTreeCtrl::GetScrollPixelsPerUnit(& xppu1
, & yppu1
);
220 scrolledWindow
->GetScrollPixelsPerUnit(& xppu2
, & yppu2
);
222 dc
.SetDeviceOrigin( -startX
* xppu1
, -startY
* yppu2
);
223 // dc.SetUserScale( win->GetScaleX(), win->GetScaleY() );
228 // Scroll to the given line (in scroll units where each unit is
229 // the height of an item)
230 void wxRemotelyScrolledTreeCtrl::ScrollToLine(int WXUNUSED(posHoriz
), int posVert
)
233 #if USE_GENERIC_TREECTRL
234 if (!IsKindOf(CLASSINFO(wxGenericTreeCtrl
)))
235 #endif // USE_GENERIC_TREECTRL
237 UINT sbCode
= SB_THUMBPOSITION
;
238 HWND vertScrollBar
= 0;
239 MSWDefWindowProc((WXUINT
) WM_VSCROLL
, MAKELONG(sbCode
, posVert
), (WXLPARAM
) vertScrollBar
);
241 #if USE_GENERIC_TREECTRL
243 #endif // USE_GENERIC_TREECTRL
245 #if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
247 wxGenericTreeCtrl
* win
= (wxGenericTreeCtrl
*) this;
249 /* Doesn't work yet because scrolling is ignored by Scroll
251 wxScrolledWindow* scrolledWindow = GetScrolledWindow();
254 scrolledWindow->GetScrollPixelsPerUnit(& xppu, & yppu);
255 win->Scroll(-1, posVert*yppu);
259 #endif // USE_GENERIC_TREECTRL || !defined(__WXMSW__)
260 wxUnusedVar(posVert
);
263 void wxRemotelyScrolledTreeCtrl::OnSize(wxSizeEvent
& event
)
266 AdjustRemoteScrollbars();
270 void wxRemotelyScrolledTreeCtrl::OnExpand(wxTreeEvent
& event
)
272 AdjustRemoteScrollbars();
275 // If we don't have this, we get some bits of lines still remaining
276 if (event
.GetEventType() == wxEVT_COMMAND_TREE_ITEM_COLLAPSED
)
280 if (m_companionWindow
)
281 m_companionWindow
->GetEventHandler()->ProcessEvent(event
);
284 void wxRemotelyScrolledTreeCtrl::OnPaint(wxPaintEvent
& event
)
288 wxTreeCtrl::OnPaint(event
);
290 if (! m_drawRowLines
)
293 // Reset the device origin since it may have been set
294 dc
.SetDeviceOrigin(0, 0);
296 wxPen
pen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
), 1, wxSOLID
);
298 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
300 wxSize clientSize
= GetClientSize();
302 wxTreeItemId h
, lastH
;
303 for (h
=GetFirstVisibleItem();
307 if (GetBoundingRect(h
, itemRect
))
309 int cy
= itemRect
.GetTop();
310 dc
.DrawLine(0, cy
, clientSize
.x
, cy
);
316 if (lastH
.IsOk() && GetBoundingRect(lastH
, itemRect
))
318 int cy
= itemRect
.GetBottom();
319 dc
.DrawLine(0, cy
, clientSize
.x
, cy
);
324 // Adjust the containing wxScrolledWindow's scrollbars appropriately
325 void wxRemotelyScrolledTreeCtrl::AdjustRemoteScrollbars()
327 #if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
328 if (IsKindOf(CLASSINFO(wxGenericTreeCtrl
)))
330 // This is for the generic tree control.
331 // It calls SetScrollbars which has been overridden
332 // to adjust the parent scrolled window vertical
334 ((wxGenericTreeCtrl
*) this)->AdjustMyScrollbars();
340 // This is for the wxMSW tree control
341 wxScrolledWindow
* scrolledWindow
= GetScrolledWindow();
345 if (GetBoundingRect(GetFirstVisibleItem(), itemRect
))
347 // Actually, the real height seems to be 1 less than reported
348 // (e.g. 16 instead of 16)
349 int itemHeight
= itemRect
.GetHeight() - 1;
352 GetClientSize(&w
, &h
);
354 wxRect
rect(0, 0, 0, 0);
357 double f
= ((double) (rect
.GetHeight()) / (double) itemHeight
) ;
358 int treeViewHeight
= (int) ceil(f
);
360 int scrollPixelsPerLine
= itemHeight
;
361 int scrollPos
= - (itemRect
.y
/ itemHeight
);
363 scrolledWindow
->SetScrollbars(0, scrollPixelsPerLine
, 0, treeViewHeight
, 0, scrollPos
);
365 // Ensure that when a scrollbar becomes hidden or visible,
366 // the contained window sizes are right.
367 // Problem: this is called too early (?)
368 wxSizeEvent
event(scrolledWindow
->GetSize(), scrolledWindow
->GetId());
369 scrolledWindow
->GetEventHandler()->ProcessEvent(event
);
376 // Calculate the area that contains both rectangles
377 static wxRect
CombineRectangles(const wxRect
& rect1
, const wxRect
& rect2
)
381 int right1
= rect1
.GetRight();
382 int bottom1
= rect1
.GetBottom();
383 int right2
= rect2
.GetRight();
384 int bottom2
= rect2
.GetBottom();
386 wxPoint topLeft
= wxPoint(wxMin(rect1
.x
, rect2
.x
), wxMin(rect1
.y
, rect2
.y
));
387 wxPoint bottomRight
= wxPoint(wxMax(right1
, right2
), wxMax(bottom1
, bottom2
));
389 rect
.x
= topLeft
.x
; rect
.y
= topLeft
.y
;
390 rect
.SetRight(bottomRight
.x
);
391 rect
.SetBottom(bottomRight
.y
);
397 // Calculate the tree overall size so we can set the scrollbar
399 void wxRemotelyScrolledTreeCtrl::CalcTreeSize(wxRect
& rect
)
401 CalcTreeSize(GetRootItem(), rect
);
404 void wxRemotelyScrolledTreeCtrl::CalcTreeSize(const wxTreeItemId
& id
, wxRect
& rect
)
406 // More efficient implementation would be to find the last item (but how?)
407 // Q: is the bounding rect relative to the top of the virtual tree workspace
408 // or the top of the window? How would we convert?
410 if (GetBoundingRect(id
, itemSize
))
412 rect
= CombineRectangles(rect
, itemSize
);
415 wxTreeItemIdValue cookie
;
416 wxTreeItemId childId
= GetFirstChild(id
, cookie
);
419 CalcTreeSize(childId
, rect
);
420 childId
= GetNextChild(childId
, cookie
);
424 // Find the scrolled window that contains this control
425 wxScrolledWindow
* wxRemotelyScrolledTreeCtrl::GetScrolledWindow() const
427 wxWindow
* parent
= wxWindow::GetParent();
430 if (parent
->IsKindOf(CLASSINFO(wxScrolledWindow
)))
431 return (wxScrolledWindow
*) parent
;
432 parent
= parent
->GetParent();
437 void wxRemotelyScrolledTreeCtrl::OnScroll(wxScrollWinEvent
& event
)
439 int orient
= event
.GetOrientation();
440 if (orient
== wxHORIZONTAL
)
445 wxScrolledWindow
* scrollWin
= GetScrolledWindow();
450 scrollWin
->GetViewStart(& x
, & y
);
456 * wxTreeCompanionWindow
458 * A window displaying values associated with tree control items.
461 IMPLEMENT_CLASS(wxTreeCompanionWindow
, wxWindow
)
463 BEGIN_EVENT_TABLE(wxTreeCompanionWindow
, wxWindow
)
464 EVT_PAINT(wxTreeCompanionWindow::OnPaint
)
465 EVT_SCROLLWIN(wxTreeCompanionWindow::OnScroll
)
466 EVT_TREE_ITEM_EXPANDED(-1, wxTreeCompanionWindow::OnExpand
)
467 EVT_TREE_ITEM_COLLAPSED(-1, wxTreeCompanionWindow::OnExpand
)
470 wxTreeCompanionWindow::wxTreeCompanionWindow(wxWindow
* parent
, wxWindowID id
,
474 wxWindow(parent
, id
, pos
, sz
, style
)
479 void wxTreeCompanionWindow::DrawItem(wxDC
& dc
, wxTreeItemId id
, const wxRect
& rect
)
485 wxString text
= m_treeCtrl
->GetItemText(id
);
486 dc
.SetTextForeground(* wxBLACK
);
487 dc
.SetBackgroundMode(wxTRANSPARENT
);
490 dc
.GetTextExtent(text
, & textW
, & textH
);
493 int y
= rect
.GetY() + wxMax(0, (rect
.GetHeight() - textH
) / 2);
495 dc
.DrawText(text
, x
, y
);
500 void wxTreeCompanionWindow::OnPaint(wxPaintEvent
& WXUNUSED(event
))
507 wxPen
pen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
), 1, wxSOLID
);
509 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
510 wxFont
font(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
513 wxSize clientSize
= GetClientSize();
515 wxTreeItemId h
, lastH
;
516 for (h
=m_treeCtrl
->GetFirstVisibleItem();
518 h
=m_treeCtrl
->GetNextVisible(h
))
520 if (m_treeCtrl
->GetBoundingRect(h
, itemRect
))
522 int cy
= itemRect
.GetTop();
523 wxRect
drawItemRect(0, cy
, clientSize
.x
, itemRect
.GetHeight());
527 // Draw the actual item
528 DrawItem(dc
, h
, drawItemRect
);
529 dc
.DrawLine(0, cy
, clientSize
.x
, cy
);
531 if (! m_treeCtrl
->IsVisible(h
))
534 if (lastH
.IsOk() && m_treeCtrl
->GetBoundingRect(lastH
, itemRect
))
536 int cy
= itemRect
.GetBottom();
537 dc
.DrawLine(0, cy
, clientSize
.x
, cy
);
541 void wxTreeCompanionWindow::OnScroll(wxScrollWinEvent
& event
)
543 int orient
= event
.GetOrientation();
544 if (orient
== wxHORIZONTAL
)
552 // TODO: scroll the window physically instead of just refreshing.
556 void wxTreeCompanionWindow::OnExpand(wxTreeEvent
& WXUNUSED(event
))
558 // TODO: something more optimized than simply refresh the whole
559 // window when the tree is expanded/collapsed. Tricky.
564 * wxThinSplitterWindow
567 IMPLEMENT_CLASS(wxThinSplitterWindow
, wxSplitterWindow
)
569 BEGIN_EVENT_TABLE(wxThinSplitterWindow
, wxSplitterWindow
)
570 EVT_SIZE(wxThinSplitterWindow::OnSize
)
573 wxThinSplitterWindow::wxThinSplitterWindow(wxWindow
* parent
, wxWindowID id
,
577 wxSplitterWindow(parent
, id
, pos
, sz
, style
)
579 wxColour
faceColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
));
580 m_facePen
= new wxPen(faceColour
, 1, wxSOLID
);
581 m_faceBrush
= new wxBrush(faceColour
, wxSOLID
);
584 wxThinSplitterWindow::~wxThinSplitterWindow()
591 void wxThinSplitterWindow::SizeWindows()
593 // The client size may have changed inbetween
594 // the sizing of the first window and the sizing of
595 // the second. So repeat SizeWindows.
596 wxSplitterWindow::SizeWindows();
597 wxSplitterWindow::SizeWindows();
600 // Tests for x, y over sash
601 bool wxThinSplitterWindow::SashHitTest(int x
, int y
, int WXUNUSED(tolerance
))
603 return wxSplitterWindow::SashHitTest(x
, y
, 4);
606 void wxThinSplitterWindow::DrawSash(wxDC
& dc
)
608 if ( m_sashPosition
== 0 || !m_windowTwo
)
610 if (GetWindowStyle() & wxSP_NOSASH
)
614 GetClientSize(&w
, &h
);
616 if ( m_splitMode
== wxSPLIT_VERTICAL
)
618 dc
.SetPen(* m_facePen
);
619 dc
.SetBrush(* m_faceBrush
);
622 if ( (GetWindowStyleFlag() & wxSP_BORDER
) != wxSP_BORDER
&& (GetWindowStyleFlag() & wxSP_3DBORDER
) != wxSP_3DBORDER
)
623 h1
+= 1; // Not sure why this is necessary...
624 if ( (GetWindowStyleFlag() & wxSP_3DBORDER
) == wxSP_3DBORDER
)
628 dc
.DrawRectangle(m_sashPosition
, y1
, GetSashSize(), h1
);
632 dc
.SetPen(* m_facePen
);
633 dc
.SetBrush(* m_faceBrush
);
636 if ( (GetWindowStyleFlag() & wxSP_BORDER
) != wxSP_BORDER
&& (GetWindowStyleFlag() & wxSP_3DBORDER
) != wxSP_3DBORDER
)
638 if ( (GetWindowStyleFlag() & wxSP_3DBORDER
) == wxSP_3DBORDER
)
642 dc
.DrawRectangle(x1
, m_sashPosition
, w1
, GetSashSize());
645 dc
.SetPen(wxNullPen
);
646 dc
.SetBrush(wxNullBrush
);
649 void wxThinSplitterWindow::OnSize(wxSizeEvent
& event
)
651 wxSplitterWindow::OnSize(event
);
655 * wxSplitterScrolledWindow
658 IMPLEMENT_CLASS(wxSplitterScrolledWindow
, wxScrolledWindow
)
660 BEGIN_EVENT_TABLE(wxSplitterScrolledWindow
, wxScrolledWindow
)
661 EVT_SCROLLWIN(wxSplitterScrolledWindow::OnScroll
)
662 EVT_SIZE(wxSplitterScrolledWindow::OnSize
)
665 wxSplitterScrolledWindow::wxSplitterScrolledWindow(wxWindow
* parent
, wxWindowID id
,
669 wxScrolledWindow(parent
, id
, pos
, sz
, style
)
673 void wxSplitterScrolledWindow::OnSize(wxSizeEvent
& WXUNUSED(event
))
675 wxSize sz
= GetClientSize();
676 if (GetChildren().GetFirst())
678 ((wxWindow
*) GetChildren().GetFirst()->GetData())->SetSize(0, 0, sz
.x
, sz
.y
);
682 void wxSplitterScrolledWindow::OnScroll(wxScrollWinEvent
& event
)
684 // Ensure that events being propagated back up the window hierarchy
685 // don't cause an infinite loop
686 static bool inOnScroll
= false;
694 int orient
= event
.GetOrientation();
696 int nScrollInc
= CalcScrollInc(event
);
703 if (orient
== wxHORIZONTAL
)
709 int newPos
= m_xScrollPosition
+ nScrollInc
;
710 SetScrollPos(wxHORIZONTAL
, newPos
, true );
715 int newPos
= m_yScrollPosition
+ nScrollInc
;
716 SetScrollPos(wxVERTICAL
, newPos
, true );
719 if (orient
== wxHORIZONTAL
)
721 m_xScrollPosition
+= nScrollInc
;
725 m_yScrollPosition
+= nScrollInc
;
728 // Find targets in splitter window and send the event to them
729 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
732 wxWindow
* child
= (wxWindow
*) node
->GetData();
733 if (child
->IsKindOf(CLASSINFO(wxSplitterWindow
)))
735 wxSplitterWindow
* splitter
= (wxSplitterWindow
*) child
;
736 if (splitter
->GetWindow1())
737 splitter
->GetWindow1()->ProcessEvent(event
);
738 if (splitter
->GetWindow2())
739 splitter
->GetWindow2()->ProcessEvent(event
);
742 node
= node
->GetNext();
745 m_targetWindow
->Update() ;