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 interface "splittree.cpp"
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)
38 #include "wx/generic/treectlg.h"
40 #include "wx/gizmos/splittree.h"
43 * wxRemotelyScrolledTreeCtrl
46 #if USE_GENERIC_TREECTRL
47 IMPLEMENT_CLASS(wxRemotelyScrolledTreeCtrl
, wxGenericTreeCtrl
)
49 IMPLEMENT_CLASS(wxRemotelyScrolledTreeCtrl
, wxTreeCtrl
)
52 #if USE_GENERIC_TREECTRL
53 BEGIN_EVENT_TABLE(wxRemotelyScrolledTreeCtrl
, wxGenericTreeCtrl
)
55 BEGIN_EVENT_TABLE(wxRemotelyScrolledTreeCtrl
, wxTreeCtrl
)
57 EVT_SIZE(wxRemotelyScrolledTreeCtrl::OnSize
)
58 EVT_TREE_ITEM_EXPANDED(-1, wxRemotelyScrolledTreeCtrl::OnExpand
)
59 EVT_TREE_ITEM_COLLAPSED(-1, wxRemotelyScrolledTreeCtrl::OnExpand
)
60 EVT_SCROLLWIN(wxRemotelyScrolledTreeCtrl::OnScroll
)
63 wxRemotelyScrolledTreeCtrl::wxRemotelyScrolledTreeCtrl(wxWindow
* parent
, wxWindowID id
, const wxPoint
& pt
,
64 const wxSize
& sz
, long style
):
65 wxTreeCtrl(parent
, id
, pt
, sz
, style
)
69 wxRemotelyScrolledTreeCtrl::~wxRemotelyScrolledTreeCtrl()
73 void wxRemotelyScrolledTreeCtrl::HideVScrollbar()
76 if (!IsKindOf(CLASSINFO(wxGenericTreeCtrl
)))
78 ::ShowScrollBar((HWND
) GetHWND(), SB_VERT
, FALSE
);
83 // Implicit in overriding SetScrollbars
87 // Number of pixels per user unit (0 or -1 for no scrollbar)
88 // Length of virtual canvas in user units
89 // Length of page in user units
90 void wxRemotelyScrolledTreeCtrl::SetScrollbars(int pixelsPerUnitX
, int pixelsPerUnitY
,
91 int noUnitsX
, int noUnitsY
,
95 if (IsKindOf(CLASSINFO(wxGenericTreeCtrl
)))
97 wxGenericTreeCtrl
* win
= (wxGenericTreeCtrl
*) this;
98 win
->wxGenericTreeCtrl::SetScrollbars(pixelsPerUnitX
, 0, noUnitsX
, 0, xPos
, 0, noRefresh
);
100 wxScrolledWindow
* scrolledWindow
= GetScrolledWindow();
103 scrolledWindow
->SetScrollbars(0, pixelsPerUnitY
, 0, noUnitsY
, 0, yPos
, noRefresh
);
108 // In case we're using the generic tree control.
109 // Get the view start
110 void wxRemotelyScrolledTreeCtrl::GetViewStart(int *x
, int *y
) const
112 if (IsKindOf(CLASSINFO(wxGenericTreeCtrl
)))
114 wxScrolledWindow
* scrolledWindow
= GetScrolledWindow();
116 wxGenericTreeCtrl
* win
= (wxGenericTreeCtrl
*) this;
118 win
->wxGenericTreeCtrl::GetViewStart(& x1
, & y1
);
123 scrolledWindow
->GetViewStart(& x2
, & y2
);
128 // In case we're using the generic tree control.
129 void wxRemotelyScrolledTreeCtrl::PrepareDC(wxDC
& dc
)
131 if (IsKindOf(CLASSINFO(wxGenericTreeCtrl
)))
133 wxScrolledWindow
* scrolledWindow
= GetScrolledWindow();
135 wxGenericTreeCtrl
* win
= (wxGenericTreeCtrl
*) this;
138 GetViewStart(& startX
, & startY
);
140 int xppu1
, yppu1
, xppu2
, yppu2
;
141 win
->wxGenericTreeCtrl::GetScrollPixelsPerUnit(& xppu1
, & yppu1
);
142 scrolledWindow
->GetScrollPixelsPerUnit(& xppu2
, & yppu2
);
144 dc
.SetDeviceOrigin( -startX
* xppu1
, -startY
* yppu2
);
145 dc
.SetUserScale( win
->GetScaleX(), win
->GetScaleY() );
149 // Scroll to the given line (in scroll units where each unit is
150 // the height of an item)
151 void wxRemotelyScrolledTreeCtrl::ScrollToLine(int posHoriz
, int posVert
)
154 if (!IsKindOf(CLASSINFO(wxGenericTreeCtrl
)))
156 UINT sbCode
= SB_THUMBPOSITION
;
157 HWND vertScrollBar
= 0;
158 MSWDefWindowProc((WXUINT
) WM_VSCROLL
, MAKELONG(sbCode
, posVert
), (WXHWND
) vertScrollBar
);
163 wxGenericTreeCtrl
* win
= (wxGenericTreeCtrl
*) this;
165 /* Doesn't work yet because scrolling is ignored by Scroll
167 wxScrolledWindow* scrolledWindow = GetScrolledWindow();
170 scrolledWindow->GetScrollPixelsPerUnit(& xppu, & yppu);
171 win->Scroll(-1, posVert*yppu);
177 void wxRemotelyScrolledTreeCtrl::OnSize(wxSizeEvent
& event
)
180 AdjustRemoteScrollbars();
184 void wxRemotelyScrolledTreeCtrl::OnExpand(wxTreeEvent
& event
)
186 AdjustRemoteScrollbars();
189 // If we don't have this, we get some bits of lines still remaining
190 if (event
.GetEventType() == wxEVT_COMMAND_TREE_ITEM_COLLAPSED
)
194 // Adjust the containing wxScrolledWindow's scrollbars appropriately
195 void wxRemotelyScrolledTreeCtrl::AdjustRemoteScrollbars()
197 if (IsKindOf(CLASSINFO(wxGenericTreeCtrl
)))
199 // This is for the generic tree control.
200 // It calls SetScrollbars which has been overridden
201 // to adjust the parent scrolled window vertical
203 ((wxGenericTreeCtrl
*) this)->AdjustMyScrollbars();
208 // This is for the wxMSW tree control
209 wxScrolledWindow
* scrolledWindow
= GetScrolledWindow();
213 if (GetBoundingRect(GetRootItem(), itemRect
))
215 int itemHeight
= itemRect
.GetHeight();
218 GetClientSize(&w
, &h
);
220 wxRect
rect(0, 0, 0, 0);
222 int treeViewHeight
= rect
.GetHeight()/itemHeight
;
224 int scrollPixelsPerLine
= itemHeight
;
225 int scrollPos
= - (itemRect
.y
/ itemHeight
);
227 scrolledWindow
->SetScrollbars(0, scrollPixelsPerLine
, 0, treeViewHeight
, 0, scrollPos
);
229 // Ensure that when a scrollbar becomes hidden or visible,
230 // the contained window sizes are right.
231 // Problem: this is called too early (?)
232 wxSizeEvent
event(scrolledWindow
->GetSize(), scrolledWindow
->GetId());
233 scrolledWindow
->GetEventHandler()->ProcessEvent(event
);
240 // Calculate the area that contains both rectangles
241 static wxRect
CombineRectangles(const wxRect
& rect1
, const wxRect
& rect2
)
245 int right1
= rect1
.GetRight();
246 int bottom1
= rect1
.GetBottom();
247 int right2
= rect2
.GetRight();
248 int bottom2
= rect2
.GetBottom();
250 wxPoint topLeft
= wxPoint(wxMin(rect1
.x
, rect2
.x
), wxMin(rect1
.y
, rect2
.y
));
251 wxPoint bottomRight
= wxPoint(wxMax(right1
, right2
), wxMax(bottom1
, bottom2
));
253 rect
.x
= topLeft
.x
; rect
.y
= topLeft
.y
;
254 rect
.SetRight(bottomRight
.x
);
255 rect
.SetBottom(bottomRight
.y
);
261 // Calculate the tree overall size so we can set the scrollbar
263 void wxRemotelyScrolledTreeCtrl::CalcTreeSize(wxRect
& rect
)
265 CalcTreeSize(GetRootItem(), rect
);
268 void wxRemotelyScrolledTreeCtrl::CalcTreeSize(wxTreeItemId
& id
, wxRect
& rect
)
270 // TODO: implement GetFirst/NextVisibleItem
271 // for wxGenericTreeCtrl, plus GetBoundingRect.
273 // More efficient implementation would be to find the last item (but how?)
274 // Q: is the bounding rect relative to the top of the virtual tree workspace
275 // or the top of the window? How would we convert?
277 if (GetBoundingRect(id
, itemSize
))
279 rect
= CombineRectangles(rect
, itemSize
);
283 wxTreeItemId childId
= GetFirstChild(id
, cookie
);
286 CalcTreeSize(childId
, rect
);
287 childId
= GetNextChild(childId
, cookie
);
291 // Find the scrolled window that contains this control
292 wxScrolledWindow
* wxRemotelyScrolledTreeCtrl::GetScrolledWindow() const
294 wxWindow
* parent
= wxWindow::GetParent();
297 if (parent
->IsKindOf(CLASSINFO(wxScrolledWindow
)))
298 return (wxScrolledWindow
*) parent
;
299 parent
= parent
->GetParent();
304 void wxRemotelyScrolledTreeCtrl::OnScroll(wxScrollWinEvent
& event
)
306 int orient
= event
.GetOrientation();
307 if (orient
== wxHORIZONTAL
)
309 // Don't 'skip' or we'd get into infinite recursion
312 wxScrolledWindow
* scrollWin
= GetScrolledWindow();
317 scrollWin
->GetViewStart(& x
, & y
);
323 * wxThinSplitterWindow
326 IMPLEMENT_CLASS(wxThinSplitterWindow
, wxSplitterWindow
)
328 BEGIN_EVENT_TABLE(wxThinSplitterWindow
, wxSplitterWindow
)
329 EVT_SIZE(wxThinSplitterWindow::OnSize
)
332 wxThinSplitterWindow::wxThinSplitterWindow(wxWindow
* parent
, wxWindowID id
,
336 wxSplitterWindow(parent
, id
, pos
, sz
, style
)
340 void wxThinSplitterWindow::SizeWindows()
342 // The client size may have changed inbetween
343 // the sizing of the first window and the sizing of
344 // the second. So repeat SizeWindows.
345 wxSplitterWindow::SizeWindows();
346 wxSplitterWindow::SizeWindows();
349 // Tests for x, y over sash
350 bool wxThinSplitterWindow::SashHitTest(int x
, int y
, int tolerance
)
352 return wxSplitterWindow::SashHitTest(x
, y
, 4);
355 void wxThinSplitterWindow::DrawSash(wxDC
& dc
)
357 if ( m_sashPosition
== 0 || !m_windowTwo
)
359 if (GetWindowStyle() & wxSP_NOSASH
)
363 GetClientSize(&w
, &h
);
365 if ( m_splitMode
== wxSPLIT_VERTICAL
)
367 dc
.SetPen(* m_facePen
);
368 dc
.SetBrush(* m_faceBrush
);
371 if ( (GetWindowStyleFlag() & wxSP_BORDER
) != wxSP_BORDER
&& (GetWindowStyleFlag() & wxSP_3DBORDER
) != wxSP_3DBORDER
)
372 h1
+= 1; // Not sure why this is necessary...
373 if ( (GetWindowStyleFlag() & wxSP_3DBORDER
) == wxSP_3DBORDER
)
377 dc
.DrawRectangle(m_sashPosition
, y1
, m_sashSize
, h1
);
381 dc
.SetPen(* m_facePen
);
382 dc
.SetBrush(* m_faceBrush
);
385 if ( (GetWindowStyleFlag() & wxSP_BORDER
) != wxSP_BORDER
&& (GetWindowStyleFlag() & wxSP_3DBORDER
) != wxSP_3DBORDER
)
387 if ( (GetWindowStyleFlag() & wxSP_3DBORDER
) == wxSP_3DBORDER
)
391 dc
.DrawRectangle(x1
, m_sashPosition
, w1
, m_sashSize
);
394 dc
.SetPen(wxNullPen
);
395 dc
.SetBrush(wxNullBrush
);
398 void wxThinSplitterWindow::OnSize(wxSizeEvent
& event
)
400 wxSplitterWindow::OnSize(event
);
404 * wxSplitterScrolledWindow
407 IMPLEMENT_CLASS(wxSplitterScrolledWindow
, wxScrolledWindow
)
409 BEGIN_EVENT_TABLE(wxSplitterScrolledWindow
, wxScrolledWindow
)
410 EVT_SCROLLWIN(wxSplitterScrolledWindow::OnScroll
)
411 EVT_SIZE(wxSplitterScrolledWindow::OnSize
)
414 wxSplitterScrolledWindow::wxSplitterScrolledWindow(wxWindow
* parent
, wxWindowID id
,
418 wxScrolledWindow(parent
, id
, pos
, sz
, style
)
422 void wxSplitterScrolledWindow::OnSize(wxSizeEvent
& event
)
424 wxSize sz
= GetClientSize();
425 if (GetChildren().First())
427 ((wxWindow
*) GetChildren().First()->Data())->SetSize(0, 0, sz
.x
, sz
.y
);
431 void wxSplitterScrolledWindow::OnScroll(wxScrollWinEvent
& event
)
433 // Ensure that events being propagated back up the window hierarchy
434 // don't cause an infinite loop
435 static bool inOnScroll
= FALSE
;
440 int orient
= event
.GetOrientation();
442 int nScrollInc
= CalcScrollInc(event
);
449 if (orient
== wxHORIZONTAL
)
451 int newPos
= m_xScrollPosition
+ nScrollInc
;
452 SetScrollPos(wxHORIZONTAL
, newPos
, TRUE
);
456 int newPos
= m_yScrollPosition
+ nScrollInc
;
457 SetScrollPos(wxVERTICAL
, newPos
, TRUE
);
460 if (orient
== wxHORIZONTAL
)
462 m_xScrollPosition
+= nScrollInc
;
466 m_yScrollPosition
+= nScrollInc
;
469 // Find targets in splitter window and send the event to them
470 wxNode
* node
= GetChildren().First();
473 wxWindow
* child
= (wxWindow
*) node
->Data();
474 if (child
->IsKindOf(CLASSINFO(wxSplitterWindow
)))
476 wxSplitterWindow
* splitter
= (wxSplitterWindow
*) child
;
477 if (splitter
->GetWindow1())
478 splitter
->GetWindow1()->ProcessEvent(event
);
479 if (splitter
->GetWindow2())
480 splitter
->GetWindow2()->ProcessEvent(event
);
487 m_targetWindow
->MacUpdateImmediately() ;