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" wxWindows 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(-1, wxRemotelyScrolledTreeCtrl::OnExpand
)
64 EVT_TREE_ITEM_COLLAPSED(-1, 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
)))
237 UINT sbCode
= SB_THUMBPOSITION
;
238 HWND vertScrollBar
= 0;
239 MSWDefWindowProc((WXUINT
) WM_VSCROLL
, MAKELONG(sbCode
, posVert
), (WXHWND
) vertScrollBar
);
241 #if 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);
262 void wxRemotelyScrolledTreeCtrl::OnSize(wxSizeEvent
& event
)
265 AdjustRemoteScrollbars();
269 void wxRemotelyScrolledTreeCtrl::OnExpand(wxTreeEvent
& event
)
271 AdjustRemoteScrollbars();
274 // If we don't have this, we get some bits of lines still remaining
275 if (event
.GetEventType() == wxEVT_COMMAND_TREE_ITEM_COLLAPSED
)
279 if (m_companionWindow
)
280 m_companionWindow
->GetEventHandler()->ProcessEvent(event
);
283 void wxRemotelyScrolledTreeCtrl::OnPaint(wxPaintEvent
& event
)
287 wxTreeCtrl::OnPaint(event
);
289 if (! m_drawRowLines
)
292 // Reset the device origin since it may have been set
293 dc
.SetDeviceOrigin(0, 0);
295 wxPen
pen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
), 1, wxSOLID
);
297 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
299 wxSize clientSize
= GetClientSize();
302 wxTreeItemId h
, lastH
;
303 for(h
=GetFirstVisibleItem();h
;h
=GetNextVisible(h
))
305 if (GetBoundingRect(h
, itemRect
))
307 cy
= itemRect
.GetTop();
308 dc
.DrawLine(0, cy
, clientSize
.x
, cy
);
312 if (lastH
.IsOk() && GetBoundingRect(lastH
, itemRect
))
314 cy
= itemRect
.GetBottom();
315 dc
.DrawLine(0, cy
, clientSize
.x
, cy
);
320 // Adjust the containing wxScrolledWindow's scrollbars appropriately
321 void wxRemotelyScrolledTreeCtrl::AdjustRemoteScrollbars()
323 #if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
324 if (IsKindOf(CLASSINFO(wxGenericTreeCtrl
)))
326 // This is for the generic tree control.
327 // It calls SetScrollbars which has been overridden
328 // to adjust the parent scrolled window vertical
330 ((wxGenericTreeCtrl
*) this)->AdjustMyScrollbars();
336 // This is for the wxMSW tree control
337 wxScrolledWindow
* scrolledWindow
= GetScrolledWindow();
341 if (GetBoundingRect(GetFirstVisibleItem(), itemRect
))
343 // Actually, the real height seems to be 1 less than reported
344 // (e.g. 16 instead of 16)
345 int itemHeight
= itemRect
.GetHeight() - 1;
348 GetClientSize(&w
, &h
);
350 wxRect
rect(0, 0, 0, 0);
353 double f
= ((double) (rect
.GetHeight()) / (double) itemHeight
) ;
354 int treeViewHeight
= (int) ceil(f
);
356 int scrollPixelsPerLine
= itemHeight
;
357 int scrollPos
= - (itemRect
.y
/ itemHeight
);
359 scrolledWindow
->SetScrollbars(0, scrollPixelsPerLine
, 0, treeViewHeight
, 0, scrollPos
);
361 // Ensure that when a scrollbar becomes hidden or visible,
362 // the contained window sizes are right.
363 // Problem: this is called too early (?)
364 wxSizeEvent
event(scrolledWindow
->GetSize(), scrolledWindow
->GetId());
365 scrolledWindow
->GetEventHandler()->ProcessEvent(event
);
372 // Calculate the area that contains both rectangles
373 static wxRect
CombineRectangles(const wxRect
& rect1
, const wxRect
& rect2
)
377 int right1
= rect1
.GetRight();
378 int bottom1
= rect1
.GetBottom();
379 int right2
= rect2
.GetRight();
380 int bottom2
= rect2
.GetBottom();
382 wxPoint topLeft
= wxPoint(wxMin(rect1
.x
, rect2
.x
), wxMin(rect1
.y
, rect2
.y
));
383 wxPoint bottomRight
= wxPoint(wxMax(right1
, right2
), wxMax(bottom1
, bottom2
));
385 rect
.x
= topLeft
.x
; rect
.y
= topLeft
.y
;
386 rect
.SetRight(bottomRight
.x
);
387 rect
.SetBottom(bottomRight
.y
);
393 // Calculate the tree overall size so we can set the scrollbar
395 void wxRemotelyScrolledTreeCtrl::CalcTreeSize(wxRect
& rect
)
397 CalcTreeSize(GetRootItem(), rect
);
400 void wxRemotelyScrolledTreeCtrl::CalcTreeSize(const wxTreeItemId
& id
, wxRect
& rect
)
402 // More efficient implementation would be to find the last item (but how?)
403 // Q: is the bounding rect relative to the top of the virtual tree workspace
404 // or the top of the window? How would we convert?
406 if (GetBoundingRect(id
, itemSize
))
408 rect
= CombineRectangles(rect
, itemSize
);
411 wxTreeItemIdValue cookie
;
412 wxTreeItemId childId
= GetFirstChild(id
, cookie
);
415 CalcTreeSize(childId
, rect
);
416 childId
= GetNextChild(childId
, cookie
);
420 // Find the scrolled window that contains this control
421 wxScrolledWindow
* wxRemotelyScrolledTreeCtrl::GetScrolledWindow() const
423 wxWindow
* parent
= wxWindow::GetParent();
426 if (parent
->IsKindOf(CLASSINFO(wxScrolledWindow
)))
427 return (wxScrolledWindow
*) parent
;
428 parent
= parent
->GetParent();
433 void wxRemotelyScrolledTreeCtrl::OnScroll(wxScrollWinEvent
& event
)
435 int orient
= event
.GetOrientation();
436 if (orient
== wxHORIZONTAL
)
441 wxScrolledWindow
* scrollWin
= GetScrolledWindow();
446 scrollWin
->GetViewStart(& x
, & y
);
452 * wxTreeCompanionWindow
454 * A window displaying values associated with tree control items.
457 IMPLEMENT_CLASS(wxTreeCompanionWindow
, wxWindow
)
459 BEGIN_EVENT_TABLE(wxTreeCompanionWindow
, wxWindow
)
460 EVT_PAINT(wxTreeCompanionWindow::OnPaint
)
461 EVT_SCROLLWIN(wxTreeCompanionWindow::OnScroll
)
462 EVT_TREE_ITEM_EXPANDED(-1, wxTreeCompanionWindow::OnExpand
)
463 EVT_TREE_ITEM_COLLAPSED(-1, wxTreeCompanionWindow::OnExpand
)
466 wxTreeCompanionWindow::wxTreeCompanionWindow(wxWindow
* parent
, wxWindowID id
,
470 wxWindow(parent
, id
, pos
, sz
, style
)
475 void wxTreeCompanionWindow::DrawItem(wxDC
& dc
, wxTreeItemId id
, const wxRect
& rect
)
481 wxString text
= m_treeCtrl
->GetItemText(id
);
482 dc
.SetTextForeground(* wxBLACK
);
483 dc
.SetBackgroundMode(wxTRANSPARENT
);
486 dc
.GetTextExtent(text
, & textW
, & textH
);
489 int y
= rect
.GetY() + wxMax(0, (rect
.GetHeight() - textH
) / 2);
491 dc
.DrawText(text
, x
, y
);
496 void wxTreeCompanionWindow::OnPaint(wxPaintEvent
& WXUNUSED(event
))
503 wxPen
pen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
), 1, wxSOLID
);
505 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
506 wxFont
font(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
509 wxSize clientSize
= GetClientSize();
512 wxTreeItemId h
, lastH
;
513 for(h
=m_treeCtrl
->GetFirstVisibleItem();h
;h
=m_treeCtrl
->GetNextVisible(h
))
515 if (m_treeCtrl
->GetBoundingRect(h
, itemRect
))
517 cy
= itemRect
.GetTop();
518 wxRect
drawItemRect(0, cy
, clientSize
.x
, itemRect
.GetHeight());
522 // Draw the actual item
523 DrawItem(dc
, h
, drawItemRect
);
524 dc
.DrawLine(0, cy
, clientSize
.x
, cy
);
527 if (lastH
.IsOk() && m_treeCtrl
->GetBoundingRect(lastH
, itemRect
))
529 cy
= itemRect
.GetBottom();
530 dc
.DrawLine(0, cy
, clientSize
.x
, cy
);
534 void wxTreeCompanionWindow::OnScroll(wxScrollWinEvent
& event
)
536 int orient
= event
.GetOrientation();
537 if (orient
== wxHORIZONTAL
)
545 // TODO: scroll the window physically instead of just refreshing.
549 void wxTreeCompanionWindow::OnExpand(wxTreeEvent
& WXUNUSED(event
))
551 // TODO: something more optimized than simply refresh the whole
552 // window when the tree is expanded/collapsed. Tricky.
557 * wxThinSplitterWindow
560 IMPLEMENT_CLASS(wxThinSplitterWindow
, wxSplitterWindow
)
562 BEGIN_EVENT_TABLE(wxThinSplitterWindow
, wxSplitterWindow
)
563 EVT_SIZE(wxThinSplitterWindow::OnSize
)
566 wxThinSplitterWindow::wxThinSplitterWindow(wxWindow
* parent
, wxWindowID id
,
570 wxSplitterWindow(parent
, id
, pos
, sz
, style
)
572 wxColour
faceColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
));
573 m_facePen
= new wxPen(faceColour
, 1, wxSOLID
);
574 m_faceBrush
= new wxBrush(faceColour
, wxSOLID
);
577 wxThinSplitterWindow::~wxThinSplitterWindow()
584 void wxThinSplitterWindow::SizeWindows()
586 // The client size may have changed inbetween
587 // the sizing of the first window and the sizing of
588 // the second. So repeat SizeWindows.
589 wxSplitterWindow::SizeWindows();
590 wxSplitterWindow::SizeWindows();
593 // Tests for x, y over sash
594 bool wxThinSplitterWindow::SashHitTest(int x
, int y
, int WXUNUSED(tolerance
))
596 return wxSplitterWindow::SashHitTest(x
, y
, 4);
599 void wxThinSplitterWindow::DrawSash(wxDC
& dc
)
601 if ( m_sashPosition
== 0 || !m_windowTwo
)
603 if (GetWindowStyle() & wxSP_NOSASH
)
607 GetClientSize(&w
, &h
);
609 if ( m_splitMode
== wxSPLIT_VERTICAL
)
611 dc
.SetPen(* m_facePen
);
612 dc
.SetBrush(* m_faceBrush
);
615 if ( (GetWindowStyleFlag() & wxSP_BORDER
) != wxSP_BORDER
&& (GetWindowStyleFlag() & wxSP_3DBORDER
) != wxSP_3DBORDER
)
616 h1
+= 1; // Not sure why this is necessary...
617 if ( (GetWindowStyleFlag() & wxSP_3DBORDER
) == wxSP_3DBORDER
)
621 dc
.DrawRectangle(m_sashPosition
, y1
, GetSashSize(), h1
);
625 dc
.SetPen(* m_facePen
);
626 dc
.SetBrush(* m_faceBrush
);
629 if ( (GetWindowStyleFlag() & wxSP_BORDER
) != wxSP_BORDER
&& (GetWindowStyleFlag() & wxSP_3DBORDER
) != wxSP_3DBORDER
)
631 if ( (GetWindowStyleFlag() & wxSP_3DBORDER
) == wxSP_3DBORDER
)
635 dc
.DrawRectangle(x1
, m_sashPosition
, w1
, GetSashSize());
638 dc
.SetPen(wxNullPen
);
639 dc
.SetBrush(wxNullBrush
);
642 void wxThinSplitterWindow::OnSize(wxSizeEvent
& event
)
644 wxSplitterWindow::OnSize(event
);
648 * wxSplitterScrolledWindow
651 IMPLEMENT_CLASS(wxSplitterScrolledWindow
, wxScrolledWindow
)
653 BEGIN_EVENT_TABLE(wxSplitterScrolledWindow
, wxScrolledWindow
)
654 EVT_SCROLLWIN(wxSplitterScrolledWindow::OnScroll
)
655 EVT_SIZE(wxSplitterScrolledWindow::OnSize
)
658 wxSplitterScrolledWindow::wxSplitterScrolledWindow(wxWindow
* parent
, wxWindowID id
,
662 wxScrolledWindow(parent
, id
, pos
, sz
, style
)
666 void wxSplitterScrolledWindow::OnSize(wxSizeEvent
& WXUNUSED(event
))
668 wxSize sz
= GetClientSize();
669 if (GetChildren().GetFirst())
671 ((wxWindow
*) GetChildren().GetFirst()->GetData())->SetSize(0, 0, sz
.x
, sz
.y
);
675 void wxSplitterScrolledWindow::OnScroll(wxScrollWinEvent
& event
)
677 // Ensure that events being propagated back up the window hierarchy
678 // don't cause an infinite loop
679 static bool inOnScroll
= FALSE
;
687 int orient
= event
.GetOrientation();
689 int nScrollInc
= CalcScrollInc(event
);
696 if (orient
== wxHORIZONTAL
)
702 int newPos
= m_xScrollPosition
+ nScrollInc
;
703 SetScrollPos(wxHORIZONTAL
, newPos
, TRUE
);
708 int newPos
= m_yScrollPosition
+ nScrollInc
;
709 SetScrollPos(wxVERTICAL
, newPos
, TRUE
);
712 if (orient
== wxHORIZONTAL
)
714 m_xScrollPosition
+= nScrollInc
;
718 m_yScrollPosition
+= nScrollInc
;
721 // Find targets in splitter window and send the event to them
722 wxWindowListNode
* node
= GetChildren().GetFirst();
725 wxWindow
* child
= (wxWindow
*) node
->GetData();
726 if (child
->IsKindOf(CLASSINFO(wxSplitterWindow
)))
728 wxSplitterWindow
* splitter
= (wxSplitterWindow
*) child
;
729 if (splitter
->GetWindow1())
730 splitter
->GetWindow1()->ProcessEvent(event
);
731 if (splitter
->GetWindow2())
732 splitter
->GetWindow2()->ProcessEvent(event
);
735 node
= node
->GetNext();
739 m_targetWindow
->MacUpdateImmediately() ;