]>
Commit | Line | Data |
---|---|---|
4ed7af08 | 1 | ///////////////////////////////////////////////////////////////////////////// |
f554a14b | 2 | // Name: src/generic/datavgen.cpp |
4ed7af08 RR |
3 | // Purpose: wxDataViewCtrl generic implementation |
4 | // Author: Robert Roebling | |
7274390f | 5 | // Modified by: Francesco Montorsi, Guru Kathiresan, Bo Yang |
4ed7af08 RR |
6 | // Id: $Id$ |
7 | // Copyright: (c) 1998 Robert Roebling | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | // For compilers that support precompilation, includes "wx.h". | |
12 | #include "wx/wxprec.h" | |
13 | ||
ed4b0fdc WS |
14 | #ifdef __BORLANDC__ |
15 | #pragma hdrstop | |
16 | #endif | |
17 | ||
4ed7af08 RR |
18 | #if wxUSE_DATAVIEWCTRL |
19 | ||
20 | #include "wx/dataview.h" | |
21 | ||
22 | #ifdef wxUSE_GENERICDATAVIEWCTRL | |
23 | ||
f554a14b | 24 | #ifndef WX_PRECOMP |
57bd4c60 | 25 | #ifdef __WXMSW__ |
87f0efe2 | 26 | #include "wx/msw/private.h" |
57bd4c60 | 27 | #include "wx/msw/wrapwin.h" |
87f0efe2 | 28 | #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly" |
57bd4c60 | 29 | #endif |
f554a14b WS |
30 | #include "wx/sizer.h" |
31 | #include "wx/log.h" | |
ed4b0fdc | 32 | #include "wx/dcclient.h" |
c0badb70 | 33 | #include "wx/timer.h" |
9eddec69 | 34 | #include "wx/settings.h" |
8d0ca292 | 35 | #include "wx/msgdlg.h" |
99d471a5 | 36 | #include "wx/dcscreen.h" |
818d91a9 | 37 | #include "wx/frame.h" |
f554a14b WS |
38 | #endif |
39 | ||
4ed7af08 | 40 | #include "wx/stockitem.h" |
4ed7af08 RR |
41 | #include "wx/calctrl.h" |
42 | #include "wx/popupwin.h" | |
4ed7af08 | 43 | #include "wx/renderer.h" |
2e992e06 | 44 | #include "wx/dcbuffer.h" |
2586d4a1 | 45 | #include "wx/icon.h" |
351461fc RR |
46 | #include "wx/list.h" |
47 | #include "wx/listimpl.cpp" | |
0c8ed3eb | 48 | #include "wx/imaglist.h" |
e2bfe673 | 49 | #include "wx/headerctrl.h" |
592883ed | 50 | #include "wx/dnd.h" |
4ed7af08 | 51 | |
4ed7af08 RR |
52 | //----------------------------------------------------------------------------- |
53 | // classes | |
54 | //----------------------------------------------------------------------------- | |
55 | ||
56 | class wxDataViewCtrl; | |
57 | ||
9861f022 RR |
58 | static const int SCROLL_UNIT_X = 15; |
59 | ||
60 | // the cell padding on the left/right | |
61 | static const int PADDING_RIGHTLEFT = 3; | |
62 | ||
3b6280be RR |
63 | // the expander space margin |
64 | static const int EXPANDER_MARGIN = 4; | |
9861f022 | 65 | |
344ed1f3 RR |
66 | #ifdef __WXMSW__ |
67 | static const int EXPANDER_OFFSET = 4; | |
68 | #else | |
69 | static const int EXPANDER_OFFSET = 1; | |
70 | #endif | |
71 | ||
bc4f1ff2 | 72 | // Below is the compare stuff. |
4cef3873 | 73 | // For the generic implementation, both the leaf nodes and the nodes are sorted for |
bc4f1ff2 FM |
74 | // fast search when needed |
75 | static wxDataViewModel* g_model; | |
24c4a50f RR |
76 | static int g_column = -2; |
77 | static bool g_asending = true; | |
57f2a652 | 78 | |
fa3d4aaf VZ |
79 | //----------------------------------------------------------------------------- |
80 | // wxDataViewHeaderWindow | |
81 | //----------------------------------------------------------------------------- | |
82 | ||
e2bfe673 | 83 | class wxDataViewHeaderWindow : public wxHeaderCtrl |
87f0efe2 RR |
84 | { |
85 | public: | |
e2bfe673 VZ |
86 | wxDataViewHeaderWindow(wxDataViewCtrl *parent) |
87 | : wxHeaderCtrl(parent) | |
87f0efe2 | 88 | { |
87f0efe2 RR |
89 | } |
90 | ||
e2bfe673 VZ |
91 | wxDataViewCtrl *GetOwner() const |
92 | { return static_cast<wxDataViewCtrl *>(GetParent()); } | |
87f0efe2 | 93 | |
3bfaa5a7 VZ |
94 | protected: |
95 | // implement/override wxHeaderCtrl functions by forwarding them to the main | |
96 | // control | |
482d06f8 | 97 | virtual const wxHeaderColumn& GetColumn(unsigned int idx) const |
87f0efe2 | 98 | { |
e2bfe673 | 99 | return *(GetOwner()->GetColumn(idx)); |
87f0efe2 RR |
100 | } |
101 | ||
ce468dc2 | 102 | // FIXME: currently unused |
3bfaa5a7 VZ |
103 | virtual bool UpdateColumnWidthToFit(unsigned int idx, int widthTitle) |
104 | { | |
105 | wxDataViewCtrl * const owner = GetOwner(); | |
106 | ||
107 | int widthContents = owner->GetBestColumnWidth(idx); | |
108 | owner->GetColumn(idx)->SetWidth(wxMax(widthTitle, widthContents)); | |
aef252d9 | 109 | owner->OnColumnChange(idx); |
3bfaa5a7 VZ |
110 | |
111 | return true; | |
112 | } | |
113 | ||
114 | private: | |
fa3d4aaf VZ |
115 | bool SendEvent(wxEventType type, unsigned int n) |
116 | { | |
117 | wxDataViewCtrl * const owner = GetOwner(); | |
118 | wxDataViewEvent event(type, owner->GetId()); | |
119 | ||
120 | event.SetEventObject(owner); | |
121 | event.SetColumn(n); | |
122 | event.SetDataViewColumn(owner->GetColumn(n)); | |
123 | event.SetModel(owner->GetModel()); | |
124 | ||
125 | // for events created by wxDataViewHeaderWindow the | |
126 | // row / value fields are not valid | |
127 | return owner->GetEventHandler()->ProcessEvent(event); | |
128 | } | |
129 | ||
130 | void OnClick(wxHeaderCtrlEvent& event) | |
131 | { | |
46234a03 VZ |
132 | const unsigned idx = event.GetColumn(); |
133 | ||
134 | if ( SendEvent(wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICK, idx) ) | |
135 | return; | |
136 | ||
137 | // default handling for the column click is to sort by this column or | |
138 | // toggle its sort order | |
139 | wxDataViewCtrl * const owner = GetOwner(); | |
140 | wxDataViewColumn * const col = owner->GetColumn(idx); | |
141 | if ( !col->IsSortable() ) | |
142 | { | |
143 | // no default handling for non-sortable columns | |
fa3d4aaf | 144 | event.Skip(); |
46234a03 VZ |
145 | return; |
146 | } | |
147 | ||
148 | if ( col->IsSortKey() ) | |
149 | { | |
150 | // already using this column for sorting, just change the order | |
151 | col->ToggleSortOrder(); | |
152 | } | |
153 | else // not using this column for sorting yet | |
154 | { | |
155 | // first unset the old sort column if any | |
156 | int oldSortKey = owner->GetSortingColumnIndex(); | |
157 | if ( oldSortKey != wxNOT_FOUND ) | |
158 | { | |
159 | owner->GetColumn(oldSortKey)->UnsetAsSortKey(); | |
160 | owner->OnColumnChange(oldSortKey); | |
161 | } | |
162 | ||
163 | owner->SetSortingColumnIndex(idx); | |
164 | col->SetAsSortKey(); | |
165 | } | |
166 | ||
167 | wxDataViewModel * const model = owner->GetModel(); | |
168 | if ( model ) | |
169 | model->Resort(); | |
170 | ||
171 | owner->OnColumnChange(idx); | |
fa3d4aaf VZ |
172 | } |
173 | ||
174 | void OnRClick(wxHeaderCtrlEvent& event) | |
175 | { | |
176 | if ( !SendEvent(wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK, | |
177 | event.GetColumn()) ) | |
178 | event.Skip(); | |
179 | } | |
180 | ||
bc4f1ff2 | 181 | void OnResize(wxHeaderCtrlEvent& event) |
aef252d9 | 182 | { |
dcb6cbec VZ |
183 | wxDataViewCtrl * const owner = GetOwner(); |
184 | ||
565804f2 | 185 | const unsigned col = event.GetColumn(); |
dcb6cbec | 186 | owner->GetColumn(col)->SetWidth(event.GetWidth()); |
565804f2 | 187 | GetOwner()->OnColumnChange(col); |
aef252d9 VZ |
188 | } |
189 | ||
702f5349 VZ |
190 | void OnEndReorder(wxHeaderCtrlEvent& event) |
191 | { | |
192 | wxDataViewCtrl * const owner = GetOwner(); | |
193 | owner->ColumnMoved(owner->GetColumn(event.GetColumn()), | |
977a41ec | 194 | event.GetNewOrder()); |
702f5349 VZ |
195 | } |
196 | ||
fa3d4aaf | 197 | DECLARE_EVENT_TABLE() |
c0c133e1 | 198 | wxDECLARE_NO_COPY_CLASS(wxDataViewHeaderWindow); |
a0f3af5f | 199 | }; |
4ed7af08 | 200 | |
fa3d4aaf VZ |
201 | BEGIN_EVENT_TABLE(wxDataViewHeaderWindow, wxHeaderCtrl) |
202 | EVT_HEADER_CLICK(wxID_ANY, wxDataViewHeaderWindow::OnClick) | |
203 | EVT_HEADER_RIGHT_CLICK(wxID_ANY, wxDataViewHeaderWindow::OnRClick) | |
aef252d9 | 204 | |
bc4f1ff2 FM |
205 | EVT_HEADER_RESIZING(wxID_ANY, wxDataViewHeaderWindow::OnResize) |
206 | EVT_HEADER_END_RESIZE(wxID_ANY, wxDataViewHeaderWindow::OnResize) | |
702f5349 VZ |
207 | |
208 | EVT_HEADER_END_REORDER(wxID_ANY, wxDataViewHeaderWindow::OnEndReorder) | |
fa3d4aaf VZ |
209 | END_EVENT_TABLE() |
210 | ||
0fcce6b9 RR |
211 | //----------------------------------------------------------------------------- |
212 | // wxDataViewRenameTimer | |
213 | //----------------------------------------------------------------------------- | |
214 | ||
215 | class wxDataViewRenameTimer: public wxTimer | |
216 | { | |
217 | private: | |
218 | wxDataViewMainWindow *m_owner; | |
219 | ||
220 | public: | |
221 | wxDataViewRenameTimer( wxDataViewMainWindow *owner ); | |
222 | void Notify(); | |
223 | }; | |
224 | ||
aba9bfd0 RR |
225 | //----------------------------------------------------------------------------- |
226 | // wxDataViewTreeNode | |
227 | //----------------------------------------------------------------------------- | |
bc4f1ff2 | 228 | |
442c56e6 | 229 | class wxDataViewTreeNode; |
57f2a652 RR |
230 | WX_DEFINE_ARRAY( wxDataViewTreeNode *, wxDataViewTreeNodes ); |
231 | WX_DEFINE_ARRAY( void* , wxDataViewTreeLeaves); | |
d47db7e0 | 232 | |
4cef3873 | 233 | int LINKAGEMODE wxGenericTreeModelNodeCmp( wxDataViewTreeNode ** node1, |
bc4f1ff2 | 234 | wxDataViewTreeNode ** node2); |
57f2a652 | 235 | int LINKAGEMODE wxGenericTreeModelItemCmp( void ** id1, void ** id2); |
aba9bfd0 RR |
236 | |
237 | class wxDataViewTreeNode | |
238 | { | |
239 | public: | |
b7e9f8b1 | 240 | wxDataViewTreeNode( wxDataViewTreeNode * parent = NULL ) |
b5ec7dd6 | 241 | { |
438fb233 RR |
242 | m_parent = parent; |
243 | if (!parent) | |
244 | m_open = true; | |
245 | else | |
246 | m_open = false; | |
247 | m_hasChildren = false; | |
248 | m_subTreeCount = 0; | |
249 | } | |
b5ec7dd6 | 250 | |
aba9bfd0 | 251 | ~wxDataViewTreeNode() |
d47db7e0 | 252 | { |
d47db7e0 | 253 | } |
aba9bfd0 | 254 | |
344ed1f3 | 255 | wxDataViewTreeNode * GetParent() const { return m_parent; } |
438fb233 RR |
256 | void SetParent( wxDataViewTreeNode * parent ) { m_parent = parent; } |
257 | wxDataViewTreeNodes & GetNodes() { return m_nodes; } | |
258 | wxDataViewTreeLeaves & GetChildren() { return m_leaves; } | |
442c56e6 VZ |
259 | |
260 | void AddNode( wxDataViewTreeNode * node ) | |
d47db7e0 | 261 | { |
438fb233 | 262 | m_leaves.Add( node->GetItem().GetID() ); |
24c4a50f | 263 | if (g_column >= -1) |
438fb233 RR |
264 | m_leaves.Sort( &wxGenericTreeModelItemCmp ); |
265 | m_nodes.Add( node ); | |
24c4a50f | 266 | if (g_column >= -1) |
438fb233 | 267 | m_nodes.Sort( &wxGenericTreeModelNodeCmp ); |
57f2a652 | 268 | } |
b7fe2261 VZ |
269 | void AddLeaf( void * leaf ) |
270 | { | |
438fb233 | 271 | m_leaves.Add( leaf ); |
24c4a50f | 272 | if (g_column >= -1) |
438fb233 | 273 | m_leaves.Sort( &wxGenericTreeModelItemCmp ); |
d47db7e0 | 274 | } |
aba9bfd0 | 275 | |
438fb233 | 276 | wxDataViewItem & GetItem() { return m_item; } |
344ed1f3 | 277 | const wxDataViewItem & GetItem() const { return m_item; } |
438fb233 | 278 | void SetItem( const wxDataViewItem & item ) { m_item = item; } |
aba9bfd0 | 279 | |
344ed1f3 RR |
280 | unsigned int GetChildrenNumber() const { return m_leaves.GetCount(); } |
281 | unsigned int GetNodeNumber() const { return m_nodes.GetCount(); } | |
282 | int GetIndentLevel() const | |
3b6280be | 283 | { |
59e60167 | 284 | int ret = 0; |
344ed1f3 | 285 | const wxDataViewTreeNode * node = this; |
438fb233 RR |
286 | while( node->GetParent()->GetParent() != NULL ) |
287 | { | |
288 | node = node->GetParent(); | |
289 | ret ++; | |
290 | } | |
291 | return ret; | |
3b6280be | 292 | } |
aba9bfd0 | 293 | |
344ed1f3 | 294 | bool IsOpen() const |
442c56e6 | 295 | { |
59e60167 | 296 | return m_open; |
442c56e6 | 297 | } |
d47db7e0 RR |
298 | |
299 | void ToggleOpen() | |
442c56e6 | 300 | { |
438fb233 | 301 | int len = m_nodes.GetCount(); |
d47db7e0 | 302 | int sum = 0; |
59e60167 | 303 | for ( int i = 0;i < len; i ++) |
438fb233 | 304 | sum += m_nodes[i]->GetSubTreeCount(); |
d47db7e0 | 305 | |
438fb233 RR |
306 | sum += m_leaves.GetCount(); |
307 | if (m_open) | |
d47db7e0 RR |
308 | { |
309 | ChangeSubTreeCount(-sum); | |
438fb233 | 310 | m_open = !m_open; |
d47db7e0 RR |
311 | } |
312 | else | |
313 | { | |
438fb233 | 314 | m_open = !m_open; |
d47db7e0 RR |
315 | ChangeSubTreeCount(sum); |
316 | } | |
317 | } | |
344ed1f3 | 318 | bool HasChildren() const { return m_hasChildren; } |
438fb233 | 319 | void SetHasChildren( bool has ){ m_hasChildren = has; } |
d47db7e0 | 320 | |
438fb233 | 321 | void SetSubTreeCount( int num ) { m_subTreeCount = num; } |
344ed1f3 | 322 | int GetSubTreeCount() const { return m_subTreeCount; } |
442c56e6 | 323 | void ChangeSubTreeCount( int num ) |
d47db7e0 | 324 | { |
438fb233 | 325 | if( !m_open ) |
59e60167 | 326 | return; |
438fb233 RR |
327 | m_subTreeCount += num; |
328 | if( m_parent ) | |
329 | m_parent->ChangeSubTreeCount(num); | |
d47db7e0 RR |
330 | } |
331 | ||
d3f00f59 VZ |
332 | void Resort() |
333 | { | |
24c4a50f | 334 | if (g_column >= -1) |
d3f00f59 | 335 | { |
438fb233 RR |
336 | m_nodes.Sort( &wxGenericTreeModelNodeCmp ); |
337 | int len = m_nodes.GetCount(); | |
57f2a652 | 338 | for (int i = 0; i < len; i ++) |
438fb233 RR |
339 | m_nodes[i]->Resort(); |
340 | m_leaves.Sort( &wxGenericTreeModelItemCmp ); | |
d3f00f59 VZ |
341 | } |
342 | } | |
343 | ||
aba9bfd0 | 344 | private: |
438fb233 RR |
345 | wxDataViewTreeNode *m_parent; |
346 | wxDataViewTreeNodes m_nodes; | |
347 | wxDataViewTreeLeaves m_leaves; | |
348 | wxDataViewItem m_item; | |
349 | bool m_open; | |
350 | bool m_hasChildren; | |
351 | int m_subTreeCount; | |
aba9bfd0 RR |
352 | }; |
353 | ||
4cef3873 | 354 | int LINKAGEMODE wxGenericTreeModelNodeCmp( wxDataViewTreeNode ** node1, |
bc4f1ff2 | 355 | wxDataViewTreeNode ** node2) |
d47db7e0 | 356 | { |
57f2a652 | 357 | return g_model->Compare( (*node1)->GetItem(), (*node2)->GetItem(), g_column, g_asending ); |
d47db7e0 RR |
358 | } |
359 | ||
57f2a652 | 360 | int LINKAGEMODE wxGenericTreeModelItemCmp( void ** id1, void ** id2) |
d47db7e0 | 361 | { |
57f2a652 | 362 | return g_model->Compare( *id1, *id2, g_column, g_asending ); |
d47db7e0 RR |
363 | } |
364 | ||
365 | ||
a0f3af5f RR |
366 | //----------------------------------------------------------------------------- |
367 | // wxDataViewMainWindow | |
368 | //----------------------------------------------------------------------------- | |
4ed7af08 | 369 | |
c741d33f | 370 | WX_DEFINE_SORTED_USER_EXPORTED_ARRAY_SIZE_T(unsigned int, wxDataViewSelection, |
87f0efe2 | 371 | WXDLLIMPEXP_ADV); |
351461fc | 372 | WX_DECLARE_LIST(wxDataViewItem, ItemList); |
a76c2f37 | 373 | WX_DEFINE_LIST(ItemList) |
cab07038 | 374 | |
a0f3af5f | 375 | class wxDataViewMainWindow: public wxWindow |
4ed7af08 | 376 | { |
a0f3af5f RR |
377 | public: |
378 | wxDataViewMainWindow( wxDataViewCtrl *parent, | |
379 | wxWindowID id, | |
380 | const wxPoint &pos = wxDefaultPosition, | |
381 | const wxSize &size = wxDefaultSize, | |
382 | const wxString &name = wxT("wxdataviewctrlmainwindow") ); | |
d3c7fc99 | 383 | virtual ~wxDataViewMainWindow(); |
777f9cef | 384 | |
344ed1f3 | 385 | bool IsVirtualList() const { return m_root == NULL; } |
4ed7af08 | 386 | |
aba9bfd0 RR |
387 | // notifications from wxDataViewModel |
388 | bool ItemAdded( const wxDataViewItem &parent, const wxDataViewItem &item ); | |
32143117 | 389 | bool ItemDeleted( const wxDataViewItem &parent, const wxDataViewItem &item ); |
aba9bfd0 RR |
390 | bool ItemChanged( const wxDataViewItem &item ); |
391 | bool ValueChanged( const wxDataViewItem &item, unsigned int col ); | |
a0f3af5f | 392 | bool Cleared(); |
d3f00f59 | 393 | void Resort() |
b7fe2261 | 394 | { |
344ed1f3 | 395 | if (!IsVirtualList()) |
a3cc79d9 RR |
396 | { |
397 | SortPrepare(); | |
398 | m_root->Resort(); | |
399 | } | |
b7fe2261 | 400 | UpdateDisplay(); |
66e09788 | 401 | } |
4ed7af08 | 402 | |
66e09788 RR |
403 | void SortPrepare() |
404 | { | |
b7fe2261 | 405 | g_model = GetOwner()->GetModel(); |
57f2a652 | 406 | wxDataViewColumn* col = GetOwner()->GetSortingColumn(); |
66e09788 RR |
407 | if( !col ) |
408 | { | |
24c4a50f RR |
409 | if (g_model->HasDefaultCompare()) |
410 | g_column = -1; | |
411 | else | |
412 | g_column = -2; | |
413 | ||
66e09788 RR |
414 | g_asending = true; |
415 | return; | |
416 | } | |
57f2a652 | 417 | g_column = col->GetModelColumn(); |
b7fe2261 | 418 | g_asending = col->IsSortOrderAscending(); |
66e09788 | 419 | } |
b7fe2261 | 420 | |
a0f3af5f RR |
421 | void SetOwner( wxDataViewCtrl* owner ) { m_owner = owner; } |
422 | wxDataViewCtrl *GetOwner() { return m_owner; } | |
9861f022 | 423 | const wxDataViewCtrl *GetOwner() const { return m_owner; } |
4ed7af08 | 424 | |
9adeb77a | 425 | #if wxUSE_DRAG_AND_DROP |
818d91a9 | 426 | wxBitmap CreateItemBitmap( unsigned int row, int &indent ); |
9adeb77a | 427 | #endif // wxUSE_DRAG_AND_DROP |
a0f3af5f | 428 | void OnPaint( wxPaintEvent &event ); |
0a71f9e9 | 429 | void OnArrowChar(unsigned int newCurrent, const wxKeyEvent& event); |
cab07038 | 430 | void OnChar( wxKeyEvent &event ); |
a0f3af5f RR |
431 | void OnMouse( wxMouseEvent &event ); |
432 | void OnSetFocus( wxFocusEvent &event ); | |
cab07038 | 433 | void OnKillFocus( wxFocusEvent &event ); |
f554a14b | 434 | |
a0f3af5f RR |
435 | void UpdateDisplay(); |
436 | void RecalculateDisplay(); | |
437 | void OnInternalIdle(); | |
f554a14b | 438 | |
0fcce6b9 | 439 | void OnRenameTimer(); |
0fcce6b9 | 440 | |
9861f022 | 441 | void ScrollWindow( int dx, int dy, const wxRect *rect = NULL ); |
fbda518c | 442 | void ScrollTo( int rows, int column ); |
120b9b05 | 443 | |
0a71f9e9 RR |
444 | bool HasCurrentRow() { return m_currentRow != (unsigned int)-1; } |
445 | void ChangeCurrentRow( unsigned int row ); | |
120b9b05 | 446 | |
47b378bd | 447 | bool IsSingleSel() const { return !GetParent()->HasFlag(wxDV_MULTIPLE); } |
cab07038 | 448 | bool IsEmpty() { return GetRowCount() == 0; } |
120b9b05 | 449 | |
9861f022 RR |
450 | int GetCountPerPage() const; |
451 | int GetEndOfLastCol() const; | |
452 | unsigned int GetFirstVisibleRow() const; | |
bc4f1ff2 | 453 | |
4cef3873 VZ |
454 | // I change this method to un const because in the tree view, |
455 | // the displaying number of the tree are changing along with the | |
bc4f1ff2 | 456 | // expanding/collapsing of the tree nodes |
3b6280be | 457 | unsigned int GetLastVisibleRow(); |
59e60167 | 458 | unsigned int GetRowCount(); |
120b9b05 | 459 | |
fbda518c | 460 | wxDataViewItem GetSelection() const; |
b7e9f8b1 | 461 | wxDataViewSelection GetSelections(){ return m_selection; } |
4cef3873 | 462 | void SetSelections( const wxDataViewSelection & sel ) |
bc4f1ff2 | 463 | { m_selection = sel; UpdateDisplay(); } |
87f0efe2 | 464 | void Select( const wxArrayInt& aSelections ); |
cab07038 | 465 | void SelectAllRows( bool on ); |
0a71f9e9 RR |
466 | void SelectRow( unsigned int row, bool on ); |
467 | void SelectRows( unsigned int from, unsigned int to, bool on ); | |
468 | void ReverseRowSelection( unsigned int row ); | |
469 | bool IsRowSelected( unsigned int row ); | |
526e19e2 | 470 | void SendSelectionChangedEvent( const wxDataViewItem& item); |
120b9b05 | 471 | |
0a71f9e9 RR |
472 | void RefreshRow( unsigned int row ); |
473 | void RefreshRows( unsigned int from, unsigned int to ); | |
474 | void RefreshRowsAfter( unsigned int firstRow ); | |
120b9b05 | 475 | |
9861f022 RR |
476 | // returns the colour to be used for drawing the rules |
477 | wxColour GetRuleColour() const | |
478 | { | |
479 | return wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT); | |
480 | } | |
481 | ||
9861f022 | 482 | wxRect GetLineRect( unsigned int row ) const; |
777f9cef | 483 | |
344ed1f3 RR |
484 | int GetLineStart( unsigned int row ) const; // row * m_lineHeight in fixed mode |
485 | int GetLineHeight( unsigned int row ) const; // m_lineHeight in fixed mode | |
486 | int GetLineAt( unsigned int y ) const; // y / m_lineHeight in fixed mode | |
9861f022 | 487 | |
bc4f1ff2 | 488 | // Some useful functions for row and item mapping |
fbda518c | 489 | wxDataViewItem GetItemByRow( unsigned int row ) const; |
344ed1f3 | 490 | int GetRowByItem( const wxDataViewItem & item ) const; |
777f9cef | 491 | |
bc4f1ff2 | 492 | // Methods for building the mapping tree |
aba9bfd0 RR |
493 | void BuildTree( wxDataViewModel * model ); |
494 | void DestroyTree(); | |
a87b466d | 495 | void HitTest( const wxPoint & point, wxDataViewItem & item, wxDataViewColumn* &column ); |
fbda518c | 496 | wxRect GetItemRect( const wxDataViewItem & item, const wxDataViewColumn* column ); |
afebb87b | 497 | |
235d5f88 RR |
498 | void Expand( unsigned int row ); |
499 | void Collapse( unsigned int row ); | |
739a8399 | 500 | bool IsExpanded( unsigned int row ) const; |
235d5f88 | 501 | bool HasChildren( unsigned int row ) const; |
821baf7d | 502 | |
9adeb77a | 503 | #if wxUSE_DRAG_AND_DROP |
a653c966 RR |
504 | bool EnableDragSource( const wxDataFormat &format ); |
505 | bool EnableDropTarget( const wxDataFormat &format ); | |
506 | ||
9deec111 | 507 | void RemoveDropHint(); |
a653c966 RR |
508 | wxDragResult OnDragOver( wxDataFormat format, wxCoord x, wxCoord y, wxDragResult def ); |
509 | bool OnDrop( wxDataFormat format, wxCoord x, wxCoord y ); | |
510 | wxDragResult OnData( wxDataFormat format, wxCoord x, wxCoord y, wxDragResult def ); | |
511 | void OnLeave(); | |
9adeb77a | 512 | #endif // wxUSE_DRAG_AND_DROP |
821baf7d | 513 | |
3b6280be | 514 | private: |
344ed1f3 | 515 | wxDataViewTreeNode * GetTreeNodeByRow( unsigned int row ) const; |
bc4f1ff2 FM |
516 | // We did not need this temporarily |
517 | // wxDataViewTreeNode * GetTreeNodeByItem( const wxDataViewItem & item ); | |
3b6280be | 518 | |
59e60167 | 519 | int RecalculateCount(); |
3b6280be | 520 | |
66e09788 | 521 | wxDataViewEvent SendExpanderEvent( wxEventType type, const wxDataViewItem & item ); |
aba9bfd0 | 522 | |
442c56e6 | 523 | wxDataViewTreeNode * FindNode( const wxDataViewItem & item ); |
351461fc | 524 | |
a0f3af5f | 525 | private: |
0fcce6b9 RR |
526 | wxDataViewCtrl *m_owner; |
527 | int m_lineHeight; | |
528 | bool m_dirty; | |
120b9b05 | 529 | |
0fcce6b9 | 530 | wxDataViewColumn *m_currentCol; |
99d471a5 | 531 | unsigned int m_currentRow; |
cab07038 | 532 | wxDataViewSelection m_selection; |
120b9b05 | 533 | |
0fcce6b9 | 534 | wxDataViewRenameTimer *m_renameTimer; |
0fcce6b9 | 535 | bool m_lastOnSame; |
f554a14b | 536 | |
cab07038 RR |
537 | bool m_hasFocus; |
538 | ||
9adeb77a | 539 | #if wxUSE_DRAG_AND_DROP |
e21f75bd RR |
540 | int m_dragCount; |
541 | wxPoint m_dragStart; | |
9adeb77a | 542 | |
821baf7d RR |
543 | bool m_dragEnabled; |
544 | wxDataFormat m_dragFormat; | |
9adeb77a | 545 | |
821baf7d RR |
546 | bool m_dropEnabled; |
547 | wxDataFormat m_dropFormat; | |
9deec111 RR |
548 | bool m_dropHint; |
549 | unsigned int m_dropHintLine; | |
9adeb77a | 550 | #endif // wxUSE_DRAG_AND_DROP |
e21f75bd RR |
551 | |
552 | // for double click logic | |
0a71f9e9 | 553 | unsigned int m_lineLastClicked, |
977a41ec FM |
554 | m_lineBeforeLastClicked, |
555 | m_lineSelectSingleOnUp; | |
cab07038 | 556 | |
9861f022 RR |
557 | // the pen used to draw horiz/vertical rules |
558 | wxPen m_penRule; | |
559 | ||
3b6280be RR |
560 | // the pen used to draw the expander and the lines |
561 | wxPen m_penExpander; | |
562 | ||
bc4f1ff2 | 563 | // This is the tree structure of the model |
442c56e6 | 564 | wxDataViewTreeNode * m_root; |
3b6280be | 565 | int m_count; |
bc4f1ff2 FM |
566 | |
567 | // This is the tree node under the cursor | |
24c4a50f | 568 | wxDataViewTreeNode * m_underMouse; |
bc4f1ff2 | 569 | |
a0f3af5f RR |
570 | private: |
571 | DECLARE_DYNAMIC_CLASS(wxDataViewMainWindow) | |
572 | DECLARE_EVENT_TABLE() | |
573 | }; | |
4ed7af08 | 574 | |
f554a14b | 575 | // --------------------------------------------------------- |
aba9bfd0 | 576 | // wxGenericDataViewModelNotifier |
f554a14b | 577 | // --------------------------------------------------------- |
a0f3af5f | 578 | |
aba9bfd0 | 579 | class wxGenericDataViewModelNotifier: public wxDataViewModelNotifier |
4ed7af08 | 580 | { |
a0f3af5f | 581 | public: |
aba9bfd0 | 582 | wxGenericDataViewModelNotifier( wxDataViewMainWindow *mainWindow ) |
a0f3af5f | 583 | { m_mainWindow = mainWindow; } |
f554a14b | 584 | |
aba9bfd0 RR |
585 | virtual bool ItemAdded( const wxDataViewItem & parent, const wxDataViewItem & item ) |
586 | { return m_mainWindow->ItemAdded( parent , item ); } | |
442c56e6 | 587 | virtual bool ItemDeleted( const wxDataViewItem &parent, const wxDataViewItem &item ) |
071691a0 | 588 | { return m_mainWindow->ItemDeleted( parent, item ); } |
aba9bfd0 RR |
589 | virtual bool ItemChanged( const wxDataViewItem & item ) |
590 | { return m_mainWindow->ItemChanged(item); } | |
591 | virtual bool ValueChanged( const wxDataViewItem & item , unsigned int col ) | |
592 | { return m_mainWindow->ValueChanged( item, col ); } | |
a0f3af5f RR |
593 | virtual bool Cleared() |
594 | { return m_mainWindow->Cleared(); } | |
d3f00f59 | 595 | virtual void Resort() |
977a41ec | 596 | { m_mainWindow->Resort(); } |
f554a14b | 597 | |
a0f3af5f RR |
598 | wxDataViewMainWindow *m_mainWindow; |
599 | }; | |
4ed7af08 | 600 | |
f554a14b | 601 | // --------------------------------------------------------- |
baa9ebc4 | 602 | // wxDataViewRenderer |
f554a14b | 603 | // --------------------------------------------------------- |
4ed7af08 | 604 | |
baa9ebc4 | 605 | IMPLEMENT_ABSTRACT_CLASS(wxDataViewRenderer, wxDataViewRendererBase) |
4ed7af08 | 606 | |
c741d33f | 607 | wxDataViewRenderer::wxDataViewRenderer( const wxString &varianttype, |
9861f022 RR |
608 | wxDataViewCellMode mode, |
609 | int align) : | |
610 | wxDataViewRendererBase( varianttype, mode, align ) | |
4ed7af08 | 611 | { |
3d9d7cc4 | 612 | m_dc = NULL; |
9861f022 RR |
613 | m_align = align; |
614 | m_mode = mode; | |
4264606e RR |
615 | m_wantsAttr = false; |
616 | m_hasAttr = false; | |
4ed7af08 RR |
617 | } |
618 | ||
baa9ebc4 | 619 | wxDataViewRenderer::~wxDataViewRenderer() |
3d9d7cc4 RR |
620 | { |
621 | if (m_dc) | |
622 | delete m_dc; | |
623 | } | |
624 | ||
baa9ebc4 | 625 | wxDC *wxDataViewRenderer::GetDC() |
3d9d7cc4 RR |
626 | { |
627 | if (m_dc == NULL) | |
628 | { | |
629 | if (GetOwner() == NULL) | |
630 | return NULL; | |
631 | if (GetOwner()->GetOwner() == NULL) | |
632 | return NULL; | |
633 | m_dc = new wxClientDC( GetOwner()->GetOwner() ); | |
634 | } | |
f554a14b | 635 | |
3d9d7cc4 RR |
636 | return m_dc; |
637 | } | |
638 | ||
e51bf699 | 639 | void wxDataViewRenderer::SetAlignment( int align ) |
777f9cef | 640 | { |
e51bf699 RR |
641 | m_align=align; |
642 | } | |
643 | ||
644 | int wxDataViewRenderer::GetAlignment() const | |
645 | { | |
646 | return m_align; | |
647 | } | |
648 | ||
649 | int wxDataViewRenderer::CalculateAlignment() const | |
777f9cef | 650 | { |
e51bf699 RR |
651 | if (m_align == wxDVR_DEFAULT_ALIGNMENT) |
652 | { | |
653 | if (GetOwner() == NULL) | |
977a41ec | 654 | return wxALIGN_LEFT | wxALIGN_CENTRE_VERTICAL; |
777f9cef | 655 | |
e51bf699 RR |
656 | return GetOwner()->GetAlignment() | wxALIGN_CENTRE_VERTICAL; |
657 | } | |
777f9cef | 658 | |
e51bf699 RR |
659 | return m_align; |
660 | } | |
661 | ||
f554a14b | 662 | // --------------------------------------------------------- |
baa9ebc4 | 663 | // wxDataViewCustomRenderer |
f554a14b | 664 | // --------------------------------------------------------- |
3d9d7cc4 | 665 | |
baa9ebc4 | 666 | IMPLEMENT_ABSTRACT_CLASS(wxDataViewCustomRenderer, wxDataViewRenderer) |
3d9d7cc4 | 667 | |
baa9ebc4 | 668 | wxDataViewCustomRenderer::wxDataViewCustomRenderer( const wxString &varianttype, |
977a41ec | 669 | wxDataViewCellMode mode, int align ) : |
9861f022 | 670 | wxDataViewRenderer( varianttype, mode, align ) |
3d9d7cc4 RR |
671 | { |
672 | } | |
673 | ||
4cef3873 | 674 | void wxDataViewCustomRenderer::RenderText( const wxString &text, int xoffset, |
bc4f1ff2 | 675 | wxRect cell, wxDC *dc, int state ) |
52e750fc RR |
676 | { |
677 | wxDataViewCtrl *view = GetOwner()->GetOwner(); | |
678 | wxColour col = (state & wxDATAVIEW_CELL_SELECTED) ? | |
679 | wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT) : | |
680 | view->GetForegroundColour(); | |
681 | dc->SetTextForeground(col); | |
4cef3873 VZ |
682 | dc->DrawText( text, |
683 | cell.x + xoffset, | |
bc4f1ff2 | 684 | cell.y + ((cell.height - dc->GetCharHeight()) / 2)); |
52e750fc RR |
685 | } |
686 | ||
f554a14b | 687 | // --------------------------------------------------------- |
baa9ebc4 | 688 | // wxDataViewTextRenderer |
f554a14b | 689 | // --------------------------------------------------------- |
4ed7af08 | 690 | |
baa9ebc4 | 691 | IMPLEMENT_CLASS(wxDataViewTextRenderer, wxDataViewCustomRenderer) |
4ed7af08 | 692 | |
c741d33f | 693 | wxDataViewTextRenderer::wxDataViewTextRenderer( const wxString &varianttype, |
9861f022 RR |
694 | wxDataViewCellMode mode, int align ) : |
695 | wxDataViewCustomRenderer( varianttype, mode, align ) | |
4ed7af08 RR |
696 | { |
697 | } | |
698 | ||
baa9ebc4 | 699 | bool wxDataViewTextRenderer::SetValue( const wxVariant &value ) |
4ed7af08 | 700 | { |
90675b95 | 701 | m_text = value.GetString(); |
f554a14b | 702 | |
90675b95 | 703 | return true; |
4ed7af08 RR |
704 | } |
705 | ||
9861f022 | 706 | bool wxDataViewTextRenderer::GetValue( wxVariant& WXUNUSED(value) ) const |
4ed7af08 RR |
707 | { |
708 | return false; | |
709 | } | |
710 | ||
bc4f1ff2 | 711 | bool wxDataViewTextRenderer::HasEditorCtrl() const |
442c56e6 | 712 | { |
99d471a5 RR |
713 | return true; |
714 | } | |
715 | ||
716 | wxControl* wxDataViewTextRenderer::CreateEditorCtrl( wxWindow *parent, | |
717 | wxRect labelRect, const wxVariant &value ) | |
718 | { | |
0a807957 RR |
719 | wxTextCtrl* ctrl = new wxTextCtrl( parent, wxID_ANY, value, |
720 | wxPoint(labelRect.x,labelRect.y), | |
721 | wxSize(labelRect.width,labelRect.height) ); | |
722 | ||
723 | // select the text in the control an place the cursor at the end | |
724 | ctrl->SetInsertionPointEnd(); | |
725 | ctrl->SelectAll(); | |
726 | ||
727 | return ctrl; | |
99d471a5 RR |
728 | } |
729 | ||
730 | bool wxDataViewTextRenderer::GetValueFromEditorCtrl( wxControl *editor, wxVariant &value ) | |
731 | { | |
732 | wxTextCtrl *text = (wxTextCtrl*) editor; | |
733 | value = text->GetValue(); | |
734 | return true; | |
735 | } | |
736 | ||
87f0efe2 | 737 | bool wxDataViewTextRenderer::Render( wxRect cell, wxDC *dc, int state ) |
3d9d7cc4 | 738 | { |
52e750fc | 739 | RenderText( m_text, 0, cell, dc, state ); |
90675b95 | 740 | return true; |
3d9d7cc4 RR |
741 | } |
742 | ||
9861f022 | 743 | wxSize wxDataViewTextRenderer::GetSize() const |
3d9d7cc4 | 744 | { |
9861f022 | 745 | const wxDataViewCtrl *view = GetView(); |
87f0efe2 | 746 | if (!m_text.empty()) |
ce468dc2 FM |
747 | return view->wxWindowBase::GetTextExtent( m_text ); |
748 | return wxSize(wxDVC_DEFAULT_RENDERER_SIZE,wxDVC_DEFAULT_RENDERER_SIZE); | |
3d9d7cc4 RR |
749 | } |
750 | ||
4264606e RR |
751 | // --------------------------------------------------------- |
752 | // wxDataViewTextRendererAttr | |
753 | // --------------------------------------------------------- | |
754 | ||
755 | IMPLEMENT_CLASS(wxDataViewTextRendererAttr, wxDataViewTextRenderer) | |
756 | ||
757 | wxDataViewTextRendererAttr::wxDataViewTextRendererAttr( const wxString &varianttype, | |
758 | wxDataViewCellMode mode, int align ) : | |
759 | wxDataViewTextRenderer( varianttype, mode, align ) | |
760 | { | |
761 | m_wantsAttr = true; | |
762 | } | |
763 | ||
764 | bool wxDataViewTextRendererAttr::Render( wxRect cell, wxDC *dc, int WXUNUSED(state) ) | |
765 | { | |
766 | wxFont font; | |
767 | wxColour colour; | |
768 | ||
769 | if (m_hasAttr) | |
770 | { | |
771 | if (m_attr.HasColour()) | |
772 | { | |
773 | colour = dc->GetTextForeground(); | |
774 | dc->SetTextForeground( m_attr.GetColour() ); | |
775 | } | |
cfa42cb8 | 776 | |
4264606e RR |
777 | if (m_attr.GetBold() || m_attr.GetItalic()) |
778 | { | |
977a41ec FM |
779 | font = dc->GetFont(); |
780 | wxFont myfont = font; | |
781 | if (m_attr.GetBold()) | |
782 | myfont.SetWeight( wxFONTWEIGHT_BOLD ); | |
783 | if (m_attr.GetItalic()) | |
784 | myfont.SetStyle( wxFONTSTYLE_ITALIC ); | |
785 | dc->SetFont( myfont ); | |
4264606e RR |
786 | } |
787 | } | |
cfa42cb8 | 788 | |
4264606e | 789 | dc->DrawText( m_text, cell.x, cell.y + ((cell.height - dc->GetCharHeight()) / 2)); |
cfa42cb8 | 790 | |
4264606e RR |
791 | // restore dc |
792 | if (m_hasAttr) | |
793 | { | |
794 | if (m_attr.HasColour()) | |
795 | dc->SetTextForeground( colour ); | |
cfa42cb8 | 796 | |
4264606e RR |
797 | if (m_attr.GetBold() || m_attr.GetItalic()) |
798 | dc->SetFont( font ); | |
799 | } | |
cfa42cb8 | 800 | |
4264606e RR |
801 | return true; |
802 | } | |
cfa42cb8 | 803 | |
4264606e | 804 | |
2586d4a1 | 805 | // --------------------------------------------------------- |
baa9ebc4 | 806 | // wxDataViewBitmapRenderer |
2586d4a1 RR |
807 | // --------------------------------------------------------- |
808 | ||
baa9ebc4 | 809 | IMPLEMENT_CLASS(wxDataViewBitmapRenderer, wxDataViewCustomRenderer) |
2586d4a1 | 810 | |
c741d33f | 811 | wxDataViewBitmapRenderer::wxDataViewBitmapRenderer( const wxString &varianttype, |
9861f022 RR |
812 | wxDataViewCellMode mode, int align ) : |
813 | wxDataViewCustomRenderer( varianttype, mode, align ) | |
2586d4a1 RR |
814 | { |
815 | } | |
816 | ||
baa9ebc4 | 817 | bool wxDataViewBitmapRenderer::SetValue( const wxVariant &value ) |
2586d4a1 RR |
818 | { |
819 | if (value.GetType() == wxT("wxBitmap")) | |
820 | m_bitmap << value; | |
821 | if (value.GetType() == wxT("wxIcon")) | |
822 | m_icon << value; | |
823 | ||
824 | return true; | |
825 | } | |
826 | ||
9861f022 | 827 | bool wxDataViewBitmapRenderer::GetValue( wxVariant& WXUNUSED(value) ) const |
2586d4a1 RR |
828 | { |
829 | return false; | |
830 | } | |
831 | ||
baa9ebc4 | 832 | bool wxDataViewBitmapRenderer::Render( wxRect cell, wxDC *dc, int WXUNUSED(state) ) |
2586d4a1 RR |
833 | { |
834 | if (m_bitmap.Ok()) | |
835 | dc->DrawBitmap( m_bitmap, cell.x, cell.y ); | |
836 | else if (m_icon.Ok()) | |
837 | dc->DrawIcon( m_icon, cell.x, cell.y ); | |
838 | ||
839 | return true; | |
840 | } | |
841 | ||
9861f022 | 842 | wxSize wxDataViewBitmapRenderer::GetSize() const |
2586d4a1 RR |
843 | { |
844 | if (m_bitmap.Ok()) | |
845 | return wxSize( m_bitmap.GetWidth(), m_bitmap.GetHeight() ); | |
846 | else if (m_icon.Ok()) | |
847 | return wxSize( m_icon.GetWidth(), m_icon.GetHeight() ); | |
848 | ||
ce468dc2 | 849 | return wxSize(wxDVC_DEFAULT_RENDERER_SIZE,wxDVC_DEFAULT_RENDERER_SIZE); |
2586d4a1 RR |
850 | } |
851 | ||
f554a14b | 852 | // --------------------------------------------------------- |
baa9ebc4 | 853 | // wxDataViewToggleRenderer |
f554a14b | 854 | // --------------------------------------------------------- |
4ed7af08 | 855 | |
baa9ebc4 | 856 | IMPLEMENT_ABSTRACT_CLASS(wxDataViewToggleRenderer, wxDataViewCustomRenderer) |
4ed7af08 | 857 | |
baa9ebc4 | 858 | wxDataViewToggleRenderer::wxDataViewToggleRenderer( const wxString &varianttype, |
9861f022 RR |
859 | wxDataViewCellMode mode, int align ) : |
860 | wxDataViewCustomRenderer( varianttype, mode, align ) | |
4ed7af08 | 861 | { |
90675b95 | 862 | m_toggle = false; |
4ed7af08 RR |
863 | } |
864 | ||
baa9ebc4 | 865 | bool wxDataViewToggleRenderer::SetValue( const wxVariant &value ) |
4ed7af08 | 866 | { |
90675b95 | 867 | m_toggle = value.GetBool(); |
f554a14b | 868 | |
a8461d31 | 869 | return true; |
4ed7af08 RR |
870 | } |
871 | ||
9861f022 | 872 | bool wxDataViewToggleRenderer::GetValue( wxVariant &WXUNUSED(value) ) const |
4ed7af08 RR |
873 | { |
874 | return false; | |
875 | } | |
f554a14b | 876 | |
baa9ebc4 | 877 | bool wxDataViewToggleRenderer::Render( wxRect cell, wxDC *dc, int WXUNUSED(state) ) |
4ed7af08 | 878 | { |
862d8041 | 879 | int flags = 0; |
90675b95 | 880 | if (m_toggle) |
862d8041 RR |
881 | flags |= wxCONTROL_CHECKED; |
882 | if (GetMode() != wxDATAVIEW_CELL_ACTIVATABLE) | |
883 | flags |= wxCONTROL_DISABLED; | |
884 | ||
90b903c2 | 885 | wxRendererNative::Get().DrawCheckBox( |
862d8041 RR |
886 | GetOwner()->GetOwner(), |
887 | *dc, | |
de4bf0b3 | 888 | cell, |
862d8041 | 889 | flags ); |
f554a14b | 890 | |
90675b95 | 891 | return true; |
4ed7af08 RR |
892 | } |
893 | ||
c741d33f | 894 | bool wxDataViewToggleRenderer::Activate( wxRect WXUNUSED(cell), |
977a41ec FM |
895 | wxDataViewModel *model, |
896 | const wxDataViewItem & item, unsigned int col) | |
0fdc2321 RR |
897 | { |
898 | bool value = !m_toggle; | |
899 | wxVariant variant = value; | |
aba9bfd0 RR |
900 | model->SetValue( variant, item, col); |
901 | model->ValueChanged( item, col ); | |
0fdc2321 RR |
902 | return true; |
903 | } | |
904 | ||
9861f022 | 905 | wxSize wxDataViewToggleRenderer::GetSize() const |
4ed7af08 | 906 | { |
de4bf0b3 FM |
907 | // the window parameter is not used by GetCheckBoxSize() so it's |
908 | // safe to pass NULL | |
909 | return wxRendererNative::Get().GetCheckBoxSize(NULL); | |
4ed7af08 RR |
910 | } |
911 | ||
f554a14b | 912 | // --------------------------------------------------------- |
baa9ebc4 | 913 | // wxDataViewProgressRenderer |
f554a14b | 914 | // --------------------------------------------------------- |
4ed7af08 | 915 | |
baa9ebc4 | 916 | IMPLEMENT_ABSTRACT_CLASS(wxDataViewProgressRenderer, wxDataViewCustomRenderer) |
4ed7af08 | 917 | |
baa9ebc4 | 918 | wxDataViewProgressRenderer::wxDataViewProgressRenderer( const wxString &label, |
9861f022 RR |
919 | const wxString &varianttype, wxDataViewCellMode mode, int align ) : |
920 | wxDataViewCustomRenderer( varianttype, mode, align ) | |
4ed7af08 RR |
921 | { |
922 | m_label = label; | |
923 | m_value = 0; | |
924 | } | |
925 | ||
baa9ebc4 | 926 | wxDataViewProgressRenderer::~wxDataViewProgressRenderer() |
4ed7af08 RR |
927 | { |
928 | } | |
929 | ||
baa9ebc4 | 930 | bool wxDataViewProgressRenderer::SetValue( const wxVariant &value ) |
4ed7af08 RR |
931 | { |
932 | m_value = (long) value; | |
f554a14b | 933 | |
4ed7af08 RR |
934 | if (m_value < 0) m_value = 0; |
935 | if (m_value > 100) m_value = 100; | |
f554a14b | 936 | |
4ed7af08 RR |
937 | return true; |
938 | } | |
f554a14b | 939 | |
9861f022 RR |
940 | bool wxDataViewProgressRenderer::GetValue( wxVariant &value ) const |
941 | { | |
942 | value = (long) m_value; | |
943 | return true; | |
944 | } | |
945 | ||
baa9ebc4 | 946 | bool wxDataViewProgressRenderer::Render( wxRect cell, wxDC *dc, int WXUNUSED(state) ) |
4ed7af08 RR |
947 | { |
948 | double pct = (double)m_value / 100.0; | |
949 | wxRect bar = cell; | |
950 | bar.width = (int)(cell.width * pct); | |
951 | dc->SetPen( *wxTRANSPARENT_PEN ); | |
952 | dc->SetBrush( *wxBLUE_BRUSH ); | |
953 | dc->DrawRectangle( bar ); | |
954 | ||
955 | dc->SetBrush( *wxTRANSPARENT_BRUSH ); | |
956 | dc->SetPen( *wxBLACK_PEN ); | |
957 | dc->DrawRectangle( cell ); | |
f554a14b | 958 | |
4ed7af08 RR |
959 | return true; |
960 | } | |
961 | ||
9861f022 | 962 | wxSize wxDataViewProgressRenderer::GetSize() const |
4ed7af08 RR |
963 | { |
964 | return wxSize(40,12); | |
965 | } | |
f554a14b WS |
966 | |
967 | // --------------------------------------------------------- | |
baa9ebc4 | 968 | // wxDataViewDateRenderer |
f554a14b | 969 | // --------------------------------------------------------- |
4ed7af08 | 970 | |
21ead767 VZ |
971 | #define wxUSE_DATE_RENDERER_POPUP (wxUSE_CALENDARCTRL && wxUSE_POPUPWIN) |
972 | ||
973 | #if wxUSE_DATE_RENDERER_POPUP | |
8d0ca292 | 974 | |
baa9ebc4 | 975 | class wxDataViewDateRendererPopupTransient: public wxPopupTransientWindow |
4ed7af08 | 976 | { |
f554a14b | 977 | public: |
baa9ebc4 | 978 | wxDataViewDateRendererPopupTransient( wxWindow* parent, wxDateTime *value, |
aba9bfd0 RR |
979 | wxDataViewModel *model, const wxDataViewItem & item, unsigned int col) : |
980 | wxPopupTransientWindow( parent, wxBORDER_SIMPLE ), | |
981 | m_item( item ) | |
4ed7af08 RR |
982 | { |
983 | m_model = model; | |
984 | m_col = col; | |
f554a14b | 985 | m_cal = new wxCalendarCtrl( this, wxID_ANY, *value ); |
4ed7af08 RR |
986 | wxBoxSizer *sizer = new wxBoxSizer( wxHORIZONTAL ); |
987 | sizer->Add( m_cal, 1, wxGROW ); | |
988 | SetSizer( sizer ); | |
989 | sizer->Fit( this ); | |
990 | } | |
f554a14b | 991 | |
4ed7af08 | 992 | void OnCalendar( wxCalendarEvent &event ); |
f554a14b | 993 | |
4ed7af08 | 994 | wxCalendarCtrl *m_cal; |
aba9bfd0 | 995 | wxDataViewModel *m_model; |
0a71f9e9 | 996 | unsigned int m_col; |
aba9bfd0 | 997 | const wxDataViewItem & m_item; |
f554a14b | 998 | |
a8461d31 PC |
999 | protected: |
1000 | virtual void OnDismiss() | |
1001 | { | |
1002 | } | |
1003 | ||
4ed7af08 RR |
1004 | private: |
1005 | DECLARE_EVENT_TABLE() | |
1006 | }; | |
1007 | ||
baa9ebc4 RR |
1008 | BEGIN_EVENT_TABLE(wxDataViewDateRendererPopupTransient,wxPopupTransientWindow) |
1009 | EVT_CALENDAR( wxID_ANY, wxDataViewDateRendererPopupTransient::OnCalendar ) | |
4ed7af08 RR |
1010 | END_EVENT_TABLE() |
1011 | ||
baa9ebc4 | 1012 | void wxDataViewDateRendererPopupTransient::OnCalendar( wxCalendarEvent &event ) |
4ed7af08 RR |
1013 | { |
1014 | wxDateTime date = event.GetDate(); | |
1015 | wxVariant value = date; | |
aba9bfd0 RR |
1016 | m_model->SetValue( value, m_item, m_col ); |
1017 | m_model->ValueChanged( m_item, m_col ); | |
4ed7af08 RR |
1018 | DismissAndNotify(); |
1019 | } | |
1020 | ||
21ead767 | 1021 | #endif // wxUSE_DATE_RENDERER_POPUP |
8d0ca292 | 1022 | |
baa9ebc4 | 1023 | IMPLEMENT_ABSTRACT_CLASS(wxDataViewDateRenderer, wxDataViewCustomRenderer) |
4ed7af08 | 1024 | |
baa9ebc4 | 1025 | wxDataViewDateRenderer::wxDataViewDateRenderer( const wxString &varianttype, |
9861f022 RR |
1026 | wxDataViewCellMode mode, int align ) : |
1027 | wxDataViewCustomRenderer( varianttype, mode, align ) | |
4ed7af08 RR |
1028 | { |
1029 | } | |
f554a14b | 1030 | |
baa9ebc4 | 1031 | bool wxDataViewDateRenderer::SetValue( const wxVariant &value ) |
4ed7af08 RR |
1032 | { |
1033 | m_date = value.GetDateTime(); | |
f554a14b | 1034 | |
4ed7af08 RR |
1035 | return true; |
1036 | } | |
1037 | ||
9861f022 RR |
1038 | bool wxDataViewDateRenderer::GetValue( wxVariant &value ) const |
1039 | { | |
1040 | value = m_date; | |
1041 | return true; | |
1042 | } | |
1043 | ||
52e750fc | 1044 | bool wxDataViewDateRenderer::Render( wxRect cell, wxDC *dc, int state ) |
4ed7af08 | 1045 | { |
4ed7af08 | 1046 | wxString tmp = m_date.FormatDate(); |
52e750fc | 1047 | RenderText( tmp, 0, cell, dc, state ); |
4ed7af08 RR |
1048 | return true; |
1049 | } | |
1050 | ||
9861f022 | 1051 | wxSize wxDataViewDateRenderer::GetSize() const |
4ed7af08 | 1052 | { |
9861f022 | 1053 | const wxDataViewCtrl* view = GetView(); |
4ed7af08 RR |
1054 | wxString tmp = m_date.FormatDate(); |
1055 | wxCoord x,y,d; | |
1056 | view->GetTextExtent( tmp, &x, &y, &d ); | |
1057 | return wxSize(x,y+d); | |
1058 | } | |
1059 | ||
aba9bfd0 | 1060 | bool wxDataViewDateRenderer::Activate( wxRect WXUNUSED(cell), wxDataViewModel *model, |
977a41ec | 1061 | const wxDataViewItem & item, unsigned int col ) |
4ed7af08 RR |
1062 | { |
1063 | wxVariant variant; | |
aba9bfd0 | 1064 | model->GetValue( variant, item, col ); |
4ed7af08 RR |
1065 | wxDateTime value = variant.GetDateTime(); |
1066 | ||
21ead767 | 1067 | #if wxUSE_DATE_RENDERER_POPUP |
baa9ebc4 | 1068 | wxDataViewDateRendererPopupTransient *popup = new wxDataViewDateRendererPopupTransient( |
aba9bfd0 | 1069 | GetOwner()->GetOwner()->GetParent(), &value, model, item, col); |
4ed7af08 RR |
1070 | wxPoint pos = wxGetMousePosition(); |
1071 | popup->Move( pos ); | |
1072 | popup->Layout(); | |
1073 | popup->Popup( popup->m_cal ); | |
21ead767 | 1074 | #else // !wxUSE_DATE_RENDERER_POPUP |
8d0ca292 | 1075 | wxMessageBox(value.Format()); |
21ead767 | 1076 | #endif // wxUSE_DATE_RENDERER_POPUP/!wxUSE_DATE_RENDERER_POPUP |
4ed7af08 RR |
1077 | return true; |
1078 | } | |
1079 | ||
b7fe2261 | 1080 | // --------------------------------------------------------- |
24c4a50f | 1081 | // wxDataViewIconTextRenderer |
b7fe2261 | 1082 | // --------------------------------------------------------- |
24c4a50f RR |
1083 | |
1084 | IMPLEMENT_CLASS(wxDataViewIconTextRenderer, wxDataViewCustomRenderer) | |
1085 | ||
b7fe2261 | 1086 | wxDataViewIconTextRenderer::wxDataViewIconTextRenderer( |
977a41ec | 1087 | const wxString &varianttype, wxDataViewCellMode mode, int align ) : |
24c4a50f RR |
1088 | wxDataViewCustomRenderer( varianttype, mode, align ) |
1089 | { | |
1090 | SetMode(mode); | |
1091 | SetAlignment(align); | |
1092 | } | |
1093 | ||
1094 | wxDataViewIconTextRenderer::~wxDataViewIconTextRenderer() | |
1095 | { | |
1096 | } | |
b7fe2261 | 1097 | |
24c4a50f RR |
1098 | bool wxDataViewIconTextRenderer::SetValue( const wxVariant &value ) |
1099 | { | |
1100 | m_value << value; | |
1101 | return true; | |
1102 | } | |
1103 | ||
b5ec7dd6 | 1104 | bool wxDataViewIconTextRenderer::GetValue( wxVariant& WXUNUSED(value) ) const |
24c4a50f RR |
1105 | { |
1106 | return false; | |
1107 | } | |
b7fe2261 | 1108 | |
24c4a50f RR |
1109 | bool wxDataViewIconTextRenderer::Render( wxRect cell, wxDC *dc, int state ) |
1110 | { | |
52e750fc | 1111 | int xoffset = 0; |
24c4a50f RR |
1112 | const wxIcon &icon = m_value.GetIcon(); |
1113 | if (icon.IsOk()) | |
1114 | { | |
b5ec7dd6 | 1115 | dc->DrawIcon( icon, cell.x, cell.y + ((cell.height - icon.GetHeight()) / 2)); |
52e750fc | 1116 | xoffset = icon.GetWidth()+4; |
24c4a50f | 1117 | } |
b5ec7dd6 | 1118 | |
52e750fc | 1119 | RenderText( m_value.GetText(), xoffset, cell, dc, state ); |
24c4a50f RR |
1120 | |
1121 | return true; | |
1122 | } | |
1123 | ||
1124 | wxSize wxDataViewIconTextRenderer::GetSize() const | |
1125 | { | |
e44ac7bc RR |
1126 | const wxDataViewCtrl *view = GetView(); |
1127 | if (!m_value.GetText().empty()) | |
1128 | { | |
1129 | int x,y; | |
1130 | view->GetTextExtent( m_value.GetText(), &x, &y ); | |
b5ec7dd6 | 1131 | |
e44ac7bc RR |
1132 | if (m_value.GetIcon().IsOk()) |
1133 | x += m_value.GetIcon().GetWidth() + 4; | |
1134 | return wxSize( x, y ); | |
1135 | } | |
1136 | return wxSize(80,20); | |
24c4a50f RR |
1137 | } |
1138 | ||
c937344c | 1139 | wxControl* wxDataViewIconTextRenderer::CreateEditorCtrl(wxWindow *parent, wxRect labelRect, const wxVariant& value) |
24c4a50f | 1140 | { |
c937344c RR |
1141 | wxDataViewIconText iconText; |
1142 | iconText << value; | |
1143 | ||
1144 | wxString text = iconText.GetText(); | |
1145 | ||
1146 | // adjust the label rect to take the width of the icon into account | |
1147 | if (iconText.GetIcon().IsOk()) | |
1148 | { | |
1149 | int w = iconText.GetIcon().GetWidth() + 4; | |
1150 | labelRect.x += w; | |
1151 | labelRect.width -= w; | |
1152 | } | |
1153 | ||
0a807957 RR |
1154 | wxTextCtrl* ctrl = new wxTextCtrl( parent, wxID_ANY, text, |
1155 | wxPoint(labelRect.x,labelRect.y), | |
1156 | wxSize(labelRect.width,labelRect.height) ); | |
1157 | ||
1158 | // select the text in the control an place the cursor at the end | |
1159 | ctrl->SetInsertionPointEnd(); | |
1160 | ctrl->SelectAll(); | |
1161 | ||
1162 | return ctrl; | |
24c4a50f RR |
1163 | } |
1164 | ||
c937344c | 1165 | bool wxDataViewIconTextRenderer::GetValueFromEditorCtrl( wxControl *editor, wxVariant& value ) |
24c4a50f | 1166 | { |
c937344c RR |
1167 | wxTextCtrl *text = (wxTextCtrl*) editor; |
1168 | ||
1169 | wxDataViewIconText iconText(text->GetValue(), m_value.GetIcon()); | |
1170 | value << iconText; | |
1171 | return true; | |
24c4a50f RR |
1172 | } |
1173 | ||
a653c966 RR |
1174 | //----------------------------------------------------------------------------- |
1175 | // wxDataViewDropTarget | |
1176 | //----------------------------------------------------------------------------- | |
1177 | ||
9adeb77a VZ |
1178 | #if wxUSE_DRAG_AND_DROP |
1179 | ||
818d91a9 RR |
1180 | class wxBitmapCanvas: public wxWindow |
1181 | { | |
1182 | public: | |
1183 | wxBitmapCanvas( wxWindow *parent, const wxBitmap &bitmap, const wxSize &size ) : | |
977a41ec | 1184 | wxWindow( parent, wxID_ANY, wxPoint(0,0), size ) |
818d91a9 RR |
1185 | { |
1186 | m_bitmap = bitmap; | |
1187 | Connect( wxEVT_PAINT, wxPaintEventHandler(wxBitmapCanvas::OnPaint) ); | |
1188 | } | |
9adeb77a | 1189 | |
818d91a9 RR |
1190 | void OnPaint( wxPaintEvent &WXUNUSED(event) ) |
1191 | { | |
1192 | wxPaintDC dc(this); | |
1193 | dc.DrawBitmap( m_bitmap, 0, 0); | |
1194 | } | |
9adeb77a | 1195 | |
818d91a9 RR |
1196 | wxBitmap m_bitmap; |
1197 | }; | |
1198 | ||
1199 | class wxDataViewDropSource: public wxDropSource | |
1200 | { | |
1201 | public: | |
1202 | wxDataViewDropSource( wxDataViewMainWindow *win, unsigned int row ) : | |
977a41ec | 1203 | wxDropSource( win ) |
818d91a9 RR |
1204 | { |
1205 | m_win = win; | |
1206 | m_row = row; | |
1207 | m_hint = NULL; | |
1208 | } | |
9adeb77a | 1209 | |
818d91a9 RR |
1210 | ~wxDataViewDropSource() |
1211 | { | |
1212 | delete m_hint; | |
1213 | } | |
9adeb77a | 1214 | |
818d91a9 RR |
1215 | virtual bool GiveFeedback( wxDragResult WXUNUSED(effect) ) |
1216 | { | |
1217 | wxPoint pos = wxGetMousePosition(); | |
9adeb77a | 1218 | |
818d91a9 RR |
1219 | if (!m_hint) |
1220 | { | |
1221 | int liney = m_win->GetLineStart( m_row ); | |
1222 | int linex = 0; | |
1223 | m_win->GetOwner()->CalcUnscrolledPosition( 0, liney, NULL, &liney ); | |
1224 | m_win->ClientToScreen( &linex, &liney ); | |
1225 | m_dist_x = pos.x - linex; | |
1226 | m_dist_y = pos.y - liney; | |
9adeb77a | 1227 | |
818d91a9 RR |
1228 | int indent = 0; |
1229 | wxBitmap ib = m_win->CreateItemBitmap( m_row, indent ); | |
1230 | m_dist_x -= indent; | |
9adeb77a | 1231 | m_hint = new wxFrame( m_win->GetParent(), wxID_ANY, wxEmptyString, |
977a41ec FM |
1232 | wxPoint(pos.x - m_dist_x, pos.y + 5 ), |
1233 | ib.GetSize(), | |
1234 | wxFRAME_TOOL_WINDOW | | |
1235 | wxFRAME_FLOAT_ON_PARENT | | |
1236 | wxFRAME_NO_TASKBAR | | |
1237 | wxNO_BORDER ); | |
818d91a9 RR |
1238 | new wxBitmapCanvas( m_hint, ib, ib.GetSize() ); |
1239 | m_hint->Show(); | |
1240 | } | |
1241 | else | |
1242 | { | |
1243 | m_hint->Move( pos.x - m_dist_x, pos.y + 5 ); | |
1244 | m_hint->SetTransparent( 128 ); | |
1245 | } | |
9adeb77a | 1246 | |
818d91a9 RR |
1247 | return false; |
1248 | } | |
9adeb77a | 1249 | |
818d91a9 RR |
1250 | wxDataViewMainWindow *m_win; |
1251 | unsigned int m_row; | |
1252 | wxFrame *m_hint; | |
1253 | int m_dist_x,m_dist_y; | |
1254 | }; | |
1255 | ||
1256 | ||
a653c966 RR |
1257 | class wxDataViewDropTarget: public wxDropTarget |
1258 | { | |
1259 | public: | |
1260 | wxDataViewDropTarget( wxDataObject *obj, wxDataViewMainWindow *win ) : | |
1261 | wxDropTarget( obj ) | |
1262 | { | |
1263 | m_win = win; | |
1264 | } | |
1265 | ||
1266 | virtual wxDragResult OnDragOver( wxCoord x, wxCoord y, wxDragResult def ) | |
ce468dc2 | 1267 | { |
977a41ec FM |
1268 | wxDataFormat format = GetMatchingPair(); |
1269 | if (format == wxDF_INVALID) | |
1270 | return wxDragNone; | |
1271 | return m_win->OnDragOver( format, x, y, def); | |
ce468dc2 | 1272 | } |
9adeb77a | 1273 | |
a653c966 | 1274 | virtual bool OnDrop( wxCoord x, wxCoord y ) |
ce468dc2 | 1275 | { |
977a41ec FM |
1276 | wxDataFormat format = GetMatchingPair(); |
1277 | if (format == wxDF_INVALID) | |
1278 | return false; | |
1279 | return m_win->OnDrop( format, x, y ); | |
ce468dc2 | 1280 | } |
9adeb77a | 1281 | |
a653c966 | 1282 | virtual wxDragResult OnData( wxCoord x, wxCoord y, wxDragResult def ) |
ce468dc2 | 1283 | { |
977a41ec FM |
1284 | wxDataFormat format = GetMatchingPair(); |
1285 | if (format == wxDF_INVALID) | |
1286 | return wxDragNone; | |
1287 | if (!GetData()) | |
1288 | return wxDragNone; | |
1289 | return m_win->OnData( format, x, y, def ); | |
ce468dc2 | 1290 | } |
9adeb77a | 1291 | |
a653c966 RR |
1292 | virtual void OnLeave() |
1293 | { m_win->OnLeave(); } | |
1294 | ||
1295 | wxDataViewMainWindow *m_win; | |
1296 | }; | |
1297 | ||
9adeb77a VZ |
1298 | #endif // wxUSE_DRAG_AND_DROP |
1299 | ||
0fcce6b9 RR |
1300 | //----------------------------------------------------------------------------- |
1301 | // wxDataViewRenameTimer | |
1302 | //----------------------------------------------------------------------------- | |
1303 | ||
1304 | wxDataViewRenameTimer::wxDataViewRenameTimer( wxDataViewMainWindow *owner ) | |
1305 | { | |
1306 | m_owner = owner; | |
1307 | } | |
1308 | ||
1309 | void wxDataViewRenameTimer::Notify() | |
1310 | { | |
1311 | m_owner->OnRenameTimer(); | |
1312 | } | |
1313 | ||
4ed7af08 RR |
1314 | //----------------------------------------------------------------------------- |
1315 | // wxDataViewMainWindow | |
1316 | //----------------------------------------------------------------------------- | |
1317 | ||
bc4f1ff2 | 1318 | // The tree building helper, declared firstly |
4cef3873 | 1319 | static void BuildTreeHelper( wxDataViewModel * model, wxDataViewItem & item, |
bc4f1ff2 | 1320 | wxDataViewTreeNode * node); |
704c3490 | 1321 | |
0a71f9e9 | 1322 | int LINKAGEMODE wxDataViewSelectionCmp( unsigned int row1, unsigned int row2 ) |
cab07038 RR |
1323 | { |
1324 | if (row1 > row2) return 1; | |
1325 | if (row1 == row2) return 0; | |
1326 | return -1; | |
1327 | } | |
1328 | ||
45778c96 | 1329 | IMPLEMENT_ABSTRACT_CLASS(wxDataViewMainWindow, wxWindow) |
4ed7af08 RR |
1330 | |
1331 | BEGIN_EVENT_TABLE(wxDataViewMainWindow,wxWindow) | |
1332 | EVT_PAINT (wxDataViewMainWindow::OnPaint) | |
1333 | EVT_MOUSE_EVENTS (wxDataViewMainWindow::OnMouse) | |
1334 | EVT_SET_FOCUS (wxDataViewMainWindow::OnSetFocus) | |
cab07038 RR |
1335 | EVT_KILL_FOCUS (wxDataViewMainWindow::OnKillFocus) |
1336 | EVT_CHAR (wxDataViewMainWindow::OnChar) | |
4ed7af08 RR |
1337 | END_EVENT_TABLE() |
1338 | ||
1339 | wxDataViewMainWindow::wxDataViewMainWindow( wxDataViewCtrl *parent, wxWindowID id, | |
1340 | const wxPoint &pos, const wxSize &size, const wxString &name ) : | |
d81ad1f0 | 1341 | wxWindow( parent, id, pos, size, wxWANTS_CHARS|wxBORDER_NONE, name ), |
cab07038 | 1342 | m_selection( wxDataViewSelectionCmp ) |
120b9b05 | 1343 | |
4ed7af08 RR |
1344 | { |
1345 | SetOwner( parent ); | |
f554a14b | 1346 | |
0fcce6b9 RR |
1347 | m_lastOnSame = false; |
1348 | m_renameTimer = new wxDataViewRenameTimer( this ); | |
120b9b05 | 1349 | |
0fcce6b9 RR |
1350 | // TODO: user better initial values/nothing selected |
1351 | m_currentCol = NULL; | |
1352 | m_currentRow = 0; | |
1353 | ||
e44ac7bc | 1354 | m_lineHeight = wxMax( 17, GetCharHeight() + 2 ); // 17 = mini icon height + 1 |
e21f75bd | 1355 | |
9adeb77a | 1356 | #if wxUSE_DRAG_AND_DROP |
e21f75bd RR |
1357 | m_dragCount = 0; |
1358 | m_dragStart = wxPoint(0,0); | |
120b9b05 | 1359 | |
821baf7d RR |
1360 | m_dragEnabled = false; |
1361 | m_dropEnabled = false; | |
9deec111 RR |
1362 | m_dropHint = false; |
1363 | m_dropHintLine = (unsigned int) -1; | |
9adeb77a VZ |
1364 | #endif // wxUSE_DRAG_AND_DROP |
1365 | ||
1366 | m_lineLastClicked = (unsigned int) -1; | |
1367 | m_lineBeforeLastClicked = (unsigned int) -1; | |
1368 | m_lineSelectSingleOnUp = (unsigned int) -1; | |
821baf7d | 1369 | |
cab07038 | 1370 | m_hasFocus = false; |
f554a14b | 1371 | |
72664514 RR |
1372 | SetBackgroundColour( *wxWHITE ); |
1373 | ||
cfa42cb8 JS |
1374 | SetBackgroundStyle(wxBG_STYLE_CUSTOM); |
1375 | ||
069b2e59 | 1376 | m_penRule = wxPen(GetRuleColour()); |
9861f022 | 1377 | |
bc4f1ff2 FM |
1378 | // compose a pen whichcan draw black lines |
1379 | // TODO: maybe there is something system colour to use | |
069b2e59 | 1380 | m_penExpander = wxPen(wxColour(0,0,0)); |
bc4f1ff2 | 1381 | |
aba9bfd0 | 1382 | m_root = new wxDataViewTreeNode( NULL ); |
704c3490 RR |
1383 | m_root->SetHasChildren(true); |
1384 | ||
bc4f1ff2 | 1385 | // Make m_count = -1 will cause the class recaculate the real displaying number of rows. |
59e60167 | 1386 | m_count = -1; |
24c4a50f | 1387 | m_underMouse = NULL; |
4b3feaa7 | 1388 | UpdateDisplay(); |
4ed7af08 RR |
1389 | } |
1390 | ||
1391 | wxDataViewMainWindow::~wxDataViewMainWindow() | |
1392 | { | |
aba9bfd0 | 1393 | DestroyTree(); |
0fcce6b9 RR |
1394 | delete m_renameTimer; |
1395 | } | |
1396 | ||
9adeb77a VZ |
1397 | |
1398 | #if wxUSE_DRAG_AND_DROP | |
a653c966 RR |
1399 | bool wxDataViewMainWindow::EnableDragSource( const wxDataFormat &format ) |
1400 | { | |
1401 | m_dragFormat = format; | |
1402 | m_dragEnabled = format != wxDF_INVALID; | |
9adeb77a | 1403 | |
a653c966 RR |
1404 | return true; |
1405 | } | |
9adeb77a | 1406 | |
a653c966 RR |
1407 | bool wxDataViewMainWindow::EnableDropTarget( const wxDataFormat &format ) |
1408 | { | |
1409 | m_dropFormat = format; | |
1410 | m_dropEnabled = format != wxDF_INVALID; | |
9adeb77a | 1411 | |
a653c966 RR |
1412 | if (m_dropEnabled) |
1413 | SetDropTarget( new wxDataViewDropTarget( new wxCustomDataObject( format ), this ) ); | |
9adeb77a | 1414 | |
a653c966 RR |
1415 | return true; |
1416 | } | |
1417 | ||
9deec111 RR |
1418 | void wxDataViewMainWindow::RemoveDropHint() |
1419 | { | |
1420 | if (m_dropHint) | |
1421 | { | |
1422 | m_dropHint = false; | |
1423 | RefreshRow( m_dropHintLine ); | |
1424 | m_dropHintLine = (unsigned int) -1; | |
1425 | } | |
1426 | } | |
1427 | ||
4cef3873 | 1428 | wxDragResult wxDataViewMainWindow::OnDragOver( wxDataFormat format, wxCoord x, |
bc4f1ff2 | 1429 | wxCoord y, wxDragResult def ) |
a653c966 RR |
1430 | { |
1431 | int xx = x; | |
1432 | int yy = y; | |
1433 | m_owner->CalcUnscrolledPosition( xx, yy, &xx, &yy ); | |
1434 | unsigned int row = GetLineAt( yy ); | |
1435 | ||
1436 | if ((row >= GetRowCount()) || (yy > GetEndOfLastCol())) | |
9adeb77a | 1437 | { |
9deec111 | 1438 | RemoveDropHint(); |
a653c966 | 1439 | return wxDragNone; |
9deec111 | 1440 | } |
a653c966 RR |
1441 | |
1442 | wxDataViewItem item = GetItemByRow( row ); | |
9adeb77a | 1443 | |
a653c966 | 1444 | wxDataViewModel *model = GetOwner()->GetModel(); |
9adeb77a | 1445 | |
a653c966 RR |
1446 | wxDataViewEvent event( wxEVT_COMMAND_DATAVIEW_ITEM_DROP_POSSIBLE, m_owner->GetId() ); |
1447 | event.SetEventObject( m_owner ); | |
1448 | event.SetItem( item ); | |
1449 | event.SetModel( model ); | |
1450 | event.SetDataFormat( format ); | |
1451 | if (!m_owner->HandleWindowEvent( event )) | |
9deec111 RR |
1452 | { |
1453 | RemoveDropHint(); | |
a653c966 | 1454 | return wxDragNone; |
9deec111 | 1455 | } |
a653c966 RR |
1456 | |
1457 | if (!event.IsAllowed()) | |
9deec111 RR |
1458 | { |
1459 | RemoveDropHint(); | |
a653c966 | 1460 | return wxDragNone; |
9deec111 RR |
1461 | } |
1462 | ||
9adeb77a | 1463 | |
9deec111 RR |
1464 | if (m_dropHint && (row != m_dropHintLine)) |
1465 | RefreshRow( m_dropHintLine ); | |
1466 | m_dropHint = true; | |
1467 | m_dropHintLine = row; | |
1468 | RefreshRow( row ); | |
9adeb77a | 1469 | |
a653c966 RR |
1470 | return def; |
1471 | } | |
1472 | ||
1473 | bool wxDataViewMainWindow::OnDrop( wxDataFormat format, wxCoord x, wxCoord y ) | |
1474 | { | |
9deec111 RR |
1475 | RemoveDropHint(); |
1476 | ||
a653c966 RR |
1477 | int xx = x; |
1478 | int yy = y; | |
1479 | m_owner->CalcUnscrolledPosition( xx, yy, &xx, &yy ); | |
1480 | unsigned int row = GetLineAt( yy ); | |
1481 | ||
1482 | if ((row >= GetRowCount()) || (yy > GetEndOfLastCol())) | |
1483 | return false; | |
1484 | ||
1485 | wxDataViewItem item = GetItemByRow( row ); | |
9adeb77a | 1486 | |
a653c966 | 1487 | wxDataViewModel *model = GetOwner()->GetModel(); |
9adeb77a | 1488 | |
a653c966 RR |
1489 | wxDataViewEvent event( wxEVT_COMMAND_DATAVIEW_ITEM_DROP_POSSIBLE, m_owner->GetId() ); |
1490 | event.SetEventObject( m_owner ); | |
1491 | event.SetItem( item ); | |
1492 | event.SetModel( model ); | |
1493 | event.SetDataFormat( format ); | |
1494 | if (!m_owner->HandleWindowEvent( event )) | |
1495 | return false; | |
1496 | ||
1497 | if (!event.IsAllowed()) | |
1498 | return false; | |
9deec111 | 1499 | |
a653c966 RR |
1500 | return true; |
1501 | } | |
1502 | ||
4cef3873 | 1503 | wxDragResult wxDataViewMainWindow::OnData( wxDataFormat format, wxCoord x, wxCoord y, |
bc4f1ff2 | 1504 | wxDragResult def ) |
a653c966 RR |
1505 | { |
1506 | int xx = x; | |
1507 | int yy = y; | |
1508 | m_owner->CalcUnscrolledPosition( xx, yy, &xx, &yy ); | |
1509 | unsigned int row = GetLineAt( yy ); | |
1510 | ||
1511 | if ((row >= GetRowCount()) || (yy > GetEndOfLastCol())) | |
1512 | return wxDragNone; | |
1513 | ||
1514 | wxDataViewItem item = GetItemByRow( row ); | |
9adeb77a | 1515 | |
a653c966 | 1516 | wxDataViewModel *model = GetOwner()->GetModel(); |
9adeb77a | 1517 | |
a653c966 RR |
1518 | wxCustomDataObject *obj = (wxCustomDataObject *) GetDropTarget()->GetDataObject(); |
1519 | ||
1520 | wxDataViewEvent event( wxEVT_COMMAND_DATAVIEW_ITEM_DROP, m_owner->GetId() ); | |
1521 | event.SetEventObject( m_owner ); | |
1522 | event.SetItem( item ); | |
1523 | event.SetModel( model ); | |
1524 | event.SetDataFormat( format ); | |
1525 | event.SetDataSize( obj->GetSize() ); | |
1526 | event.SetDataBuffer( obj->GetData() ); | |
1527 | if (!m_owner->HandleWindowEvent( event )) | |
1528 | return wxDragNone; | |
1529 | ||
1530 | if (!event.IsAllowed()) | |
1531 | return wxDragNone; | |
1532 | ||
1533 | return def; | |
1534 | } | |
1535 | ||
1536 | void wxDataViewMainWindow::OnLeave() | |
1537 | { | |
9deec111 | 1538 | RemoveDropHint(); |
a653c966 RR |
1539 | } |
1540 | ||
818d91a9 RR |
1541 | wxBitmap wxDataViewMainWindow::CreateItemBitmap( unsigned int row, int &indent ) |
1542 | { | |
1543 | int height = GetLineHeight( row ); | |
1544 | int width = 0; | |
1545 | unsigned int cols = GetOwner()->GetColumnCount(); | |
1546 | unsigned int col; | |
1547 | for (col = 0; col < cols; col++) | |
1548 | { | |
1549 | wxDataViewColumn *column = GetOwner()->GetColumnAt(col); | |
1550 | if (column->IsHidden()) | |
1551 | continue; // skip it! | |
1552 | width += column->GetWidth(); | |
1553 | } | |
1554 | ||
1555 | indent = 0; | |
1556 | if (!IsVirtualList()) | |
1557 | { | |
1558 | wxDataViewTreeNode *node = GetTreeNodeByRow(row); | |
1559 | indent = GetOwner()->GetIndent() * node->GetIndentLevel(); | |
4cef3873 | 1560 | indent = indent + m_lineHeight; |
bc4f1ff2 | 1561 | // try to use the m_lineHeight as the expander space |
abdb8c18 | 1562 | |
977a41ec FM |
1563 | if(!node->HasChildren()) |
1564 | delete node; | |
818d91a9 RR |
1565 | } |
1566 | width -= indent; | |
1567 | ||
1568 | wxBitmap bitmap( width, height ); | |
1569 | wxMemoryDC dc( bitmap ); | |
1570 | dc.SetFont( GetFont() ); | |
1571 | dc.SetPen( *wxBLACK_PEN ); | |
1572 | dc.SetBrush( *wxWHITE_BRUSH ); | |
1573 | dc.DrawRectangle( 0,0,width,height ); | |
9adeb77a | 1574 | |
818d91a9 | 1575 | wxDataViewModel *model = m_owner->GetModel(); |
9adeb77a | 1576 | |
818d91a9 RR |
1577 | wxDataViewColumn *expander = GetOwner()->GetExpanderColumn(); |
1578 | if (!expander) | |
1579 | { | |
1580 | // TODO-RTL: last column for RTL support | |
1581 | expander = GetOwner()->GetColumnAt( 0 ); | |
1582 | GetOwner()->SetExpanderColumn(expander); | |
1583 | } | |
9adeb77a VZ |
1584 | |
1585 | ||
818d91a9 RR |
1586 | int x = 0; |
1587 | for (col = 0; col < cols; col++) | |
1588 | { | |
1589 | wxDataViewColumn *column = GetOwner()->GetColumnAt( col ); | |
1590 | wxDataViewRenderer *cell = column->GetRenderer(); | |
1591 | ||
1592 | if (column->IsHidden()) | |
1593 | continue; // skip it! | |
1594 | ||
1595 | width = column->GetWidth(); | |
9adeb77a | 1596 | |
818d91a9 RR |
1597 | if (column == expander) |
1598 | width -= indent; | |
9adeb77a | 1599 | |
818d91a9 RR |
1600 | wxVariant value; |
1601 | wxDataViewItem item = GetItemByRow( row ); | |
1602 | model->GetValue( value, item, column->GetModelColumn()); | |
1603 | cell->SetValue( value ); | |
1604 | ||
1605 | if (cell->GetWantsAttr()) | |
1606 | { | |
1607 | wxDataViewItemAttr attr; | |
1608 | bool ret = model->GetAttr( item, column->GetModelColumn(), attr ); | |
1609 | if (ret) | |
1610 | cell->SetAttr( attr ); | |
1611 | cell->SetHasAttr( ret ); | |
1612 | } | |
1613 | ||
1614 | wxSize size = cell->GetSize(); | |
1615 | size.x = wxMin( 2*PADDING_RIGHTLEFT + size.x, width ); | |
1616 | size.y = height; | |
1617 | wxRect item_rect(x, 0, size.x, size.y); | |
9adeb77a | 1618 | |
818d91a9 RR |
1619 | int align = cell->CalculateAlignment(); |
1620 | // horizontal alignment: | |
1621 | item_rect.x = x; | |
1622 | if (align & wxALIGN_CENTER_HORIZONTAL) | |
1623 | item_rect.x = x + (width / 2) - (size.x / 2); | |
1624 | else if (align & wxALIGN_RIGHT) | |
1625 | item_rect.x = x + width - size.x; | |
bc4f1ff2 | 1626 | // else: wxALIGN_LEFT is the default |
818d91a9 RR |
1627 | |
1628 | // vertical alignment: | |
1629 | item_rect.y = 0; | |
1630 | if (align & wxALIGN_CENTER_VERTICAL) | |
1631 | item_rect.y = (height / 2) - (size.y / 2); | |
1632 | else if (align & wxALIGN_BOTTOM) | |
1633 | item_rect.y = height - size.y; | |
bc4f1ff2 | 1634 | // else: wxALIGN_TOP is the default |
818d91a9 RR |
1635 | |
1636 | // add padding | |
1637 | item_rect.x += PADDING_RIGHTLEFT; | |
1638 | item_rect.width = size.x - 2 * PADDING_RIGHTLEFT; | |
1639 | ||
bc4f1ff2 | 1640 | // dc.SetClippingRegion( item_rect ); |
818d91a9 | 1641 | cell->Render( item_rect, &dc, 0 ); |
bc4f1ff2 | 1642 | // dc.DestroyClippingRegion(); |
9adeb77a | 1643 | |
818d91a9 RR |
1644 | x += width; |
1645 | } | |
9adeb77a | 1646 | |
818d91a9 RR |
1647 | return bitmap; |
1648 | } | |
1649 | ||
9adeb77a VZ |
1650 | #endif // wxUSE_DRAG_AND_DROP |
1651 | ||
1652 | ||
1117d56f | 1653 | void wxDataViewMainWindow::OnPaint( wxPaintEvent &WXUNUSED(event) ) |
0fcce6b9 | 1654 | { |
1117d56f RR |
1655 | wxDataViewModel *model = GetOwner()->GetModel(); |
1656 | wxAutoBufferedPaintDC dc( this ); | |
0fcce6b9 | 1657 | |
1117d56f RR |
1658 | #ifdef __WXMSW__ |
1659 | dc.SetPen( *wxTRANSPARENT_PEN ); | |
1660 | dc.SetBrush( wxBrush( GetBackgroundColour()) ); | |
1661 | dc.SetBrush( *wxWHITE_BRUSH ); | |
1662 | wxSize size( GetClientSize() ); | |
1663 | dc.DrawRectangle( 0,0,size.x,size.y ); | |
1664 | #endif | |
1665 | ||
1666 | // prepare the DC | |
1667 | GetOwner()->PrepareDC( dc ); | |
1668 | dc.SetFont( GetFont() ); | |
1669 | ||
1670 | wxRect update = GetUpdateRegion().GetBox(); | |
1671 | m_owner->CalcUnscrolledPosition( update.x, update.y, &update.x, &update.y ); | |
1672 | ||
1673 | // compute which items needs to be redrawn | |
344ed1f3 | 1674 | unsigned int item_start = GetLineAt( wxMax(0,update.y) ); |
1117d56f | 1675 | unsigned int item_count = |
344ed1f3 | 1676 | wxMin( (int)( GetLineAt( wxMax(0,update.y+update.height) ) - item_start + 1), |
977a41ec | 1677 | (int)(GetRowCount( ) - item_start)); |
1117d56f RR |
1678 | unsigned int item_last = item_start + item_count; |
1679 | ||
1680 | // compute which columns needs to be redrawn | |
9861f022 | 1681 | unsigned int cols = GetOwner()->GetColumnCount(); |
1117d56f | 1682 | unsigned int col_start = 0; |
e822d1bd | 1683 | unsigned int x_start; |
1117d56f | 1684 | for (x_start = 0; col_start < cols; col_start++) |
0fcce6b9 | 1685 | { |
702f5349 | 1686 | wxDataViewColumn *col = GetOwner()->GetColumnAt(col_start); |
1117d56f | 1687 | if (col->IsHidden()) |
9861f022 RR |
1688 | continue; // skip it! |
1689 | ||
1117d56f RR |
1690 | unsigned int w = col->GetWidth(); |
1691 | if (x_start+w >= (unsigned int)update.x) | |
0fcce6b9 | 1692 | break; |
0fcce6b9 | 1693 | |
1117d56f RR |
1694 | x_start += w; |
1695 | } | |
1e510b1e | 1696 | |
1117d56f RR |
1697 | unsigned int col_last = col_start; |
1698 | unsigned int x_last = x_start; | |
1699 | for (; col_last < cols; col_last++) | |
1700 | { | |
702f5349 | 1701 | wxDataViewColumn *col = GetOwner()->GetColumnAt(col_last); |
1117d56f RR |
1702 | if (col->IsHidden()) |
1703 | continue; // skip it! | |
afebb87b | 1704 | |
1117d56f RR |
1705 | if (x_last > (unsigned int)update.GetRight()) |
1706 | break; | |
4ed7af08 | 1707 | |
1117d56f RR |
1708 | x_last += col->GetWidth(); |
1709 | } | |
d5025dc0 | 1710 | |
1117d56f RR |
1711 | // Draw horizontal rules if required |
1712 | if ( m_owner->HasFlag(wxDV_HORIZ_RULES) ) | |
1713 | { | |
1714 | dc.SetPen(m_penRule); | |
1715 | dc.SetBrush(*wxTRANSPARENT_BRUSH); | |
aba9bfd0 | 1716 | |
de4bf0b3 | 1717 | for (unsigned int i = item_start; i <= item_last; i++) |
1117d56f | 1718 | { |
344ed1f3 | 1719 | int y = GetLineStart( i ); |
1117d56f RR |
1720 | dc.DrawLine(x_start, y, x_last, y); |
1721 | } | |
1722 | } | |
aba9bfd0 | 1723 | |
1117d56f RR |
1724 | // Draw vertical rules if required |
1725 | if ( m_owner->HasFlag(wxDV_VERT_RULES) ) | |
b7e9f8b1 | 1726 | { |
1117d56f RR |
1727 | dc.SetPen(m_penRule); |
1728 | dc.SetBrush(*wxTRANSPARENT_BRUSH); | |
b7e9f8b1 | 1729 | |
1117d56f RR |
1730 | int x = x_start; |
1731 | for (unsigned int i = col_start; i < col_last; i++) | |
1732 | { | |
702f5349 | 1733 | wxDataViewColumn *col = GetOwner()->GetColumnAt(i); |
1117d56f RR |
1734 | if (col->IsHidden()) |
1735 | continue; // skip it | |
d47db7e0 | 1736 | |
344ed1f3 RR |
1737 | dc.DrawLine(x, GetLineStart( item_start ), |
1738 | x, GetLineStart( item_last ) ); | |
b7e9f8b1 | 1739 | |
1117d56f RR |
1740 | x += col->GetWidth(); |
1741 | } | |
1742 | ||
1743 | // Draw last vertical rule | |
344ed1f3 RR |
1744 | dc.DrawLine(x, GetLineStart( item_start ), |
1745 | x, GetLineStart( item_last ) ); | |
1117d56f RR |
1746 | } |
1747 | ||
1748 | // redraw the background for the items which are selected/current | |
1749 | for (unsigned int item = item_start; item < item_last; item++) | |
aba9bfd0 | 1750 | { |
1117d56f RR |
1751 | bool selected = m_selection.Index( item ) != wxNOT_FOUND; |
1752 | if (selected || item == m_currentRow) | |
d5025dc0 | 1753 | { |
1117d56f RR |
1754 | int flags = selected ? (int)wxCONTROL_SELECTED : 0; |
1755 | if (item == m_currentRow) | |
1756 | flags |= wxCONTROL_CURRENT; | |
1757 | if (m_hasFocus) | |
1758 | flags |= wxCONTROL_FOCUSED; | |
d47db7e0 | 1759 | |
344ed1f3 | 1760 | wxRect rect( x_start, GetLineStart( item ), x_last, GetLineHeight( item ) ); |
1117d56f RR |
1761 | wxRendererNative::Get().DrawItemSelectionRect |
1762 | ( | |
1763 | this, | |
1764 | dc, | |
1765 | rect, | |
1766 | flags | |
1767 | ); | |
d47db7e0 | 1768 | } |
aba9bfd0 | 1769 | } |
9adeb77a VZ |
1770 | |
1771 | #if wxUSE_DRAG_AND_DROP | |
9deec111 | 1772 | if (m_dropHint) |
9adeb77a VZ |
1773 | { |
1774 | wxRect rect( x_start, GetLineStart( m_dropHintLine ), | |
977a41ec | 1775 | x_last, GetLineHeight( m_dropHintLine ) ); |
9deec111 RR |
1776 | dc.SetPen( *wxBLACK_PEN ); |
1777 | dc.SetBrush( *wxTRANSPARENT_BRUSH ); | |
1778 | dc.DrawRectangle( rect ); | |
1779 | } | |
9adeb77a | 1780 | #endif // wxUSE_DRAG_AND_DROP |
a0f3af5f | 1781 | |
1117d56f RR |
1782 | wxDataViewColumn *expander = GetOwner()->GetExpanderColumn(); |
1783 | if (!expander) | |
8b6cf9bf | 1784 | { |
702f5349 VZ |
1785 | // TODO-RTL: last column for RTL support |
1786 | expander = GetOwner()->GetColumnAt( 0 ); | |
1117d56f | 1787 | GetOwner()->SetExpanderColumn(expander); |
8b6cf9bf | 1788 | } |
d47db7e0 | 1789 | |
344ed1f3 | 1790 | // redraw all cells for all rows which must be repainted and all columns |
1117d56f RR |
1791 | wxRect cell_rect; |
1792 | cell_rect.x = x_start; | |
1117d56f | 1793 | for (unsigned int i = col_start; i < col_last; i++) |
d47db7e0 | 1794 | { |
702f5349 | 1795 | wxDataViewColumn *col = GetOwner()->GetColumnAt( i ); |
1117d56f RR |
1796 | wxDataViewRenderer *cell = col->GetRenderer(); |
1797 | cell_rect.width = col->GetWidth(); | |
d47db7e0 | 1798 | |
1117d56f | 1799 | if (col->IsHidden()) |
344ed1f3 | 1800 | continue; // skip it! |
fbda518c | 1801 | |
1117d56f RR |
1802 | for (unsigned int item = item_start; item < item_last; item++) |
1803 | { | |
1804 | // get the cell value and set it into the renderer | |
1805 | wxVariant value; | |
1806 | wxDataViewTreeNode *node = NULL; | |
1807 | wxDataViewItem dataitem; | |
cfa42cb8 | 1808 | |
344ed1f3 | 1809 | if (!IsVirtualList()) |
1117d56f RR |
1810 | { |
1811 | node = GetTreeNodeByRow(item); | |
1812 | if( node == NULL ) | |
1813 | continue; | |
a0f3af5f | 1814 | |
1117d56f | 1815 | dataitem = node->GetItem(); |
704c3490 | 1816 | |
4cef3873 | 1817 | if ((i > 0) && model->IsContainer(dataitem) && |
bc4f1ff2 | 1818 | !model->HasContainerColumns(dataitem)) |
1117d56f RR |
1819 | continue; |
1820 | } | |
1821 | else | |
1822 | { | |
86ba79ed | 1823 | dataitem = wxDataViewItem( wxUIntToPtr(item+1) ); |
1117d56f | 1824 | } |
8b6cf9bf | 1825 | |
1117d56f RR |
1826 | model->GetValue( value, dataitem, col->GetModelColumn()); |
1827 | cell->SetValue( value ); | |
cfa42cb8 | 1828 | |
1117d56f RR |
1829 | if (cell->GetWantsAttr()) |
1830 | { | |
1831 | wxDataViewItemAttr attr; | |
1832 | bool ret = model->GetAttr( dataitem, col->GetModelColumn(), attr ); | |
1833 | if (ret) | |
1834 | cell->SetAttr( attr ); | |
1835 | cell->SetHasAttr( ret ); | |
1836 | } | |
8b6cf9bf | 1837 | |
c9287446 | 1838 | // update cell_rect |
344ed1f3 | 1839 | cell_rect.y = GetLineStart( item ); |
bc4f1ff2 | 1840 | cell_rect.height = GetLineHeight( item ); |
8b6cf9bf | 1841 | |
bc4f1ff2 | 1842 | // Draw the expander here. |
1117d56f | 1843 | int indent = 0; |
344ed1f3 | 1844 | if ((!IsVirtualList()) && (col == expander)) |
1117d56f RR |
1845 | { |
1846 | indent = node->GetIndentLevel(); | |
cfa42cb8 | 1847 | |
bc4f1ff2 | 1848 | // Calculate the indent first |
1117d56f RR |
1849 | indent = cell_rect.x + GetOwner()->GetIndent() * indent; |
1850 | ||
1851 | int expander_width = m_lineHeight - 2*EXPANDER_MARGIN; | |
bc4f1ff2 | 1852 | |
1117d56f | 1853 | // change the cell_rect.x to the appropriate pos |
bc4f1ff2 | 1854 | int expander_x = indent + EXPANDER_MARGIN; |
4cef3873 | 1855 | int expander_y = cell_rect.y + EXPANDER_MARGIN + (GetLineHeight(item) / 2) |
bc4f1ff2 FM |
1856 | - (expander_width/2) - EXPANDER_OFFSET; |
1857 | ||
4cef3873 | 1858 | indent = indent + m_lineHeight; |
bc4f1ff2 FM |
1859 | // try to use the m_lineHeight as the expander space |
1860 | ||
1117d56f RR |
1861 | dc.SetPen( m_penExpander ); |
1862 | dc.SetBrush( wxNullBrush ); | |
1863 | if( node->HasChildren() ) | |
1864 | { | |
1865 | wxRect rect( expander_x , expander_y, expander_width, expander_width); | |
1866 | int flag = 0; | |
1867 | if (m_underMouse == node) | |
1868 | { | |
1869 | flag |= wxCONTROL_CURRENT; | |
1870 | } | |
1871 | if( node->IsOpen() ) | |
4cef3873 | 1872 | wxRendererNative::Get().DrawTreeItemButton( this, dc, rect, |
bc4f1ff2 | 1873 | flag|wxCONTROL_EXPANDED ); |
1117d56f RR |
1874 | else |
1875 | wxRendererNative::Get().DrawTreeItemButton( this, dc, rect, flag); | |
1876 | } | |
bc4f1ff2 FM |
1877 | |
1878 | // force the expander column to left-center align | |
977a41ec | 1879 | cell->SetAlignment( wxALIGN_CENTER_VERTICAL ); |
1117d56f | 1880 | } |
74123073 RR |
1881 | if (node && !node->HasChildren()) |
1882 | { | |
1883 | // Yes, if the node does not have any child, it must be a leaf which | |
1884 | // mean that it is a temporarily created by GetTreeNodeByRow | |
59e60167 | 1885 | wxDELETE(node); |
74123073 | 1886 | } |
1117d56f RR |
1887 | |
1888 | // cannot be bigger than allocated space | |
1889 | wxSize size = cell->GetSize(); | |
bc4f1ff2 | 1890 | |
4cef3873 | 1891 | // Because of the tree structure indent, here we should minus the width |
bc4f1ff2 | 1892 | // of the cell for drawing |
1117d56f RR |
1893 | size.x = wxMin( size.x + 2*PADDING_RIGHTLEFT, cell_rect.width - indent ); |
1894 | // size.y = wxMin( size.y, cell_rect.height ); | |
1895 | size.y = cell_rect.height; | |
1896 | ||
1897 | wxRect item_rect(cell_rect.GetTopLeft(), size); | |
e51bf699 | 1898 | int align = cell->CalculateAlignment(); |
1117d56f RR |
1899 | |
1900 | // horizontal alignment: | |
1901 | item_rect.x = cell_rect.x; | |
1902 | if (align & wxALIGN_CENTER_HORIZONTAL) | |
1903 | item_rect.x = cell_rect.x + (cell_rect.width / 2) - (size.x / 2); | |
1904 | else if (align & wxALIGN_RIGHT) | |
1905 | item_rect.x = cell_rect.x + cell_rect.width - size.x; | |
bc4f1ff2 | 1906 | // else: wxALIGN_LEFT is the default |
1117d56f RR |
1907 | |
1908 | // vertical alignment: | |
1909 | item_rect.y = cell_rect.y; | |
1910 | if (align & wxALIGN_CENTER_VERTICAL) | |
1911 | item_rect.y = cell_rect.y + (cell_rect.height / 2) - (size.y / 2); | |
1912 | else if (align & wxALIGN_BOTTOM) | |
1913 | item_rect.y = cell_rect.y + cell_rect.height - size.y; | |
bc4f1ff2 | 1914 | // else: wxALIGN_TOP is the default |
1117d56f RR |
1915 | |
1916 | // add padding | |
1917 | item_rect.x += PADDING_RIGHTLEFT; | |
1918 | item_rect.width = size.x - 2 * PADDING_RIGHTLEFT; | |
1919 | ||
bc4f1ff2 | 1920 | // Here we add the tree indent |
1117d56f RR |
1921 | item_rect.x += indent; |
1922 | ||
1923 | int state = 0; | |
1924 | if (m_hasFocus && (m_selection.Index(item) != wxNOT_FOUND)) | |
1925 | state |= wxDATAVIEW_CELL_SELECTED; | |
1926 | ||
1927 | // TODO: it would be much more efficient to create a clipping | |
1928 | // region for the entire column being rendered (in the OnPaint | |
1929 | // of wxDataViewMainWindow) instead of a single clip region for | |
1930 | // each cell. However it would mean that each renderer should | |
1931 | // respect the given wxRect's top & bottom coords, eventually | |
1932 | // violating only the left & right coords - however the user can | |
1933 | // make its own renderer and thus we cannot be sure of that. | |
1934 | dc.SetClippingRegion( item_rect ); | |
1935 | cell->Render( item_rect, &dc, state ); | |
1936 | dc.DestroyClippingRegion(); | |
1937 | } | |
1938 | ||
1939 | cell_rect.x += cell_rect.width; | |
1940 | } | |
1941 | } | |
1942 | ||
1943 | void wxDataViewMainWindow::OnRenameTimer() | |
1944 | { | |
1945 | // We have to call this here because changes may just have | |
1946 | // been made and no screen update taken place. | |
1947 | if ( m_dirty ) | |
977a41ec FM |
1948 | { |
1949 | // TODO: use wxTheApp->SafeYieldFor(NULL, wxEVT_CATEGORY_UI) instead | |
1950 | // (needs to be tested!) | |
1117d56f | 1951 | wxSafeYield(); |
977a41ec | 1952 | } |
1117d56f | 1953 | |
0a807957 | 1954 | wxDataViewItem item = GetItemByRow( m_currentRow ); |
1117d56f | 1955 | |
0a807957 | 1956 | wxRect labelRect = GetItemRect(item, m_currentCol); |
1117d56f | 1957 | |
1117d56f | 1958 | m_currentCol->GetRenderer()->StartEditing( item, labelRect ); |
1117d56f RR |
1959 | } |
1960 | ||
bc4f1ff2 | 1961 | //----------------------------------------------------------------------------- |
1117d56f | 1962 | // Helper class for do operation on the tree node |
bc4f1ff2 | 1963 | //----------------------------------------------------------------------------- |
1117d56f RR |
1964 | class DoJob |
1965 | { | |
1966 | public: | |
59e60167 VZ |
1967 | DoJob() { } |
1968 | virtual ~DoJob() { } | |
1117d56f | 1969 | |
bc4f1ff2 | 1970 | // The return value control how the tree-walker tranverse the tree |
1117d56f RR |
1971 | // 0: Job done, stop tranverse and return |
1972 | // 1: Ignore the current node's subtree and continue | |
1973 | // 2: Job not done, continue | |
1974 | enum { OK = 0 , IGR = 1, CONT = 2 }; | |
59e60167 | 1975 | virtual int operator() ( wxDataViewTreeNode * node ) = 0; |
1117d56f RR |
1976 | virtual int operator() ( void * n ) = 0; |
1977 | }; | |
1978 | ||
1979 | bool Walker( wxDataViewTreeNode * node, DoJob & func ) | |
1980 | { | |
1981 | if( node==NULL ) | |
1982 | return false; | |
1983 | ||
1984 | switch( func( node ) ) | |
1985 | { | |
1986 | case DoJob::OK : | |
59e60167 | 1987 | return true; |
1117d56f RR |
1988 | case DoJob::IGR: |
1989 | return false; | |
1990 | case DoJob::CONT: | |
59e60167 VZ |
1991 | default: |
1992 | ; | |
1117d56f RR |
1993 | } |
1994 | ||
1995 | wxDataViewTreeNodes nodes = node->GetNodes(); | |
1996 | wxDataViewTreeLeaves leaves = node->GetChildren(); | |
1997 | ||
1998 | int len_nodes = nodes.GetCount(); | |
1999 | int len = leaves.GetCount(); | |
2000 | int i = 0, nodes_i = 0; | |
2001 | ||
59e60167 | 2002 | for(; i < len; i ++ ) |
1117d56f RR |
2003 | { |
2004 | void * n = leaves[i]; | |
2005 | if( nodes_i < len_nodes && n == nodes[nodes_i]->GetItem().GetID() ) | |
2006 | { | |
2007 | wxDataViewTreeNode * nd = nodes[nodes_i]; | |
2008 | nodes_i++; | |
2009 | ||
2010 | if( Walker( nd , func ) ) | |
2011 | return true; | |
2012 | ||
2013 | } | |
2014 | else | |
2015 | switch( func( n ) ) | |
2016 | { | |
2017 | case DoJob::OK : | |
59e60167 | 2018 | return true; |
1117d56f RR |
2019 | case DoJob::IGR: |
2020 | continue; | |
2021 | case DoJob::CONT: | |
2022 | default: | |
977a41ec | 2023 | ; |
1117d56f RR |
2024 | } |
2025 | } | |
2026 | return false; | |
2027 | } | |
2028 | ||
2029 | bool wxDataViewMainWindow::ItemAdded(const wxDataViewItem & parent, const wxDataViewItem & item) | |
2030 | { | |
86ba79ed | 2031 | if (IsVirtualList()) |
1117d56f | 2032 | { |
49d2b75d RR |
2033 | wxDataViewVirtualListModel *list_model = |
2034 | (wxDataViewVirtualListModel*) GetOwner()->GetModel(); | |
2035 | m_count = list_model->GetCount(); | |
1117d56f RR |
2036 | UpdateDisplay(); |
2037 | return true; | |
2038 | } | |
cfa42cb8 | 2039 | |
1117d56f RR |
2040 | SortPrepare(); |
2041 | ||
2042 | wxDataViewTreeNode * node; | |
2043 | node = FindNode(parent); | |
2044 | ||
2045 | if( node == NULL ) | |
2046 | return false; | |
2047 | ||
2048 | node->SetHasChildren( true ); | |
2049 | ||
2050 | if( g_model->IsContainer( item ) ) | |
2051 | { | |
2052 | wxDataViewTreeNode * newnode = new wxDataViewTreeNode( node ); | |
2053 | newnode->SetItem(item); | |
2054 | newnode->SetHasChildren( true ); | |
2055 | node->AddNode( newnode); | |
2056 | } | |
2057 | else | |
2058 | node->AddLeaf( item.GetID() ); | |
2059 | ||
2060 | node->ChangeSubTreeCount(1); | |
2061 | ||
2062 | m_count = -1; | |
2063 | UpdateDisplay(); | |
2064 | ||
2065 | return true; | |
2066 | } | |
2067 | ||
74123073 | 2068 | static void DestroyTreeHelper( wxDataViewTreeNode * node); |
1117d56f RR |
2069 | |
2070 | bool wxDataViewMainWindow::ItemDeleted(const wxDataViewItem& parent, | |
86ba79ed | 2071 | const wxDataViewItem& item) |
1117d56f | 2072 | { |
86ba79ed | 2073 | if (IsVirtualList()) |
1117d56f | 2074 | { |
49d2b75d RR |
2075 | wxDataViewVirtualListModel *list_model = |
2076 | (wxDataViewVirtualListModel*) GetOwner()->GetModel(); | |
2077 | m_count = list_model->GetCount(); | |
2078 | ||
1117d56f RR |
2079 | if( m_currentRow > GetRowCount() ) |
2080 | m_currentRow = m_count - 1; | |
2081 | ||
86ba79ed | 2082 | // TODO: why empty the entire selection? |
1117d56f | 2083 | m_selection.Empty(); |
cfa42cb8 | 2084 | |
1117d56f RR |
2085 | UpdateDisplay(); |
2086 | ||
2087 | return true; | |
2088 | } | |
2089 | ||
2090 | wxDataViewTreeNode * node = FindNode(parent); | |
b7fe2261 | 2091 | |
c59a09cf | 2092 | wxCHECK_MSG( node != NULL, false, "item not found" ); |
4cef3873 | 2093 | wxCHECK_MSG( node->GetChildren().Index( item.GetID() ) != wxNOT_FOUND, |
bc4f1ff2 | 2094 | false, "item not found" ); |
351461fc | 2095 | |
d47db7e0 RR |
2096 | int sub = -1; |
2097 | node->GetChildren().Remove( item.GetID() ); | |
bc4f1ff2 | 2098 | // Manipolate selection |
fbda518c RR |
2099 | if( m_selection.GetCount() > 1 ) |
2100 | { | |
fbda518c | 2101 | m_selection.Empty(); |
fbda518c | 2102 | } |
24c4a50f RR |
2103 | bool isContainer = false; |
2104 | wxDataViewTreeNodes nds = node->GetNodes(); | |
b7fe2261 VZ |
2105 | for (size_t i = 0; i < nds.GetCount(); i ++) |
2106 | { | |
24c4a50f RR |
2107 | if (nds[i]->GetItem() == item) |
2108 | { | |
2109 | isContainer = true; | |
2110 | break; | |
2111 | } | |
2112 | } | |
2113 | if( isContainer ) | |
d47db7e0 | 2114 | { |
a8505db0 | 2115 | wxDataViewTreeNode * n = NULL; |
d47db7e0 RR |
2116 | wxDataViewTreeNodes nodes = node->GetNodes(); |
2117 | int len = nodes.GetCount(); | |
59e60167 | 2118 | for( int i = 0; i < len; i ++) |
d47db7e0 RR |
2119 | { |
2120 | if( nodes[i]->GetItem() == item ) | |
2121 | { | |
2122 | n = nodes[i]; | |
2123 | break; | |
2124 | } | |
2125 | } | |
a8505db0 | 2126 | |
c59a09cf | 2127 | wxCHECK_MSG( n != NULL, false, "item not found" ); |
a8505db0 | 2128 | |
d47db7e0 RR |
2129 | node->GetNodes().Remove( n ); |
2130 | sub -= n->GetSubTreeCount(); | |
74123073 | 2131 | ::DestroyTreeHelper(n); |
d47db7e0 | 2132 | } |
bc4f1ff2 | 2133 | // Make the row number invalid and get a new valid one when user call GetRowCount |
442c56e6 | 2134 | m_count = -1; |
d47db7e0 | 2135 | node->ChangeSubTreeCount(sub); |
24c4a50f | 2136 | |
bc4f1ff2 | 2137 | // Change the current row to the last row if the current exceed the max row number |
d47db7e0 RR |
2138 | if( m_currentRow > GetRowCount() ) |
2139 | m_currentRow = m_count - 1; | |
351461fc | 2140 | |
99d471a5 | 2141 | UpdateDisplay(); |
b7fe2261 | 2142 | |
99d471a5 | 2143 | return true; |
a0f3af5f RR |
2144 | } |
2145 | ||
aba9bfd0 | 2146 | bool wxDataViewMainWindow::ItemChanged(const wxDataViewItem & item) |
a0f3af5f | 2147 | { |
66e09788 | 2148 | SortPrepare(); |
b7e9f8b1 RR |
2149 | g_model->Resort(); |
2150 | ||
bc4f1ff2 | 2151 | // Send event |
6608fdab RR |
2152 | wxWindow *parent = GetParent(); |
2153 | wxDataViewEvent le(wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED, parent->GetId()); | |
2154 | le.SetEventObject(parent); | |
2155 | le.SetModel(GetOwner()->GetModel()); | |
2156 | le.SetItem(item); | |
2157 | parent->GetEventHandler()->ProcessEvent(le); | |
b5ec7dd6 | 2158 | |
99d471a5 | 2159 | return true; |
a0f3af5f RR |
2160 | } |
2161 | ||
b7e9f8b1 | 2162 | bool wxDataViewMainWindow::ValueChanged( const wxDataViewItem & item, unsigned int col ) |
a0f3af5f | 2163 | { |
9861f022 | 2164 | // NOTE: to be valid, we cannot use e.g. INT_MAX - 1 |
aba9bfd0 | 2165 | /*#define MAX_VIRTUAL_WIDTH 100000 |
9861f022 RR |
2166 | |
2167 | wxRect rect( 0, row*m_lineHeight, MAX_VIRTUAL_WIDTH, m_lineHeight ); | |
0fdc2321 RR |
2168 | m_owner->CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y ); |
2169 | Refresh( true, &rect ); | |
2170 | ||
2171 | return true; | |
aba9bfd0 | 2172 | */ |
66e09788 | 2173 | SortPrepare(); |
b7e9f8b1 RR |
2174 | g_model->Resort(); |
2175 | ||
bc4f1ff2 | 2176 | // Send event |
b7e9f8b1 | 2177 | wxWindow *parent = GetParent(); |
6608fdab | 2178 | wxDataViewEvent le(wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED, parent->GetId()); |
b7e9f8b1 RR |
2179 | le.SetEventObject(parent); |
2180 | le.SetModel(GetOwner()->GetModel()); | |
2181 | le.SetItem(item); | |
2182 | le.SetColumn(col); | |
2183 | le.SetDataViewColumn(GetOwner()->GetColumn(col)); | |
2184 | parent->GetEventHandler()->ProcessEvent(le); | |
d47db7e0 | 2185 | |
0fcce6b9 | 2186 | return true; |
a0f3af5f RR |
2187 | } |
2188 | ||
2189 | bool wxDataViewMainWindow::Cleared() | |
2190 | { | |
704c3490 | 2191 | DestroyTree(); |
cfa42cb8 | 2192 | |
33ba5a05 RR |
2193 | SortPrepare(); |
2194 | BuildTree( GetOwner()->GetModel() ); | |
cfa42cb8 | 2195 | |
99d471a5 | 2196 | UpdateDisplay(); |
b7e9f8b1 | 2197 | |
99d471a5 | 2198 | return true; |
a0f3af5f RR |
2199 | } |
2200 | ||
4b3feaa7 RR |
2201 | void wxDataViewMainWindow::UpdateDisplay() |
2202 | { | |
2203 | m_dirty = true; | |
2204 | } | |
2205 | ||
2206 | void wxDataViewMainWindow::OnInternalIdle() | |
2207 | { | |
2208 | wxWindow::OnInternalIdle(); | |
f554a14b | 2209 | |
4b3feaa7 RR |
2210 | if (m_dirty) |
2211 | { | |
2212 | RecalculateDisplay(); | |
2213 | m_dirty = false; | |
2214 | } | |
2215 | } | |
2216 | ||
2217 | void wxDataViewMainWindow::RecalculateDisplay() | |
2218 | { | |
aba9bfd0 | 2219 | wxDataViewModel *model = GetOwner()->GetModel(); |
4b3feaa7 RR |
2220 | if (!model) |
2221 | { | |
2222 | Refresh(); | |
2223 | return; | |
2224 | } | |
f554a14b | 2225 | |
9861f022 | 2226 | int width = GetEndOfLastCol(); |
344ed1f3 | 2227 | int height = GetLineStart( GetRowCount() ); |
4b3feaa7 RR |
2228 | |
2229 | SetVirtualSize( width, height ); | |
2230 | GetOwner()->SetScrollRate( 10, m_lineHeight ); | |
f554a14b | 2231 | |
4b3feaa7 RR |
2232 | Refresh(); |
2233 | } | |
2234 | ||
2235 | void wxDataViewMainWindow::ScrollWindow( int dx, int dy, const wxRect *rect ) | |
2236 | { | |
2237 | wxWindow::ScrollWindow( dx, dy, rect ); | |
9861f022 RR |
2238 | |
2239 | if (GetOwner()->m_headerArea) | |
2240 | GetOwner()->m_headerArea->ScrollWindow( dx, 0 ); | |
4b3feaa7 RR |
2241 | } |
2242 | ||
fbda518c | 2243 | void wxDataViewMainWindow::ScrollTo( int rows, int column ) |
b7e9f8b1 RR |
2244 | { |
2245 | int x, y; | |
2246 | m_owner->GetScrollPixelsPerUnit( &x, &y ); | |
344ed1f3 | 2247 | int sy = GetLineStart( rows )/y; |
fbda518c RR |
2248 | int sx = 0; |
2249 | if( column != -1 ) | |
2250 | { | |
2251 | wxRect rect = GetClientRect(); | |
67be459b | 2252 | int colnum = 0; |
dd639a4f | 2253 | int x_start, w = 0; |
fbda518c RR |
2254 | int xx, yy, xe; |
2255 | m_owner->CalcUnscrolledPosition( rect.x, rect.y, &xx, &yy ); | |
2256 | for (x_start = 0; colnum < column; colnum++) | |
2257 | { | |
702f5349 | 2258 | wxDataViewColumn *col = GetOwner()->GetColumnAt(colnum); |
fbda518c RR |
2259 | if (col->IsHidden()) |
2260 | continue; // skip it! | |
2261 | ||
2262 | w = col->GetWidth(); | |
2263 | x_start += w; | |
2264 | } | |
2265 | ||
e822d1bd | 2266 | int x_end = x_start + w; |
fbda518c RR |
2267 | xe = xx + rect.width; |
2268 | if( x_end > xe ) | |
2269 | { | |
2270 | sx = ( xx + x_end - xe )/x; | |
2271 | } | |
2272 | if( x_start < xx ) | |
2273 | { | |
b7fe2261 | 2274 | sx = x_start/x; |
fbda518c RR |
2275 | } |
2276 | } | |
2277 | m_owner->Scroll( sx, sy ); | |
b7e9f8b1 RR |
2278 | } |
2279 | ||
9861f022 | 2280 | int wxDataViewMainWindow::GetCountPerPage() const |
cab07038 RR |
2281 | { |
2282 | wxSize size = GetClientSize(); | |
2283 | return size.y / m_lineHeight; | |
2284 | } | |
2285 | ||
9861f022 | 2286 | int wxDataViewMainWindow::GetEndOfLastCol() const |
e21f75bd RR |
2287 | { |
2288 | int width = 0; | |
0a71f9e9 | 2289 | unsigned int i; |
9861f022 | 2290 | for (i = 0; i < GetOwner()->GetColumnCount(); i++) |
e21f75bd | 2291 | { |
c741d33f | 2292 | const wxDataViewColumn *c = |
702f5349 | 2293 | const_cast<wxDataViewCtrl*>(GetOwner())->GetColumnAt( i ); |
9861f022 RR |
2294 | |
2295 | if (!c->IsHidden()) | |
2296 | width += c->GetWidth(); | |
e21f75bd RR |
2297 | } |
2298 | return width; | |
2299 | } | |
2300 | ||
9861f022 | 2301 | unsigned int wxDataViewMainWindow::GetFirstVisibleRow() const |
72664514 RR |
2302 | { |
2303 | int x = 0; | |
2304 | int y = 0; | |
2305 | m_owner->CalcUnscrolledPosition( x, y, &x, &y ); | |
120b9b05 | 2306 | |
344ed1f3 | 2307 | return GetLineAt( y ); |
72664514 RR |
2308 | } |
2309 | ||
442c56e6 | 2310 | unsigned int wxDataViewMainWindow::GetLastVisibleRow() |
72664514 RR |
2311 | { |
2312 | wxSize client_size = GetClientSize(); | |
c741d33f | 2313 | m_owner->CalcUnscrolledPosition( client_size.x, client_size.y, |
977a41ec | 2314 | &client_size.x, &client_size.y ); |
72664514 | 2315 | |
bc4f1ff2 | 2316 | // we should deal with the pixel here |
344ed1f3 | 2317 | unsigned int row = GetLineAt(client_size.y) - 1; |
b7fe2261 | 2318 | |
fbda518c | 2319 | return wxMin( GetRowCount()-1, row ); |
72664514 RR |
2320 | } |
2321 | ||
442c56e6 | 2322 | unsigned int wxDataViewMainWindow::GetRowCount() |
cab07038 | 2323 | { |
3b6280be RR |
2324 | if ( m_count == -1 ) |
2325 | { | |
2326 | m_count = RecalculateCount(); | |
344ed1f3 | 2327 | UpdateDisplay(); |
3b6280be | 2328 | } |
aba9bfd0 | 2329 | return m_count; |
cab07038 RR |
2330 | } |
2331 | ||
0a71f9e9 | 2332 | void wxDataViewMainWindow::ChangeCurrentRow( unsigned int row ) |
e21f75bd RR |
2333 | { |
2334 | m_currentRow = row; | |
120b9b05 | 2335 | |
e21f75bd RR |
2336 | // send event |
2337 | } | |
2338 | ||
cab07038 RR |
2339 | void wxDataViewMainWindow::SelectAllRows( bool on ) |
2340 | { | |
4a851b11 VZ |
2341 | if (IsEmpty()) |
2342 | return; | |
120b9b05 | 2343 | |
cab07038 RR |
2344 | if (on) |
2345 | { | |
72664514 | 2346 | m_selection.Clear(); |
0a71f9e9 | 2347 | for (unsigned int i = 0; i < GetRowCount(); i++) |
cab07038 | 2348 | m_selection.Add( i ); |
72664514 RR |
2349 | Refresh(); |
2350 | } | |
2351 | else | |
2352 | { | |
0a71f9e9 RR |
2353 | unsigned int first_visible = GetFirstVisibleRow(); |
2354 | unsigned int last_visible = GetLastVisibleRow(); | |
2355 | unsigned int i; | |
72664514 | 2356 | for (i = 0; i < m_selection.GetCount(); i++) |
120b9b05 | 2357 | { |
0a71f9e9 | 2358 | unsigned int row = m_selection[i]; |
72664514 RR |
2359 | if ((row >= first_visible) && (row <= last_visible)) |
2360 | RefreshRow( row ); | |
2361 | } | |
2362 | m_selection.Clear(); | |
cab07038 | 2363 | } |
cab07038 RR |
2364 | } |
2365 | ||
0a71f9e9 | 2366 | void wxDataViewMainWindow::SelectRow( unsigned int row, bool on ) |
cab07038 RR |
2367 | { |
2368 | if (m_selection.Index( row ) == wxNOT_FOUND) | |
2369 | { | |
2370 | if (on) | |
2371 | { | |
2372 | m_selection.Add( row ); | |
2373 | RefreshRow( row ); | |
2374 | } | |
2375 | } | |
2376 | else | |
2377 | { | |
2378 | if (!on) | |
2379 | { | |
2380 | m_selection.Remove( row ); | |
2381 | RefreshRow( row ); | |
2382 | } | |
2383 | } | |
2384 | } | |
2385 | ||
0a71f9e9 | 2386 | void wxDataViewMainWindow::SelectRows( unsigned int from, unsigned int to, bool on ) |
cab07038 RR |
2387 | { |
2388 | if (from > to) | |
2389 | { | |
0a71f9e9 | 2390 | unsigned int tmp = from; |
cab07038 RR |
2391 | from = to; |
2392 | to = tmp; | |
2393 | } | |
2394 | ||
0a71f9e9 | 2395 | unsigned int i; |
cab07038 RR |
2396 | for (i = from; i <= to; i++) |
2397 | { | |
2398 | if (m_selection.Index( i ) == wxNOT_FOUND) | |
2399 | { | |
2400 | if (on) | |
2401 | m_selection.Add( i ); | |
2402 | } | |
2403 | else | |
2404 | { | |
2405 | if (!on) | |
2406 | m_selection.Remove( i ); | |
2407 | } | |
2408 | } | |
2409 | RefreshRows( from, to ); | |
2410 | } | |
2411 | ||
87f0efe2 RR |
2412 | void wxDataViewMainWindow::Select( const wxArrayInt& aSelections ) |
2413 | { | |
2414 | for (size_t i=0; i < aSelections.GetCount(); i++) | |
2415 | { | |
2416 | int n = aSelections[i]; | |
2417 | ||
2418 | m_selection.Add( n ); | |
2419 | RefreshRow( n ); | |
2420 | } | |
2421 | } | |
2422 | ||
0a71f9e9 | 2423 | void wxDataViewMainWindow::ReverseRowSelection( unsigned int row ) |
cab07038 RR |
2424 | { |
2425 | if (m_selection.Index( row ) == wxNOT_FOUND) | |
2426 | m_selection.Add( row ); | |
2427 | else | |
2428 | m_selection.Remove( row ); | |
120b9b05 | 2429 | RefreshRow( row ); |
cab07038 RR |
2430 | } |
2431 | ||
0a71f9e9 | 2432 | bool wxDataViewMainWindow::IsRowSelected( unsigned int row ) |
cab07038 RR |
2433 | { |
2434 | return (m_selection.Index( row ) != wxNOT_FOUND); | |
2435 | } | |
2436 | ||
526e19e2 RR |
2437 | void wxDataViewMainWindow::SendSelectionChangedEvent( const wxDataViewItem& item) |
2438 | { | |
2439 | wxWindow *parent = GetParent(); | |
2440 | wxDataViewEvent le(wxEVT_COMMAND_DATAVIEW_SELECTION_CHANGED, parent->GetId()); | |
2441 | ||
2442 | le.SetEventObject(parent); | |
2443 | le.SetModel(GetOwner()->GetModel()); | |
2444 | le.SetItem( item ); | |
2445 | ||
2446 | parent->GetEventHandler()->ProcessEvent(le); | |
2447 | } | |
2448 | ||
0a71f9e9 | 2449 | void wxDataViewMainWindow::RefreshRow( unsigned int row ) |
cab07038 | 2450 | { |
344ed1f3 | 2451 | wxRect rect( 0, GetLineStart( row ), GetEndOfLastCol(), GetLineHeight( row ) ); |
cab07038 | 2452 | m_owner->CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y ); |
120b9b05 | 2453 | |
cab07038 RR |
2454 | wxSize client_size = GetClientSize(); |
2455 | wxRect client_rect( 0, 0, client_size.x, client_size.y ); | |
2456 | wxRect intersect_rect = client_rect.Intersect( rect ); | |
2457 | if (intersect_rect.width > 0) | |
2458 | Refresh( true, &intersect_rect ); | |
2459 | } | |
2460 | ||
0a71f9e9 | 2461 | void wxDataViewMainWindow::RefreshRows( unsigned int from, unsigned int to ) |
cab07038 RR |
2462 | { |
2463 | if (from > to) | |
2464 | { | |
0a71f9e9 | 2465 | unsigned int tmp = to; |
cab07038 RR |
2466 | to = from; |
2467 | from = tmp; | |
2468 | } | |
2469 | ||
344ed1f3 | 2470 | wxRect rect( 0, GetLineStart( from ), GetEndOfLastCol(), GetLineStart( (to-from+1) ) ); |
cab07038 | 2471 | m_owner->CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y ); |
120b9b05 | 2472 | |
cab07038 RR |
2473 | wxSize client_size = GetClientSize(); |
2474 | wxRect client_rect( 0, 0, client_size.x, client_size.y ); | |
2475 | wxRect intersect_rect = client_rect.Intersect( rect ); | |
2476 | if (intersect_rect.width > 0) | |
2477 | Refresh( true, &intersect_rect ); | |
2478 | } | |
2479 | ||
0a71f9e9 | 2480 | void wxDataViewMainWindow::RefreshRowsAfter( unsigned int firstRow ) |
cab07038 | 2481 | { |
cab07038 | 2482 | wxSize client_size = GetClientSize(); |
344ed1f3 RR |
2483 | int start = GetLineStart( firstRow ); |
2484 | m_owner->CalcScrolledPosition( start, 0, &start, NULL ); | |
2485 | if (start > client_size.y) return; | |
2486 | ||
2487 | wxRect rect( 0, start, client_size.x, client_size.y - start ); | |
777f9cef | 2488 | |
344ed1f3 | 2489 | Refresh( true, &rect ); |
cab07038 RR |
2490 | } |
2491 | ||
0a71f9e9 | 2492 | void wxDataViewMainWindow::OnArrowChar(unsigned int newCurrent, const wxKeyEvent& event) |
cab07038 | 2493 | { |
4a851b11 | 2494 | wxCHECK_RET( newCurrent < GetRowCount(), |
977a41ec | 2495 | _T("invalid item index in OnArrowChar()") ); |
cab07038 RR |
2496 | |
2497 | // if there is no selection, we cannot move it anywhere | |
2498 | if (!HasCurrentRow()) | |
2499 | return; | |
2500 | ||
0a71f9e9 | 2501 | unsigned int oldCurrent = m_currentRow; |
cab07038 RR |
2502 | |
2503 | // in single selection we just ignore Shift as we can't select several | |
2504 | // items anyhow | |
e21f75bd | 2505 | if ( event.ShiftDown() && !IsSingleSel() ) |
cab07038 RR |
2506 | { |
2507 | RefreshRow( oldCurrent ); | |
120b9b05 | 2508 | |
e21f75bd | 2509 | ChangeCurrentRow( newCurrent ); |
cab07038 RR |
2510 | |
2511 | // select all the items between the old and the new one | |
2512 | if ( oldCurrent > newCurrent ) | |
2513 | { | |
2514 | newCurrent = oldCurrent; | |
2515 | oldCurrent = m_currentRow; | |
2516 | } | |
2517 | ||
2518 | SelectRows( oldCurrent, newCurrent, true ); | |
526e19e2 RR |
2519 | if (oldCurrent!=newCurrent) |
2520 | SendSelectionChangedEvent(GetItemByRow(m_selection[0])); | |
cab07038 RR |
2521 | } |
2522 | else // !shift | |
2523 | { | |
72664514 | 2524 | RefreshRow( oldCurrent ); |
120b9b05 | 2525 | |
cab07038 RR |
2526 | // all previously selected items are unselected unless ctrl is held |
2527 | if ( !event.ControlDown() ) | |
2528 | SelectAllRows(false); | |
2529 | ||
e21f75bd | 2530 | ChangeCurrentRow( newCurrent ); |
cab07038 RR |
2531 | |
2532 | if ( !event.ControlDown() ) | |
526e19e2 | 2533 | { |
cab07038 | 2534 | SelectRow( m_currentRow, true ); |
526e19e2 RR |
2535 | SendSelectionChangedEvent(GetItemByRow(m_currentRow)); |
2536 | } | |
72664514 RR |
2537 | else |
2538 | RefreshRow( m_currentRow ); | |
cab07038 RR |
2539 | } |
2540 | ||
67be459b | 2541 | GetOwner()->EnsureVisible( m_currentRow, -1 ); |
9861f022 RR |
2542 | } |
2543 | ||
2544 | wxRect wxDataViewMainWindow::GetLineRect( unsigned int row ) const | |
2545 | { | |
2546 | wxRect rect; | |
2547 | rect.x = 0; | |
344ed1f3 | 2548 | rect.y = GetLineStart( row ); |
9861f022 | 2549 | rect.width = GetEndOfLastCol(); |
344ed1f3 | 2550 | rect.height = GetLineHeight( row ); |
9861f022 RR |
2551 | |
2552 | return rect; | |
cab07038 RR |
2553 | } |
2554 | ||
344ed1f3 RR |
2555 | int wxDataViewMainWindow::GetLineStart( unsigned int row ) const |
2556 | { | |
ba5f54e6 | 2557 | const wxDataViewModel *model = GetOwner()->GetModel(); |
777f9cef | 2558 | |
344ed1f3 RR |
2559 | if (GetOwner()->GetWindowStyle() & wxDV_VARIABLE_LINE_HEIGHT) |
2560 | { | |
2561 | // TODO make more efficient | |
777f9cef | 2562 | |
344ed1f3 | 2563 | int start = 0; |
777f9cef | 2564 | |
344ed1f3 RR |
2565 | unsigned int r; |
2566 | for (r = 0; r < row; r++) | |
2567 | { | |
e170469f RR |
2568 | const wxDataViewTreeNode* node = GetTreeNodeByRow(r); |
2569 | if (!node) return start; | |
777f9cef | 2570 | |
e170469f | 2571 | wxDataViewItem item = node->GetItem(); |
777f9cef | 2572 | |
e170469f RR |
2573 | if (node && !node->HasChildren()) |
2574 | { | |
2575 | // Yes, if the node does not have any child, it must be a leaf which | |
2576 | // mean that it is a temporarily created by GetTreeNodeByRow | |
59e60167 | 2577 | wxDELETE(node); |
e170469f | 2578 | } |
777f9cef | 2579 | |
e170469f RR |
2580 | unsigned int cols = GetOwner()->GetColumnCount(); |
2581 | unsigned int col; | |
2582 | int height = m_lineHeight; | |
2583 | for (col = 0; col < cols; col++) | |
2584 | { | |
344ed1f3 RR |
2585 | const wxDataViewColumn *column = GetOwner()->GetColumn(col); |
2586 | if (column->IsHidden()) | |
2587 | continue; // skip it! | |
777f9cef | 2588 | |
4cef3873 VZ |
2589 | if ((col != 0) && |
2590 | model->IsContainer(item) && | |
ce468dc2 | 2591 | !model->HasContainerColumns(item)) |
ba5f54e6 | 2592 | continue; // skip it! |
777f9cef | 2593 | |
ba5f54e6 RR |
2594 | wxVariant value; |
2595 | model->GetValue( value, item, column->GetModelColumn() ); | |
ce468dc2 | 2596 | |
4cef3873 | 2597 | wxDataViewRenderer *renderer = |
ce468dc2 FM |
2598 | const_cast<wxDataViewRenderer*>(column->GetRenderer()); |
2599 | renderer->SetValue( value ); | |
344ed1f3 | 2600 | height = wxMax( height, renderer->GetSize().y ); |
e170469f | 2601 | } |
777f9cef | 2602 | |
e170469f | 2603 | start += height; |
344ed1f3 | 2604 | } |
777f9cef | 2605 | |
344ed1f3 RR |
2606 | return start; |
2607 | } | |
2608 | else | |
2609 | { | |
2610 | return row * m_lineHeight; | |
2611 | } | |
2612 | } | |
2613 | ||
2614 | int wxDataViewMainWindow::GetLineAt( unsigned int y ) const | |
2615 | { | |
ba5f54e6 RR |
2616 | const wxDataViewModel *model = GetOwner()->GetModel(); |
2617 | ||
777f9cef VZ |
2618 | // check for the easy case first |
2619 | if ( !GetOwner()->HasFlag(wxDV_VARIABLE_LINE_HEIGHT) ) | |
2620 | return y / m_lineHeight; | |
2621 | ||
2622 | // TODO make more efficient | |
2623 | unsigned int row = 0; | |
2624 | unsigned int yy = 0; | |
2625 | for (;;) | |
344ed1f3 | 2626 | { |
ce468dc2 FM |
2627 | const wxDataViewTreeNode* node = GetTreeNodeByRow(row); |
2628 | if (!node) | |
2629 | { | |
2630 | // not really correct... | |
2631 | return row + ((y-yy) / m_lineHeight); | |
2632 | } | |
777f9cef | 2633 | |
ce468dc2 | 2634 | wxDataViewItem item = node->GetItem(); |
777f9cef VZ |
2635 | |
2636 | if (node && !node->HasChildren()) | |
344ed1f3 | 2637 | { |
777f9cef VZ |
2638 | // Yes, if the node does not have any child, it must be a leaf which |
2639 | // mean that it is a temporarily created by GetTreeNodeByRow | |
59e60167 | 2640 | wxDELETE(node); |
344ed1f3 | 2641 | } |
777f9cef | 2642 | |
ce468dc2 FM |
2643 | unsigned int cols = GetOwner()->GetColumnCount(); |
2644 | unsigned int col; | |
2645 | int height = m_lineHeight; | |
2646 | for (col = 0; col < cols; col++) | |
2647 | { | |
777f9cef VZ |
2648 | const wxDataViewColumn *column = GetOwner()->GetColumn(col); |
2649 | if (column->IsHidden()) | |
2650 | continue; // skip it! | |
2651 | ||
4cef3873 VZ |
2652 | if ((col != 0) && |
2653 | model->IsContainer(item) && | |
ce468dc2 | 2654 | !model->HasContainerColumns(item)) |
777f9cef VZ |
2655 | continue; // skip it! |
2656 | ||
777f9cef VZ |
2657 | wxVariant value; |
2658 | model->GetValue( value, item, column->GetModelColumn() ); | |
ce468dc2 | 2659 | |
4cef3873 | 2660 | wxDataViewRenderer *renderer = |
ce468dc2 FM |
2661 | const_cast<wxDataViewRenderer*>(column->GetRenderer()); |
2662 | renderer->SetValue( value ); | |
777f9cef | 2663 | height = wxMax( height, renderer->GetSize().y ); |
ce468dc2 | 2664 | } |
777f9cef | 2665 | |
ce468dc2 FM |
2666 | yy += height; |
2667 | if (y < yy) | |
2668 | return row; | |
777f9cef | 2669 | |
ce468dc2 | 2670 | row++; |
344ed1f3 RR |
2671 | } |
2672 | } | |
2673 | ||
2674 | int wxDataViewMainWindow::GetLineHeight( unsigned int row ) const | |
2675 | { | |
ba5f54e6 | 2676 | const wxDataViewModel *model = GetOwner()->GetModel(); |
777f9cef | 2677 | |
344ed1f3 RR |
2678 | if (GetOwner()->GetWindowStyle() & wxDV_VARIABLE_LINE_HEIGHT) |
2679 | { | |
2680 | wxASSERT( !IsVirtualList() ); | |
777f9cef | 2681 | |
344ed1f3 RR |
2682 | const wxDataViewTreeNode* node = GetTreeNodeByRow(row); |
2683 | // wxASSERT( node ); | |
2684 | if (!node) return m_lineHeight; | |
2685 | ||
ba5f54e6 | 2686 | wxDataViewItem item = node->GetItem(); |
777f9cef | 2687 | |
e170469f RR |
2688 | if (node && !node->HasChildren()) |
2689 | { | |
2690 | // Yes, if the node does not have any child, it must be a leaf which | |
2691 | // mean that it is a temporarily created by GetTreeNodeByRow | |
977a41ec | 2692 | wxDELETE(node); |
e170469f | 2693 | } |
777f9cef | 2694 | |
981cd83e | 2695 | int height = m_lineHeight; |
777f9cef | 2696 | |
344ed1f3 RR |
2697 | unsigned int cols = GetOwner()->GetColumnCount(); |
2698 | unsigned int col; | |
2699 | for (col = 0; col < cols; col++) | |
2700 | { | |
2701 | const wxDataViewColumn *column = GetOwner()->GetColumn(col); | |
2702 | if (column->IsHidden()) | |
2703 | continue; // skip it! | |
ba5f54e6 | 2704 | |
4cef3873 VZ |
2705 | if ((col != 0) && |
2706 | model->IsContainer(item) && | |
ce468dc2 | 2707 | !model->HasContainerColumns(item)) |
ba5f54e6 | 2708 | continue; // skip it! |
777f9cef | 2709 | |
ba5f54e6 RR |
2710 | wxVariant value; |
2711 | model->GetValue( value, item, column->GetModelColumn() ); | |
ce468dc2 | 2712 | |
4cef3873 | 2713 | wxDataViewRenderer *renderer = |
ce468dc2 FM |
2714 | const_cast<wxDataViewRenderer*>(column->GetRenderer()); |
2715 | renderer->SetValue( value ); | |
344ed1f3 RR |
2716 | height = wxMax( height, renderer->GetSize().y ); |
2717 | } | |
2718 | ||
2719 | return height; | |
2720 | } | |
2721 | else | |
2722 | { | |
2723 | return m_lineHeight; | |
2724 | } | |
2725 | } | |
2726 | ||
aba9bfd0 RR |
2727 | class RowToItemJob: public DoJob |
2728 | { | |
2729 | public: | |
4cef3873 | 2730 | RowToItemJob( unsigned int row , int current ) |
bc4f1ff2 FM |
2731 | { this->row = row; this->current = current; } |
2732 | virtual ~RowToItemJob() {} | |
aba9bfd0 | 2733 | |
d5025dc0 | 2734 | virtual int operator() ( wxDataViewTreeNode * node ) |
d47db7e0 RR |
2735 | { |
2736 | current ++; | |
2737 | if( current == static_cast<int>(row)) | |
977a41ec | 2738 | { |
59e60167 | 2739 | ret = node->GetItem(); |
d47db7e0 RR |
2740 | return DoJob::OK; |
2741 | } | |
d5025dc0 | 2742 | |
d47db7e0 RR |
2743 | if( node->GetSubTreeCount() + current < static_cast<int>(row) ) |
2744 | { | |
2745 | current += node->GetSubTreeCount(); | |
2746 | return DoJob::IGR; | |
2747 | } | |
2748 | else | |
b7e9f8b1 | 2749 | { |
4cef3873 | 2750 | // If the current has no child node, we can find the desired item of the row |
bc4f1ff2 | 2751 | // number directly. |
4cef3873 | 2752 | // This if can speed up finding in some case, and will has a very good effect |
bc4f1ff2 | 2753 | // when it comes to list view |
b7e9f8b1 RR |
2754 | if( node->GetNodes().GetCount() == 0) |
2755 | { | |
2756 | int index = static_cast<int>(row) - current - 1; | |
2757 | ret = node->GetChildren().Item( index ); | |
2758 | return DoJob::OK; | |
2759 | } | |
d47db7e0 | 2760 | return DoJob::CONT; |
b7e9f8b1 | 2761 | } |
d47db7e0 RR |
2762 | } |
2763 | ||
2764 | virtual int operator() ( void * n ) | |
2765 | { | |
2766 | current ++; | |
2767 | if( current == static_cast<int>(row)) | |
977a41ec | 2768 | { |
59e60167 | 2769 | ret = wxDataViewItem( n ); |
d47db7e0 RR |
2770 | return DoJob::OK; |
2771 | } | |
2772 | return DoJob::CONT; | |
2773 | } | |
bc4f1ff2 FM |
2774 | |
2775 | wxDataViewItem GetResult() const | |
2776 | { return ret; } | |
2777 | ||
aba9bfd0 RR |
2778 | private: |
2779 | unsigned int row; | |
59e60167 | 2780 | int current; |
aba9bfd0 RR |
2781 | wxDataViewItem ret; |
2782 | }; | |
2783 | ||
fbda518c | 2784 | wxDataViewItem wxDataViewMainWindow::GetItemByRow(unsigned int row) const |
aba9bfd0 | 2785 | { |
86ba79ed | 2786 | if (IsVirtualList()) |
a3cc79d9 | 2787 | { |
86ba79ed | 2788 | return wxDataViewItem( wxUIntToPtr(row+1) ); |
a3cc79d9 RR |
2789 | } |
2790 | else | |
2791 | { | |
2792 | RowToItemJob job( row, -2 ); | |
2793 | Walker( m_root , job ); | |
49d2b75d | 2794 | return job.GetResult(); |
a3cc79d9 | 2795 | } |
aba9bfd0 RR |
2796 | } |
2797 | ||
3b6280be RR |
2798 | class RowToTreeNodeJob: public DoJob |
2799 | { | |
2800 | public: | |
442c56e6 VZ |
2801 | RowToTreeNodeJob( unsigned int row , int current, wxDataViewTreeNode * node ) |
2802 | { | |
2803 | this->row = row; | |
59e60167 VZ |
2804 | this->current = current; |
2805 | ret = NULL; | |
d47db7e0 RR |
2806 | parent = node; |
2807 | } | |
59e60167 | 2808 | virtual ~RowToTreeNodeJob(){ } |
3b6280be RR |
2809 | |
2810 | virtual int operator() ( wxDataViewTreeNode * node ) | |
d5025dc0 | 2811 | { |
d47db7e0 | 2812 | current ++; |
704c3490 | 2813 | if( current == static_cast<int>(row)) |
977a41ec | 2814 | { |
59e60167 | 2815 | ret = node; |
d5025dc0 | 2816 | return DoJob::OK; |
3b6280be | 2817 | } |
d47db7e0 RR |
2818 | |
2819 | if( node->GetSubTreeCount() + current < static_cast<int>(row) ) | |
2820 | { | |
2821 | current += node->GetSubTreeCount(); | |
2822 | return DoJob::IGR; | |
2823 | } | |
d5025dc0 | 2824 | else |
d47db7e0 RR |
2825 | { |
2826 | parent = node; | |
bc4f1ff2 | 2827 | |
4cef3873 | 2828 | // If the current node has no children, we can find the desired item of the |
bc4f1ff2 | 2829 | // row number directly. |
4cef3873 | 2830 | // This if can speed up finding in some case, and will have a very good |
bc4f1ff2 | 2831 | // effect for list views. |
b7e9f8b1 RR |
2832 | if( node->GetNodes().GetCount() == 0) |
2833 | { | |
2834 | int index = static_cast<int>(row) - current - 1; | |
2835 | void * n = node->GetChildren().Item( index ); | |
59e60167 | 2836 | ret = new wxDataViewTreeNode( parent ); |
b7e9f8b1 RR |
2837 | ret->SetItem( wxDataViewItem( n )); |
2838 | ret->SetHasChildren(false); | |
2839 | return DoJob::OK; | |
2840 | } | |
d47db7e0 RR |
2841 | return DoJob::CONT; |
2842 | } | |
d5025dc0 | 2843 | } |
3b6280be | 2844 | |
d47db7e0 RR |
2845 | virtual int operator() ( void * n ) |
2846 | { | |
2847 | current ++; | |
2848 | if( current == static_cast<int>(row)) | |
977a41ec | 2849 | { |
59e60167 | 2850 | ret = new wxDataViewTreeNode( parent ); |
d47db7e0 RR |
2851 | ret->SetItem( wxDataViewItem( n )); |
2852 | ret->SetHasChildren(false); | |
2853 | return DoJob::OK; | |
2854 | } | |
442c56e6 | 2855 | |
d47db7e0 RR |
2856 | return DoJob::CONT; |
2857 | } | |
bc4f1ff2 FM |
2858 | |
2859 | wxDataViewTreeNode * GetResult() const | |
2860 | { return ret; } | |
2861 | ||
3b6280be RR |
2862 | private: |
2863 | unsigned int row; | |
59e60167 | 2864 | int current; |
3b6280be | 2865 | wxDataViewTreeNode * ret; |
59e60167 | 2866 | wxDataViewTreeNode * parent; |
3b6280be RR |
2867 | }; |
2868 | ||
344ed1f3 | 2869 | wxDataViewTreeNode * wxDataViewMainWindow::GetTreeNodeByRow(unsigned int row) const |
3b6280be | 2870 | { |
344ed1f3 | 2871 | wxASSERT( !IsVirtualList() ); |
777f9cef | 2872 | |
344ed1f3 RR |
2873 | RowToTreeNodeJob job( row , -2, m_root ); |
2874 | Walker( m_root , job ); | |
2875 | return job.GetResult(); | |
3b6280be RR |
2876 | } |
2877 | ||
4cef3873 | 2878 | wxDataViewEvent wxDataViewMainWindow::SendExpanderEvent( wxEventType type, |
bc4f1ff2 | 2879 | const wxDataViewItem & item ) |
66e09788 RR |
2880 | { |
2881 | wxWindow *parent = GetParent(); | |
2882 | wxDataViewEvent le(type, parent->GetId()); | |
2883 | ||
2884 | le.SetEventObject(parent); | |
2885 | le.SetModel(GetOwner()->GetModel()); | |
2886 | le.SetItem( item ); | |
2887 | ||
2888 | parent->GetEventHandler()->ProcessEvent(le); | |
2889 | return le; | |
2890 | } | |
2891 | ||
739a8399 RR |
2892 | bool wxDataViewMainWindow::IsExpanded( unsigned int row ) const |
2893 | { | |
2894 | if (IsVirtualList()) | |
bc4f1ff2 | 2895 | return false; |
9adeb77a | 2896 | |
739a8399 RR |
2897 | wxDataViewTreeNode * node = GetTreeNodeByRow(row); |
2898 | if (!node) | |
bc4f1ff2 | 2899 | return false; |
9adeb77a | 2900 | |
739a8399 | 2901 | if (!node->HasChildren()) |
bf9ea288 | 2902 | { |
bc4f1ff2 FM |
2903 | delete node; |
2904 | return false; | |
bf9ea288 | 2905 | } |
9adeb77a | 2906 | |
739a8399 RR |
2907 | return node->IsOpen(); |
2908 | } | |
2909 | ||
235d5f88 RR |
2910 | bool wxDataViewMainWindow::HasChildren( unsigned int row ) const |
2911 | { | |
2912 | if (IsVirtualList()) | |
2913 | return false; | |
2914 | ||
2915 | wxDataViewTreeNode * node = GetTreeNodeByRow(row); | |
2916 | if (!node) | |
2917 | return false; | |
739a8399 | 2918 | |
235d5f88 RR |
2919 | if (!node->HasChildren()) |
2920 | { | |
2921 | delete node; | |
2922 | return false; | |
2923 | } | |
2924 | ||
2925 | return true; | |
2926 | } | |
2927 | ||
2928 | void wxDataViewMainWindow::Expand( unsigned int row ) | |
3b6280be | 2929 | { |
9657c197 | 2930 | if (IsVirtualList()) |
bc4f1ff2 | 2931 | return; |
9657c197 | 2932 | |
3b6280be | 2933 | wxDataViewTreeNode * node = GetTreeNodeByRow(row); |
235d5f88 RR |
2934 | if (!node) |
2935 | return; | |
4cef3873 | 2936 | |
235d5f88 | 2937 | if (!node->HasChildren()) |
3b6280be | 2938 | { |
235d5f88 RR |
2939 | delete node; |
2940 | return; | |
2941 | } | |
4cef3873 | 2942 | |
235d5f88 | 2943 | if (!node->IsOpen()) |
3b6280be | 2944 | { |
4cef3873 | 2945 | wxDataViewEvent e = |
bc4f1ff2 FM |
2946 | SendExpanderEvent(wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDING, node->GetItem()); |
2947 | ||
2948 | // Check if the user prevent expanding | |
2949 | if( e.GetSkipped() ) | |
66e09788 | 2950 | return; |
b7fe2261 | 2951 | |
bc4f1ff2 | 2952 | node->ToggleOpen(); |
977a41ec | 2953 | |
bc4f1ff2 FM |
2954 | // build the children of current node |
2955 | if( node->GetChildrenNumber() == 0 ) | |
2956 | { | |
2957 | SortPrepare(); | |
2958 | ::BuildTreeHelper(GetOwner()->GetModel(), node->GetItem(), node); | |
2959 | } | |
977a41ec | 2960 | |
bc4f1ff2 FM |
2961 | // By expanding the node all row indices that are currently in the selection list |
2962 | // and are greater than our node have become invalid. So we have to correct that now. | |
2963 | const unsigned rowAdjustment = node->GetSubTreeCount(); | |
2964 | for(unsigned i=0; i<m_selection.size(); ++i) | |
2965 | { | |
2966 | const unsigned testRow = m_selection[i]; | |
2967 | // all rows above us are not affected, so skip them | |
2968 | if(testRow <= row) | |
2969 | continue; | |
2970 | ||
2971 | m_selection[i] += rowAdjustment; | |
2972 | } | |
977a41ec | 2973 | |
bc4f1ff2 FM |
2974 | if(m_currentRow > row) |
2975 | ChangeCurrentRow(m_currentRow + rowAdjustment); | |
977a41ec | 2976 | |
bc4f1ff2 FM |
2977 | m_count = -1; |
2978 | UpdateDisplay(); | |
2979 | // Send the expanded event | |
2980 | SendExpanderEvent(wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDED,node->GetItem()); | |
351461fc | 2981 | } |
3b6280be RR |
2982 | } |
2983 | ||
235d5f88 | 2984 | void wxDataViewMainWindow::Collapse(unsigned int row) |
3b6280be | 2985 | { |
9657c197 | 2986 | if (IsVirtualList()) |
bc4f1ff2 | 2987 | return; |
e822d1bd | 2988 | |
7d835958 RR |
2989 | wxDataViewTreeNode *node = GetTreeNodeByRow(row); |
2990 | if (!node) | |
2991 | return; | |
4cef3873 | 2992 | |
235d5f88 | 2993 | if (!node->HasChildren()) |
3b6280be | 2994 | { |
7d835958 RR |
2995 | delete node; |
2996 | return; | |
2997 | } | |
d47db7e0 | 2998 | |
235d5f88 | 2999 | if (node->IsOpen()) |
3b6280be | 3000 | { |
4cef3873 | 3001 | wxDataViewEvent e = |
bc4f1ff2 | 3002 | SendExpanderEvent(wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSING,node->GetItem()); |
66e09788 RR |
3003 | if( e.GetSkipped() ) |
3004 | return; | |
abdb8c18 | 3005 | |
977a41ec FM |
3006 | // Find out if there are selected items below the current node. |
3007 | bool selectCollapsingRow = false; | |
3008 | const unsigned rowAdjustment = node->GetSubTreeCount(); | |
3009 | unsigned maxRowToBeTested = row + rowAdjustment; | |
3010 | for(unsigned i=0; i<m_selection.size(); ++i) | |
3011 | { | |
3012 | const unsigned testRow = m_selection[i]; | |
3013 | if(testRow > row && testRow <= maxRowToBeTested) | |
3014 | { | |
3015 | selectCollapsingRow = true; | |
3016 | // get out as soon as we have found a node that is selected | |
3017 | break; | |
3018 | } | |
3019 | } | |
3020 | ||
3021 | node->ToggleOpen(); | |
3022 | ||
3023 | // If the node to be closed has selected items the user won't see those any longer. | |
3024 | // We select the collapsing node in this case. | |
3025 | if(selectCollapsingRow) | |
3026 | { | |
3027 | SelectAllRows(false); | |
3028 | ChangeCurrentRow(row); | |
3029 | SelectRow(row, true); | |
3030 | SendSelectionChangedEvent(GetItemByRow(row)); | |
3031 | } | |
3032 | else | |
3033 | { | |
3034 | // if there were no selected items below our node we still need to "fix" the | |
3035 | // selection list to adjust for the changing of the row indices. | |
235d5f88 | 3036 | // We actually do the opposite of what we are doing in Expand(). |
977a41ec FM |
3037 | for(unsigned i=0; i<m_selection.size(); ++i) |
3038 | { | |
3039 | const unsigned testRow = m_selection[i]; | |
3040 | // all rows above us are not affected, so skip them | |
3041 | if(testRow <= row) | |
3042 | continue; | |
3043 | ||
3044 | m_selection[i] -= rowAdjustment; | |
3045 | } | |
3046 | ||
3047 | // if the "current row" is being collapsed away we change it to the current row ;-) | |
3048 | if(m_currentRow > row && m_currentRow <= maxRowToBeTested) | |
3049 | ChangeCurrentRow(row); | |
3050 | else if(m_currentRow > row) | |
3051 | ChangeCurrentRow(m_currentRow - rowAdjustment); | |
3052 | } | |
abdb8c18 | 3053 | |
3b6280be | 3054 | m_count = -1; |
351461fc | 3055 | UpdateDisplay(); |
7d835958 | 3056 | SendExpanderEvent(wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSED,node->GetItem()); |
66e09788 | 3057 | } |
3b6280be RR |
3058 | } |
3059 | ||
351461fc RR |
3060 | wxDataViewTreeNode * wxDataViewMainWindow::FindNode( const wxDataViewItem & item ) |
3061 | { | |
3062 | wxDataViewModel * model = GetOwner()->GetModel(); | |
3063 | if( model == NULL ) | |
3064 | return NULL; | |
9adeb77a | 3065 | |
ce2fe798 RR |
3066 | if (!item.IsOk()) |
3067 | return m_root; | |
351461fc | 3068 | |
bc4f1ff2 | 3069 | // Compose the a parent-chain of the finding item |
351461fc RR |
3070 | ItemList list; |
3071 | list.DeleteContents( true ); | |
3072 | wxDataViewItem it( item ); | |
3073 | while( it.IsOk() ) | |
3074 | { | |
3075 | wxDataViewItem * pItem = new wxDataViewItem( it ); | |
3076 | list.Insert( pItem ); | |
3077 | it = model->GetParent( it ); | |
3078 | } | |
3079 | ||
bc4f1ff2 FM |
3080 | // Find the item along the parent-chain. |
3081 | // This algorithm is designed to speed up the node-finding method | |
351461fc | 3082 | wxDataViewTreeNode * node = m_root; |
59e60167 | 3083 | for( ItemList::const_iterator iter = list.begin(); iter !=list.end(); iter++ ) |
351461fc RR |
3084 | { |
3085 | if( node->HasChildren() ) | |
3086 | { | |
3087 | if( node->GetChildrenNumber() == 0 ) | |
24c4a50f RR |
3088 | { |
3089 | SortPrepare(); | |
74123073 | 3090 | ::BuildTreeHelper(model, node->GetItem(), node); |
24c4a50f | 3091 | } |
351461fc | 3092 | |
d47db7e0 | 3093 | wxDataViewTreeNodes nodes = node->GetNodes(); |
d2c1ee8a RR |
3094 | unsigned int i; |
3095 | bool found = false; | |
777f9cef | 3096 | |
d2c1ee8a | 3097 | for (i = 0; i < nodes.GetCount(); i ++) |
d92cb015 | 3098 | { |
c899416d | 3099 | if (nodes[i]->GetItem() == (**iter)) |
b7fe2261 | 3100 | { |
d2c1ee8a | 3101 | if (nodes[i]->GetItem() == item) |
977a41ec | 3102 | return nodes[i]; |
777f9cef | 3103 | |
d92cb015 | 3104 | node = nodes[i]; |
d2c1ee8a | 3105 | found = true; |
d92cb015 RR |
3106 | break; |
3107 | } | |
3108 | } | |
d2c1ee8a | 3109 | if (!found) |
351461fc | 3110 | return NULL; |
351461fc RR |
3111 | } |
3112 | else | |
3113 | return NULL; | |
3114 | } | |
d2c1ee8a | 3115 | return NULL; |
351461fc RR |
3116 | } |
3117 | ||
4cef3873 | 3118 | void wxDataViewMainWindow::HitTest( const wxPoint & point, wxDataViewItem & item, |
bc4f1ff2 | 3119 | wxDataViewColumn* &column ) |
66e09788 | 3120 | { |
fbda518c | 3121 | wxDataViewColumn *col = NULL; |
66e09788 RR |
3122 | unsigned int cols = GetOwner()->GetColumnCount(); |
3123 | unsigned int colnum = 0; | |
66e09788 RR |
3124 | int x, y; |
3125 | m_owner->CalcUnscrolledPosition( point.x, point.y, &x, &y ); | |
e822d1bd | 3126 | for (unsigned x_start = 0; colnum < cols; colnum++) |
66e09788 | 3127 | { |
702f5349 | 3128 | col = GetOwner()->GetColumnAt(colnum); |
66e09788 RR |
3129 | if (col->IsHidden()) |
3130 | continue; // skip it! | |
3131 | ||
3132 | unsigned int w = col->GetWidth(); | |
3133 | if (x_start+w >= (unsigned int)x) | |
3134 | break; | |
3135 | ||
3136 | x_start += w; | |
3137 | } | |
3138 | ||
fbda518c | 3139 | column = col; |
344ed1f3 | 3140 | item = GetItemByRow( GetLineAt( y ) ); |
66e09788 RR |
3141 | } |
3142 | ||
4cef3873 | 3143 | wxRect wxDataViewMainWindow::GetItemRect( const wxDataViewItem & item, |
bc4f1ff2 | 3144 | const wxDataViewColumn* column ) |
66e09788 | 3145 | { |
c937344c RR |
3146 | int xpos = 0; |
3147 | int width = 0; | |
4cef3873 | 3148 | |
c937344c RR |
3149 | unsigned int cols = GetOwner()->GetColumnCount(); |
3150 | // If column is null the loop will compute the combined width of all columns. | |
3151 | // Otherwise, it will compute the x position of the column we are looking for. | |
3152 | for (unsigned int i = 0; i < cols; i++) | |
3153 | { | |
3154 | wxDataViewColumn* col = GetOwner()->GetColumnAt( i ); | |
3155 | ||
3156 | if (col == column) | |
3157 | break; | |
3158 | ||
3159 | if (col->IsHidden()) | |
3160 | continue; // skip it! | |
3161 | ||
3162 | xpos += col->GetWidth(); | |
3163 | width += col->GetWidth(); | |
3164 | } | |
3165 | ||
3166 | if(column != 0) | |
3167 | { | |
3168 | // If we have a column, we need can get its width directly. | |
3169 | if(column->IsHidden()) | |
3170 | width = 0; | |
3171 | else | |
3172 | width = column->GetWidth(); | |
3173 | ||
3174 | } | |
3175 | else | |
3176 | { | |
3177 | // If we have no column, we reset the x position back to zero. | |
3178 | xpos = 0; | |
3179 | } | |
3180 | ||
3181 | // we have to take an expander column into account and compute its indentation | |
3182 | // to get the correct x position where the actual text is | |
3183 | int indent = 0; | |
66e09788 | 3184 | int row = GetRowByItem(item); |
c937344c | 3185 | if (!IsVirtualList() && (column == 0 || GetOwner()->GetExpanderColumn() == column) ) |
66e09788 | 3186 | { |
c937344c RR |
3187 | wxDataViewTreeNode* node = GetTreeNodeByRow(row); |
3188 | indent = GetOwner()->GetIndent() * node->GetIndentLevel(); | |
3189 | indent = indent + m_lineHeight; // use m_lineHeight as the width of the expander | |
3190 | ||
3191 | if(!node->HasChildren()) | |
3192 | delete node; | |
66e09788 | 3193 | } |
c937344c RR |
3194 | |
3195 | wxRect itemRect( xpos + indent, | |
3196 | GetLineStart( row ), | |
3197 | width - indent, | |
3198 | GetLineHeight( row ) ); | |
3199 | ||
3200 | GetOwner()->CalcScrolledPosition( itemRect.x, itemRect.y, | |
3201 | &itemRect.x, &itemRect.y ); | |
3202 | ||
3203 | return itemRect; | |
66e09788 RR |
3204 | } |
3205 | ||
442c56e6 | 3206 | int wxDataViewMainWindow::RecalculateCount() |
3b6280be | 3207 | { |
86ba79ed | 3208 | if (IsVirtualList()) |
a3cc79d9 | 3209 | { |
9330d5af RR |
3210 | wxDataViewVirtualListModel *list_model = |
3211 | (wxDataViewVirtualListModel*) GetOwner()->GetModel(); | |
49d2b75d | 3212 | |
9330d5af | 3213 | return list_model->GetCount(); |
a3cc79d9 RR |
3214 | } |
3215 | else | |
3216 | { | |
3217 | return m_root->GetSubTreeCount(); | |
3218 | } | |
3b6280be RR |
3219 | } |
3220 | ||
aba9bfd0 RR |
3221 | class ItemToRowJob : public DoJob |
3222 | { | |
3223 | public: | |
59e60167 VZ |
3224 | ItemToRowJob(const wxDataViewItem& item_, ItemList::const_iterator iter) |
3225 | : m_iter(iter), | |
977a41ec | 3226 | item(item_) |
59e60167 VZ |
3227 | { |
3228 | ret = -1; | |
3229 | } | |
aba9bfd0 | 3230 | |
bc4f1ff2 | 3231 | // Maybe binary search will help to speed up this process |
d5025dc0 RR |
3232 | virtual int operator() ( wxDataViewTreeNode * node) |
3233 | { | |
977a41ec FM |
3234 | ret ++; |
3235 | if( node->GetItem() == item ) | |
3236 | { | |
3237 | return DoJob::OK; | |
3238 | } | |
d5025dc0 | 3239 | |
977a41ec FM |
3240 | if( node->GetItem() == **m_iter ) |
3241 | { | |
3242 | m_iter++; | |
3243 | return DoJob::CONT; | |
3244 | } | |
3245 | else | |
3246 | { | |
3247 | ret += node->GetSubTreeCount(); | |
3248 | return DoJob::IGR; | |
3249 | } | |
442c56e6 | 3250 | |
d5025dc0 | 3251 | } |
aba9bfd0 | 3252 | |
d47db7e0 RR |
3253 | virtual int operator() ( void * n ) |
3254 | { | |
3255 | ret ++; | |
3256 | if( n == item.GetID() ) | |
3257 | return DoJob::OK; | |
3258 | return DoJob::CONT; | |
3259 | } | |
bc4f1ff2 FM |
3260 | |
3261 | // the row number is begin from zero | |
3262 | int GetResult() const | |
3263 | { return ret -1; } | |
59e60167 | 3264 | |
aba9bfd0 | 3265 | private: |
c899416d | 3266 | ItemList::const_iterator m_iter; |
aba9bfd0 RR |
3267 | wxDataViewItem item; |
3268 | int ret; | |
442c56e6 | 3269 | |
aba9bfd0 RR |
3270 | }; |
3271 | ||
344ed1f3 | 3272 | int wxDataViewMainWindow::GetRowByItem(const wxDataViewItem & item) const |
aba9bfd0 | 3273 | { |
344ed1f3 | 3274 | const wxDataViewModel * model = GetOwner()->GetModel(); |
d47db7e0 | 3275 | if( model == NULL ) |
fbda518c | 3276 | return -1; |
d47db7e0 | 3277 | |
86ba79ed | 3278 | if (IsVirtualList()) |
d47db7e0 | 3279 | { |
86ba79ed | 3280 | return wxPtrToUInt( item.GetID() ) -1; |
d47db7e0 | 3281 | } |
a3cc79d9 RR |
3282 | else |
3283 | { | |
3284 | if( !item.IsOk() ) | |
3285 | return -1; | |
3286 | ||
bc4f1ff2 | 3287 | // Compose the a parent-chain of the finding item |
a3cc79d9 | 3288 | ItemList list; |
e822d1bd | 3289 | wxDataViewItem * pItem; |
a3cc79d9 RR |
3290 | list.DeleteContents( true ); |
3291 | wxDataViewItem it( item ); | |
3292 | while( it.IsOk() ) | |
3293 | { | |
3294 | pItem = new wxDataViewItem( it ); | |
3295 | list.Insert( pItem ); | |
3296 | it = model->GetParent( it ); | |
3297 | } | |
3298 | pItem = new wxDataViewItem( ); | |
3299 | list.Insert( pItem ); | |
d47db7e0 | 3300 | |
a3cc79d9 RR |
3301 | ItemToRowJob job( item, list.begin() ); |
3302 | Walker(m_root , job ); | |
3303 | return job.GetResult(); | |
3304 | } | |
aba9bfd0 RR |
3305 | } |
3306 | ||
4cef3873 | 3307 | static void BuildTreeHelper( wxDataViewModel * model, wxDataViewItem & item, |
bc4f1ff2 | 3308 | wxDataViewTreeNode * node) |
aba9bfd0 | 3309 | { |
351461fc | 3310 | if( !model->IsContainer( item ) ) |
59e60167 | 3311 | return; |
442c56e6 | 3312 | |
c899416d RR |
3313 | wxDataViewItemArray children; |
3314 | unsigned int num = model->GetChildren( item, children); | |
9adeb77a | 3315 | |
67be459b | 3316 | unsigned int index = 0; |
c899416d | 3317 | while( index < num ) |
aba9bfd0 | 3318 | { |
c899416d | 3319 | if( model->IsContainer( children[index] ) ) |
d47db7e0 RR |
3320 | { |
3321 | wxDataViewTreeNode * n = new wxDataViewTreeNode( node ); | |
c899416d | 3322 | n->SetItem(children[index]); |
59e60167 | 3323 | n->SetHasChildren( true ); |
d47db7e0 RR |
3324 | node->AddNode( n ); |
3325 | } | |
3326 | else | |
3327 | { | |
c899416d | 3328 | node->AddLeaf( children[index].GetID() ); |
d47db7e0 | 3329 | } |
c899416d | 3330 | index ++; |
aba9bfd0 | 3331 | } |
d47db7e0 RR |
3332 | node->SetSubTreeCount( num ); |
3333 | wxDataViewTreeNode * n = node->GetParent(); | |
3334 | if( n != NULL) | |
3335 | n->ChangeSubTreeCount(num); | |
3336 | ||
aba9bfd0 RR |
3337 | } |
3338 | ||
3339 | void wxDataViewMainWindow::BuildTree(wxDataViewModel * model) | |
3340 | { | |
51bdecff RR |
3341 | DestroyTree(); |
3342 | ||
e39de702 | 3343 | if (GetOwner()->GetModel()->IsVirtualListModel()) |
a3cc79d9 | 3344 | { |
59e60167 | 3345 | m_count = -1; |
a3cc79d9 RR |
3346 | return; |
3347 | } | |
3348 | ||
51bdecff RR |
3349 | m_root = new wxDataViewTreeNode( NULL ); |
3350 | m_root->SetHasChildren(true); | |
3351 | ||
bc4f1ff2 | 3352 | // First we define a invalid item to fetch the top-level elements |
aba9bfd0 | 3353 | wxDataViewItem item; |
66e09788 | 3354 | SortPrepare(); |
3b6280be | 3355 | BuildTreeHelper( model, item, m_root); |
59e60167 | 3356 | m_count = -1; |
aba9bfd0 RR |
3357 | } |
3358 | ||
74123073 | 3359 | static void DestroyTreeHelper( wxDataViewTreeNode * node ) |
aba9bfd0 | 3360 | { |
d47db7e0 | 3361 | if( node->GetNodeNumber() != 0 ) |
aba9bfd0 | 3362 | { |
d47db7e0 | 3363 | int len = node->GetNodeNumber(); |
74123073 | 3364 | wxDataViewTreeNodes& nodes = node->GetNodes(); |
bc4f1ff2 | 3365 | for (int i = 0; i < len; i++) |
aba9bfd0 | 3366 | DestroyTreeHelper(nodes[i]); |
aba9bfd0 RR |
3367 | } |
3368 | delete node; | |
3369 | } | |
3370 | ||
3371 | void wxDataViewMainWindow::DestroyTree() | |
3372 | { | |
344ed1f3 | 3373 | if (!IsVirtualList()) |
51bdecff | 3374 | { |
bc4f1ff2 FM |
3375 | ::DestroyTreeHelper(m_root); |
3376 | m_count = 0; | |
3377 | m_root = NULL; | |
51bdecff | 3378 | } |
aba9bfd0 RR |
3379 | } |
3380 | ||
cab07038 RR |
3381 | void wxDataViewMainWindow::OnChar( wxKeyEvent &event ) |
3382 | { | |
788432e3 | 3383 | if ( GetParent()->HandleAsNavigationKey(event) ) |
f029f1d1 | 3384 | return; |
cab07038 RR |
3385 | |
3386 | // no item -> nothing to do | |
3387 | if (!HasCurrentRow()) | |
3388 | { | |
3389 | event.Skip(); | |
3390 | return; | |
3391 | } | |
120b9b05 | 3392 | |
cab07038 RR |
3393 | // don't use m_linesPerPage directly as it might not be computed yet |
3394 | const int pageSize = GetCountPerPage(); | |
3395 | wxCHECK_RET( pageSize, _T("should have non zero page size") ); | |
3396 | ||
3397 | switch ( event.GetKeyCode() ) | |
3398 | { | |
d37b709c | 3399 | case WXK_RETURN: |
d37b709c RR |
3400 | { |
3401 | wxWindow *parent = GetParent(); | |
48ae48a9 VZ |
3402 | wxDataViewEvent le(wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED, |
3403 | parent->GetId()); | |
d37b709c RR |
3404 | le.SetItem( GetItemByRow(m_currentRow) ); |
3405 | le.SetEventObject(parent); | |
3406 | le.SetModel(GetOwner()->GetModel()); | |
3407 | ||
3408 | parent->GetEventHandler()->ProcessEvent(le); | |
3409 | } | |
3410 | break; | |
48ae48a9 | 3411 | |
cab07038 RR |
3412 | case WXK_UP: |
3413 | if ( m_currentRow > 0 ) | |
3414 | OnArrowChar( m_currentRow - 1, event ); | |
3415 | break; | |
3416 | ||
3417 | case WXK_DOWN: | |
4a851b11 | 3418 | if ( m_currentRow < GetRowCount() - 1 ) |
cab07038 RR |
3419 | OnArrowChar( m_currentRow + 1, event ); |
3420 | break; | |
bc4f1ff2 | 3421 | // Add the process for tree expanding/collapsing |
3b6280be | 3422 | case WXK_LEFT: |
235d5f88 RR |
3423 | { |
3424 | if (IsVirtualList()) | |
3425 | break; | |
3426 | ||
3427 | wxDataViewTreeNode* node = GetTreeNodeByRow(m_currentRow); | |
3428 | if (!node) | |
3429 | break; | |
3430 | ||
0a807957 | 3431 | if (node->HasChildren() && node->IsOpen()) |
235d5f88 RR |
3432 | { |
3433 | Collapse(m_currentRow); | |
3434 | } | |
0a807957 | 3435 | else // if the node is already closed we move the selection to its parent |
235d5f88 RR |
3436 | { |
3437 | wxDataViewTreeNode *parent_node = node->GetParent(); | |
0a807957 RR |
3438 | |
3439 | if(!node->HasChildren()) | |
3440 | delete node; | |
3441 | ||
235d5f88 RR |
3442 | if (parent_node) |
3443 | { | |
3444 | int parent = GetRowByItem( parent_node->GetItem() ); | |
3445 | if ( parent >= 0 ) | |
3446 | { | |
3447 | unsigned int row = m_currentRow; | |
3448 | SelectRow( row, false); | |
3449 | SelectRow( parent, true ); | |
3450 | ChangeCurrentRow( parent ); | |
0a807957 | 3451 | GetOwner()->EnsureVisible( parent, -1 ); |
235d5f88 RR |
3452 | SendSelectionChangedEvent( parent_node->GetItem() ); |
3453 | } | |
3454 | } | |
3455 | } | |
3456 | break; | |
3457 | } | |
3458 | case WXK_RIGHT: | |
3459 | { | |
3460 | if (!IsExpanded( m_currentRow )) | |
3461 | Expand( m_currentRow ); | |
3462 | else | |
3463 | { | |
3464 | unsigned int row = m_currentRow; | |
3465 | SelectRow( row, false ); | |
3466 | SelectRow( row + 1, true ); | |
3467 | ChangeCurrentRow( row + 1 ); | |
0a807957 | 3468 | GetOwner()->EnsureVisible( row + 1, -1 ); |
235d5f88 RR |
3469 | SendSelectionChangedEvent( GetItemByRow(row+1) ); |
3470 | } | |
3471 | break; | |
3472 | } | |
cab07038 | 3473 | case WXK_END: |
235d5f88 | 3474 | { |
cab07038 RR |
3475 | if (!IsEmpty()) |
3476 | OnArrowChar( GetRowCount() - 1, event ); | |
3477 | break; | |
235d5f88 | 3478 | } |
cab07038 RR |
3479 | case WXK_HOME: |
3480 | if (!IsEmpty()) | |
3481 | OnArrowChar( 0, event ); | |
3482 | break; | |
3483 | ||
3484 | case WXK_PAGEUP: | |
3485 | { | |
3486 | int steps = pageSize - 1; | |
3487 | int index = m_currentRow - steps; | |
3488 | if (index < 0) | |
3489 | index = 0; | |
3490 | ||
3491 | OnArrowChar( index, event ); | |
3492 | } | |
3493 | break; | |
3494 | ||
3495 | case WXK_PAGEDOWN: | |
3496 | { | |
3497 | int steps = pageSize - 1; | |
0a71f9e9 RR |
3498 | unsigned int index = m_currentRow + steps; |
3499 | unsigned int count = GetRowCount(); | |
cab07038 RR |
3500 | if ( index >= count ) |
3501 | index = count - 1; | |
3502 | ||
3503 | OnArrowChar( index, event ); | |
3504 | } | |
3505 | break; | |
3506 | ||
0a807957 RR |
3507 | case WXK_F2: |
3508 | { | |
3509 | if(m_selection.size() == 1) | |
3510 | { | |
3511 | // TODO: we need to revise that when we have a concept for a 'current column' | |
3512 | GetOwner()->StartEditor(GetItemByRow(m_selection[0]), 0); | |
3513 | } | |
3514 | } | |
3515 | break; | |
3516 | ||
cab07038 RR |
3517 | default: |
3518 | event.Skip(); | |
3519 | } | |
3520 | } | |
3521 | ||
4ed7af08 RR |
3522 | void wxDataViewMainWindow::OnMouse( wxMouseEvent &event ) |
3523 | { | |
e21f75bd RR |
3524 | if (event.GetEventType() == wxEVT_MOUSEWHEEL) |
3525 | { | |
3526 | // let the base handle mouse wheel events. | |
3527 | event.Skip(); | |
3528 | return; | |
3529 | } | |
3530 | ||
0fdc2321 RR |
3531 | int x = event.GetX(); |
3532 | int y = event.GetY(); | |
3533 | m_owner->CalcUnscrolledPosition( x, y, &x, &y ); | |
0fdc2321 | 3534 | wxDataViewColumn *col = NULL; |
b7fe2261 | 3535 | |
0fdc2321 | 3536 | int xpos = 0; |
9861f022 | 3537 | unsigned int cols = GetOwner()->GetColumnCount(); |
0a71f9e9 | 3538 | unsigned int i; |
0fdc2321 RR |
3539 | for (i = 0; i < cols; i++) |
3540 | { | |
702f5349 | 3541 | wxDataViewColumn *c = GetOwner()->GetColumnAt( i ); |
9861f022 RR |
3542 | if (c->IsHidden()) |
3543 | continue; // skip it! | |
3544 | ||
0fdc2321 RR |
3545 | if (x < xpos + c->GetWidth()) |
3546 | { | |
3547 | col = c; | |
3548 | break; | |
3549 | } | |
3550 | xpos += c->GetWidth(); | |
3551 | } | |
f554a14b | 3552 | if (!col) |
0fdc2321 | 3553 | return; |
f554a14b | 3554 | |
24c4a50f | 3555 | wxDataViewRenderer *cell = col->GetRenderer(); |
344ed1f3 | 3556 | unsigned int current = GetLineAt( y ); |
5179bc0b | 3557 | if ((current >= GetRowCount()) || (x > GetEndOfLastCol())) |
e21f75bd RR |
3558 | { |
3559 | // Unselect all if below the last row ? | |
3560 | return; | |
3561 | } | |
f554a14b | 3562 | |
bc4f1ff2 | 3563 | // Test whether the mouse is hovered on the tree item button |
abdb8c18 | 3564 | bool hoverOverExpander = false; |
344ed1f3 | 3565 | if ((!IsVirtualList()) && (GetOwner()->GetExpanderColumn() == col)) |
24c4a50f RR |
3566 | { |
3567 | wxDataViewTreeNode * node = GetTreeNodeByRow(current); | |
3568 | if( node!=NULL && node->HasChildren() ) | |
3569 | { | |
3570 | int indent = node->GetIndentLevel(); | |
3571 | indent = GetOwner()->GetIndent()*indent; | |
abdb8c18 | 3572 | |
977a41ec FM |
3573 | // we make the rectangle we are looking in a bit bigger than the actual |
3574 | // visual expander so the user can hit that little thing reliably | |
abdb8c18 | 3575 | wxRect rect( xpos + indent, |
977a41ec FM |
3576 | GetLineStart( current ) + (GetLineHeight(current) - m_lineHeight)/2, |
3577 | m_lineHeight, m_lineHeight); | |
abdb8c18 | 3578 | if( rect.Contains(x, y) ) |
24c4a50f | 3579 | { |
bc4f1ff2 | 3580 | // So the mouse is over the expander |
abdb8c18 | 3581 | hoverOverExpander = true; |
24c4a50f RR |
3582 | if (m_underMouse && m_underMouse != node) |
3583 | { | |
bc4f1ff2 | 3584 | // wxLogMessage("Undo the row: %d", GetRowByItem(m_underMouse->GetItem())); |
df2c23e7 | 3585 | RefreshRow(GetRowByItem(m_underMouse->GetItem())); |
24c4a50f RR |
3586 | } |
3587 | if (m_underMouse != node) | |
3588 | { | |
bc4f1ff2 | 3589 | // wxLogMessage("Do the row: %d", current); |
df2c23e7 | 3590 | RefreshRow(current); |
24c4a50f RR |
3591 | } |
3592 | m_underMouse = node; | |
3593 | } | |
3594 | } | |
438fb233 | 3595 | if (node!=NULL && !node->HasChildren()) |
24c4a50f RR |
3596 | delete node; |
3597 | } | |
abdb8c18 | 3598 | if (!hoverOverExpander) |
24c4a50f RR |
3599 | { |
3600 | if (m_underMouse != NULL) | |
3601 | { | |
bc4f1ff2 | 3602 | // wxLogMessage("Undo the row: %d", GetRowByItem(m_underMouse->GetItem())); |
df2c23e7 | 3603 | RefreshRow(GetRowByItem(m_underMouse->GetItem())); |
24c4a50f RR |
3604 | m_underMouse = NULL; |
3605 | } | |
3606 | } | |
3607 | ||
aba9bfd0 | 3608 | wxDataViewModel *model = GetOwner()->GetModel(); |
0fdc2321 | 3609 | |
9adeb77a | 3610 | #if wxUSE_DRAG_AND_DROP |
e21f75bd RR |
3611 | if (event.Dragging()) |
3612 | { | |
3613 | if (m_dragCount == 0) | |
3614 | { | |
3615 | // we have to report the raw, physical coords as we want to be | |
3616 | // able to call HitTest(event.m_pointDrag) from the user code to | |
3617 | // get the item being dragged | |
3618 | m_dragStart = event.GetPosition(); | |
3619 | } | |
3620 | ||
3621 | m_dragCount++; | |
3622 | ||
3623 | if (m_dragCount != 3) | |
3624 | return; | |
3625 | ||
3626 | if (event.LeftIsDown()) | |
3627 | { | |
4cef3873 | 3628 | m_owner->CalcUnscrolledPosition( m_dragStart.x, m_dragStart.y, |
bc4f1ff2 | 3629 | &m_dragStart.x, &m_dragStart.y ); |
821baf7d RR |
3630 | unsigned int drag_item_row = GetLineAt( m_dragStart.y ); |
3631 | wxDataViewItem item = GetItemByRow( drag_item_row ); | |
3632 | ||
e21f75bd | 3633 | // Notify cell about drag |
821baf7d RR |
3634 | wxDataViewEvent event( wxEVT_COMMAND_DATAVIEW_ITEM_BEGIN_DRAG, m_owner->GetId() ); |
3635 | event.SetEventObject( m_owner ); | |
3636 | event.SetItem( item ); | |
3637 | event.SetModel( model ); | |
3638 | if (!m_owner->HandleWindowEvent( event )) | |
3639 | return; | |
9adeb77a | 3640 | |
821baf7d RR |
3641 | if (!event.IsAllowed()) |
3642 | return; | |
9adeb77a | 3643 | |
821baf7d RR |
3644 | wxDataObject *obj = event.GetDataObject(); |
3645 | if (!obj) | |
3646 | return; | |
9adeb77a | 3647 | |
818d91a9 | 3648 | wxDataViewDropSource drag( this, drag_item_row ); |
592883ed | 3649 | drag.SetData( *obj ); |
818d91a9 | 3650 | /* wxDragResult res = */ drag.DoDragDrop(); |
592883ed | 3651 | delete obj; |
e21f75bd RR |
3652 | } |
3653 | return; | |
3654 | } | |
3655 | else | |
3656 | { | |
3657 | m_dragCount = 0; | |
3658 | } | |
9adeb77a | 3659 | #endif // wxUSE_DRAG_AND_DROP |
e21f75bd | 3660 | |
abdb8c18 | 3661 | bool simulateClick = false; |
e21f75bd | 3662 | |
0fcce6b9 RR |
3663 | if (event.ButtonDClick()) |
3664 | { | |
3665 | m_renameTimer->Stop(); | |
3666 | m_lastOnSame = false; | |
3667 | } | |
3668 | ||
438fb233 RR |
3669 | wxDataViewItem item = GetItemByRow(current); |
3670 | bool ignore_other_columns = | |
3671 | ((GetOwner()->GetExpanderColumn() != col) && | |
977a41ec FM |
3672 | (model->IsContainer(item)) && |
3673 | (!model->HasContainerColumns(item))); | |
b5ec7dd6 | 3674 | |
0fdc2321 RR |
3675 | if (event.LeftDClick()) |
3676 | { | |
977a41ec FM |
3677 | if(hoverOverExpander) |
3678 | { | |
3679 | // a double click on the expander will be converted into a "simulated" normal click | |
3680 | simulateClick = true; | |
3681 | } | |
3682 | else if ( current == m_lineLastClicked ) | |
0fdc2321 | 3683 | { |
438fb233 | 3684 | if ((!ignore_other_columns) && (cell->GetMode() == wxDATAVIEW_CELL_ACTIVATABLE)) |
e21f75bd RR |
3685 | { |
3686 | wxVariant value; | |
6cdcbce3 | 3687 | model->GetValue( value, item, col->GetModelColumn() ); |
e21f75bd | 3688 | cell->SetValue( value ); |
344ed1f3 | 3689 | wxRect cell_rect( xpos, GetLineStart( current ), |
977a41ec | 3690 | col->GetWidth(), GetLineHeight( current ) ); |
6cdcbce3 | 3691 | cell->Activate( cell_rect, model, item, col->GetModelColumn() ); |
2c3f6edd RR |
3692 | } |
3693 | else | |
3694 | { | |
b7e9f8b1 RR |
3695 | wxWindow *parent = GetParent(); |
3696 | wxDataViewEvent le(wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED, parent->GetId()); | |
45c156e0 | 3697 | le.SetItem( item ); |
b7e9f8b1 | 3698 | le.SetEventObject(parent); |
b7e9f8b1 RR |
3699 | le.SetModel(GetOwner()->GetModel()); |
3700 | ||
3701 | parent->GetEventHandler()->ProcessEvent(le); | |
e21f75bd RR |
3702 | } |
3703 | return; | |
3704 | } | |
3705 | else | |
3706 | { | |
3707 | // The first click was on another item, so don't interpret this as | |
3708 | // a double click, but as a simple click instead | |
abdb8c18 | 3709 | simulateClick = true; |
0fdc2321 | 3710 | } |
120b9b05 | 3711 | } |
f554a14b | 3712 | |
abdb8c18 | 3713 | if (event.LeftUp() && !hoverOverExpander) |
0fcce6b9 | 3714 | { |
0a71f9e9 | 3715 | if (m_lineSelectSingleOnUp != (unsigned int)-1) |
e21f75bd RR |
3716 | { |
3717 | // select single line | |
3718 | SelectAllRows( false ); | |
3719 | SelectRow( m_lineSelectSingleOnUp, true ); | |
4a745e76 | 3720 | SendSelectionChangedEvent( GetItemByRow(m_lineSelectSingleOnUp) ); |
e21f75bd | 3721 | } |
120b9b05 | 3722 | |
4cef3873 | 3723 | // If the user click the expander, we do not do editing even if the column |
bc4f1ff2 | 3724 | // with expander are editable |
abdb8c18 | 3725 | if (m_lastOnSame && !ignore_other_columns) |
0fcce6b9 | 3726 | { |
a8461d31 | 3727 | if ((col == m_currentCol) && (current == m_currentRow) && |
0bdfa388 | 3728 | (cell->GetMode() & wxDATAVIEW_CELL_EDITABLE) ) |
0fcce6b9 RR |
3729 | { |
3730 | m_renameTimer->Start( 100, true ); | |
3731 | } | |
3732 | } | |
3733 | ||
3734 | m_lastOnSame = false; | |
0a71f9e9 | 3735 | m_lineSelectSingleOnUp = (unsigned int)-1; |
120b9b05 | 3736 | } |
abdb8c18 | 3737 | else if(!event.LeftUp()) |
e21f75bd RR |
3738 | { |
3739 | // This is necessary, because after a DnD operation in | |
3740 | // from and to ourself, the up event is swallowed by the | |
3741 | // DnD code. So on next non-up event (which means here and | |
3742 | // now) m_lineSelectSingleOnUp should be reset. | |
0a71f9e9 | 3743 | m_lineSelectSingleOnUp = (unsigned int)-1; |
e21f75bd RR |
3744 | } |
3745 | ||
3746 | if (event.RightDown()) | |
3747 | { | |
3748 | m_lineBeforeLastClicked = m_lineLastClicked; | |
3749 | m_lineLastClicked = current; | |
3750 | ||
3751 | // If the item is already selected, do not update the selection. | |
3752 | // Multi-selections should not be cleared if a selected item is clicked. | |
3753 | if (!IsRowSelected(current)) | |
3754 | { | |
3755 | SelectAllRows(false); | |
3756 | ChangeCurrentRow(current); | |
3757 | SelectRow(m_currentRow,true); | |
526e19e2 | 3758 | SendSelectionChangedEvent(GetItemByRow( m_currentRow ) ); |
e21f75bd | 3759 | } |
0a807957 RR |
3760 | } |
3761 | else if (event.RightUp()) | |
3762 | { | |
f210b1b5 RR |
3763 | wxVariant value; |
3764 | model->GetValue( value, item, col->GetModelColumn() ); | |
0bdfa388 RR |
3765 | wxWindow *parent = GetParent(); |
3766 | wxDataViewEvent le(wxEVT_COMMAND_DATAVIEW_ITEM_CONTEXT_MENU, parent->GetId()); | |
3767 | le.SetItem( item ); | |
3768 | le.SetEventObject(parent); | |
3769 | le.SetModel(GetOwner()->GetModel()); | |
3770 | le.SetValue(value); | |
3771 | parent->GetEventHandler()->ProcessEvent(le); | |
e21f75bd RR |
3772 | } |
3773 | else if (event.MiddleDown()) | |
3774 | { | |
e21f75bd | 3775 | } |
abdb8c18 | 3776 | |
977a41ec FM |
3777 | if((event.LeftDown() || simulateClick) && hoverOverExpander) |
3778 | { | |
3779 | wxDataViewTreeNode* node = GetTreeNodeByRow(current); | |
bc4f1ff2 | 3780 | |
4cef3873 | 3781 | // hoverOverExpander being true tells us that our node must be |
bc4f1ff2 | 3782 | // valid and have children. |
977a41ec FM |
3783 | // So we don't need any extra checks. |
3784 | if( node->IsOpen() ) | |
235d5f88 | 3785 | Collapse(current); |
977a41ec | 3786 | else |
235d5f88 | 3787 | Expand(current); |
977a41ec FM |
3788 | } |
3789 | else if ((event.LeftDown() || simulateClick) && !hoverOverExpander) | |
0fcce6b9 | 3790 | { |
72664514 | 3791 | SetFocus(); |
120b9b05 | 3792 | |
e21f75bd RR |
3793 | m_lineBeforeLastClicked = m_lineLastClicked; |
3794 | m_lineLastClicked = current; | |
3795 | ||
0a71f9e9 | 3796 | unsigned int oldCurrentRow = m_currentRow; |
e21f75bd RR |
3797 | bool oldWasSelected = IsRowSelected(m_currentRow); |
3798 | ||
3799 | bool cmdModifierDown = event.CmdDown(); | |
3800 | if ( IsSingleSel() || !(cmdModifierDown || event.ShiftDown()) ) | |
3801 | { | |
3802 | if ( IsSingleSel() || !IsRowSelected(current) ) | |
3803 | { | |
3804 | SelectAllRows( false ); | |
e21f75bd | 3805 | ChangeCurrentRow(current); |
e21f75bd | 3806 | SelectRow(m_currentRow,true); |
526e19e2 | 3807 | SendSelectionChangedEvent(GetItemByRow( m_currentRow ) ); |
e21f75bd RR |
3808 | } |
3809 | else // multi sel & current is highlighted & no mod keys | |
3810 | { | |
3811 | m_lineSelectSingleOnUp = current; | |
3812 | ChangeCurrentRow(current); // change focus | |
3813 | } | |
3814 | } | |
3815 | else // multi sel & either ctrl or shift is down | |
3816 | { | |
3817 | if (cmdModifierDown) | |
3818 | { | |
3819 | ChangeCurrentRow(current); | |
e21f75bd | 3820 | ReverseRowSelection(m_currentRow); |
526e19e2 | 3821 | SendSelectionChangedEvent(GetItemByRow(m_selection[0]) ); |
e21f75bd RR |
3822 | } |
3823 | else if (event.ShiftDown()) | |
3824 | { | |
3825 | ChangeCurrentRow(current); | |
3826 | ||
0a71f9e9 | 3827 | unsigned int lineFrom = oldCurrentRow, |
977a41ec | 3828 | lineTo = current; |
e21f75bd RR |
3829 | |
3830 | if ( lineTo < lineFrom ) | |
3831 | { | |
3832 | lineTo = lineFrom; | |
3833 | lineFrom = m_currentRow; | |
3834 | } | |
3835 | ||
3836 | SelectRows(lineFrom, lineTo, true); | |
526e19e2 | 3837 | SendSelectionChangedEvent(GetItemByRow(m_selection[0]) ); |
e21f75bd RR |
3838 | } |
3839 | else // !ctrl, !shift | |
3840 | { | |
3841 | // test in the enclosing if should make it impossible | |
3842 | wxFAIL_MSG( _T("how did we get here?") ); | |
3843 | } | |
3844 | } | |
777f9cef | 3845 | |
72664514 RR |
3846 | if (m_currentRow != oldCurrentRow) |
3847 | RefreshRow( oldCurrentRow ); | |
e21f75bd | 3848 | |
0fcce6b9 | 3849 | wxDataViewColumn *oldCurrentCol = m_currentCol; |
120b9b05 | 3850 | |
0fcce6b9 RR |
3851 | // Update selection here... |
3852 | m_currentCol = col; | |
120b9b05 | 3853 | |
abdb8c18 | 3854 | m_lastOnSame = !simulateClick && ((col == oldCurrentCol) && |
87f0efe2 | 3855 | (current == oldCurrentRow)) && oldWasSelected; |
0bdfa388 RR |
3856 | |
3857 | // Call LeftClick after everything else as under GTK+ | |
3858 | if (cell->GetMode() & wxDATAVIEW_CELL_ACTIVATABLE) | |
3859 | { | |
3860 | // notify cell about right click | |
3861 | wxVariant value; | |
3862 | model->GetValue( value, item, col->GetModelColumn() ); | |
3863 | cell->SetValue( value ); | |
344ed1f3 | 3864 | wxRect cell_rect( xpos, GetLineStart( current ), |
bc4f1ff2 | 3865 | col->GetWidth(), GetLineHeight( current ) ); |
4cef3873 | 3866 | /* ignore ret */ cell->LeftClick( event.GetPosition(), cell_rect, |
bc4f1ff2 | 3867 | model, item, col->GetModelColumn()); |
0bdfa388 | 3868 | } |
0fdc2321 | 3869 | } |
4ed7af08 RR |
3870 | } |
3871 | ||
3872 | void wxDataViewMainWindow::OnSetFocus( wxFocusEvent &event ) | |
3873 | { | |
cab07038 | 3874 | m_hasFocus = true; |
120b9b05 | 3875 | |
cab07038 RR |
3876 | if (HasCurrentRow()) |
3877 | Refresh(); | |
120b9b05 | 3878 | |
cab07038 RR |
3879 | event.Skip(); |
3880 | } | |
3881 | ||
3882 | void wxDataViewMainWindow::OnKillFocus( wxFocusEvent &event ) | |
3883 | { | |
3884 | m_hasFocus = false; | |
120b9b05 | 3885 | |
cab07038 RR |
3886 | if (HasCurrentRow()) |
3887 | Refresh(); | |
120b9b05 | 3888 | |
4ed7af08 RR |
3889 | event.Skip(); |
3890 | } | |
3891 | ||
fbda518c | 3892 | wxDataViewItem wxDataViewMainWindow::GetSelection() const |
704c3490 RR |
3893 | { |
3894 | if( m_selection.GetCount() != 1 ) | |
3895 | return wxDataViewItem(); | |
d47db7e0 RR |
3896 | |
3897 | return GetItemByRow( m_selection.Item(0)); | |
704c3490 RR |
3898 | } |
3899 | ||
4ed7af08 RR |
3900 | //----------------------------------------------------------------------------- |
3901 | // wxDataViewCtrl | |
3902 | //----------------------------------------------------------------------------- | |
bc4f1ff2 | 3903 | |
a76c2f37 | 3904 | WX_DEFINE_LIST(wxDataViewColumnList) |
4ed7af08 RR |
3905 | |
3906 | IMPLEMENT_DYNAMIC_CLASS(wxDataViewCtrl, wxDataViewCtrlBase) | |
4b3feaa7 RR |
3907 | BEGIN_EVENT_TABLE(wxDataViewCtrl, wxDataViewCtrlBase) |
3908 | EVT_SIZE(wxDataViewCtrl::OnSize) | |
3909 | END_EVENT_TABLE() | |
3910 | ||
4ed7af08 RR |
3911 | wxDataViewCtrl::~wxDataViewCtrl() |
3912 | { | |
3913 | if (m_notifier) | |
3914 | GetModel()->RemoveNotifier( m_notifier ); | |
74123073 | 3915 | |
b3a3c9d8 | 3916 | m_cols.Clear(); |
4ed7af08 RR |
3917 | } |
3918 | ||
3919 | void wxDataViewCtrl::Init() | |
3920 | { | |
b3a3c9d8 | 3921 | m_cols.DeleteContents(true); |
4ed7af08 | 3922 | m_notifier = NULL; |
e822d1bd | 3923 | |
236a34ef | 3924 | // No sorting column at start |
46234a03 VZ |
3925 | m_sortingColumnIdx = wxNOT_FOUND; |
3926 | ||
236a34ef | 3927 | m_headerArea = NULL; |
4ed7af08 RR |
3928 | } |
3929 | ||
3930 | bool wxDataViewCtrl::Create(wxWindow *parent, wxWindowID id, | |
bc4f1ff2 FM |
3931 | const wxPoint& pos, const wxSize& size, |
3932 | long style, const wxValidator& validator ) | |
4ed7af08 | 3933 | { |
3fdf86f9 RR |
3934 | // if ( (style & wxBORDER_MASK) == 0) |
3935 | // style |= wxBORDER_SUNKEN; | |
777f9cef | 3936 | |
236a34ef RR |
3937 | Init(); |
3938 | ||
c741d33f | 3939 | if (!wxControl::Create( parent, id, pos, size, |
008e999e | 3940 | style | wxScrolledWindowStyle, validator)) |
4b3feaa7 RR |
3941 | return false; |
3942 | ||
b89cac3f | 3943 | SetInitialSize(size); |
b5ec7dd6 | 3944 | |
4ed7af08 | 3945 | #ifdef __WXMAC__ |
59e60167 | 3946 | MacSetClipChildren( true ); |
4ed7af08 RR |
3947 | #endif |
3948 | ||
f554a14b | 3949 | m_clientArea = new wxDataViewMainWindow( this, wxID_ANY ); |
9861f022 RR |
3950 | |
3951 | if (HasFlag(wxDV_NO_HEADER)) | |
3952 | m_headerArea = NULL; | |
3953 | else | |
56873923 | 3954 | m_headerArea = new wxDataViewHeaderWindow(this); |
f554a14b | 3955 | |
4ed7af08 | 3956 | SetTargetWindow( m_clientArea ); |
f554a14b | 3957 | |
4ed7af08 | 3958 | wxBoxSizer *sizer = new wxBoxSizer( wxVERTICAL ); |
9861f022 RR |
3959 | if (m_headerArea) |
3960 | sizer->Add( m_headerArea, 0, wxGROW ); | |
4ed7af08 RR |
3961 | sizer->Add( m_clientArea, 1, wxGROW ); |
3962 | SetSizer( sizer ); | |
b5ec7dd6 | 3963 | |
4ed7af08 RR |
3964 | return true; |
3965 | } | |
3966 | ||
3fdf86f9 RR |
3967 | wxBorder wxDataViewCtrl::GetDefaultBorder() const |
3968 | { | |
3969 | return wxBORDER_THEME; | |
3970 | } | |
3971 | ||
4ed7af08 RR |
3972 | #ifdef __WXMSW__ |
3973 | WXLRESULT wxDataViewCtrl::MSWWindowProc(WXUINT nMsg, | |
bc4f1ff2 FM |
3974 | WXWPARAM wParam, |
3975 | WXLPARAM lParam) | |
4ed7af08 | 3976 | { |
b910a8ad | 3977 | WXLRESULT rc = wxDataViewCtrlBase::MSWWindowProc(nMsg, wParam, lParam); |
4ed7af08 RR |
3978 | |
3979 | #ifndef __WXWINCE__ | |
3980 | // we need to process arrows ourselves for scrolling | |
3981 | if ( nMsg == WM_GETDLGCODE ) | |
3982 | { | |
3983 | rc |= DLGC_WANTARROWS; | |
3984 | } | |
3985 | #endif | |
3986 | ||
3987 | return rc; | |
3988 | } | |
3989 | #endif | |
3990 | ||
2571a33f RR |
3991 | wxSize wxDataViewCtrl::GetSizeAvailableForScrollTarget(const wxSize& size) |
3992 | { | |
3993 | wxSize newsize = size; | |
d7cda9b2 | 3994 | if (!HasFlag(wxDV_NO_HEADER) && (m_headerArea)) |
977a41ec | 3995 | newsize.y -= m_headerArea->GetSize().y; |
e822d1bd | 3996 | |
2571a33f RR |
3997 | return newsize; |
3998 | } | |
3999 | ||
f554a14b | 4000 | void wxDataViewCtrl::OnSize( wxSizeEvent &WXUNUSED(event) ) |
4ed7af08 | 4001 | { |
4b3feaa7 RR |
4002 | // We need to override OnSize so that our scrolled |
4003 | // window a) does call Layout() to use sizers for | |
4004 | // positioning the controls but b) does not query | |
4005 | // the sizer for their size and use that for setting | |
4006 | // the scrollable area as set that ourselves by | |
4007 | // calling SetScrollbar() further down. | |
4008 | ||
4009 | Layout(); | |
4010 | ||
4011 | AdjustScrollbars(); | |
4ed7af08 RR |
4012 | } |
4013 | ||
788432e3 RR |
4014 | void wxDataViewCtrl::SetFocus() |
4015 | { | |
4016 | if (m_clientArea) | |
4017 | m_clientArea->SetFocus(); | |
4018 | } | |
4019 | ||
aba9bfd0 | 4020 | bool wxDataViewCtrl::AssociateModel( wxDataViewModel *model ) |
4ed7af08 RR |
4021 | { |
4022 | if (!wxDataViewCtrlBase::AssociateModel( model )) | |
4023 | return false; | |
4024 | ||
aba9bfd0 | 4025 | m_notifier = new wxGenericDataViewModelNotifier( m_clientArea ); |
4ed7af08 | 4026 | |
f554a14b | 4027 | model->AddNotifier( m_notifier ); |
4ed7af08 | 4028 | |
51bdecff | 4029 | m_clientArea->DestroyTree(); |
cfa42cb8 | 4030 | |
aba9bfd0 RR |
4031 | m_clientArea->BuildTree(model); |
4032 | ||
4b3feaa7 | 4033 | m_clientArea->UpdateDisplay(); |
f554a14b | 4034 | |
4ed7af08 RR |
4035 | return true; |
4036 | } | |
4037 | ||
9adeb77a VZ |
4038 | #if wxUSE_DRAG_AND_DROP |
4039 | ||
821baf7d RR |
4040 | bool wxDataViewCtrl::EnableDragSource( const wxDataFormat &format ) |
4041 | { | |
4042 | return m_clientArea->EnableDragSource( format ); | |
4043 | } | |
4044 | ||
4045 | bool wxDataViewCtrl::EnableDropTarget( const wxDataFormat &format ) | |
4046 | { | |
4047 | return m_clientArea->EnableDropTarget( format ); | |
4048 | } | |
4049 | ||
9adeb77a VZ |
4050 | #endif // wxUSE_DRAG_AND_DROP |
4051 | ||
4ed7af08 RR |
4052 | bool wxDataViewCtrl::AppendColumn( wxDataViewColumn *col ) |
4053 | { | |
4054 | if (!wxDataViewCtrlBase::AppendColumn(col)) | |
4055 | return false; | |
f554a14b | 4056 | |
afebb87b | 4057 | m_cols.Append( col ); |
aef252d9 | 4058 | OnColumnsCountChanged(); |
736fe67c RR |
4059 | return true; |
4060 | } | |
4061 | ||
4062 | bool wxDataViewCtrl::PrependColumn( wxDataViewColumn *col ) | |
4063 | { | |
4064 | if (!wxDataViewCtrlBase::PrependColumn(col)) | |
4065 | return false; | |
4066 | ||
4067 | m_cols.Insert( col ); | |
aef252d9 | 4068 | OnColumnsCountChanged(); |
4ed7af08 RR |
4069 | return true; |
4070 | } | |
4071 | ||
19723525 RR |
4072 | bool wxDataViewCtrl::InsertColumn( unsigned int pos, wxDataViewColumn *col ) |
4073 | { | |
4074 | if (!wxDataViewCtrlBase::InsertColumn(pos,col)) | |
4075 | return false; | |
4076 | ||
4077 | m_cols.Insert( pos, col ); | |
aef252d9 | 4078 | OnColumnsCountChanged(); |
19723525 RR |
4079 | return true; |
4080 | } | |
4081 | ||
aef252d9 VZ |
4082 | void wxDataViewCtrl::OnColumnChange(unsigned int idx) |
4083 | { | |
4084 | if ( m_headerArea ) | |
4085 | m_headerArea->UpdateColumn(idx); | |
4086 | ||
4087 | m_clientArea->UpdateDisplay(); | |
4088 | } | |
4089 | ||
4090 | void wxDataViewCtrl::OnColumnsCountChanged() | |
9861f022 RR |
4091 | { |
4092 | if (m_headerArea) | |
e2bfe673 | 4093 | m_headerArea->SetColumnCount(GetColumnCount()); |
9861f022 RR |
4094 | |
4095 | m_clientArea->UpdateDisplay(); | |
4096 | } | |
3b6280be RR |
4097 | |
4098 | void wxDataViewCtrl::DoSetExpanderColumn() | |
4099 | { | |
4100 | m_clientArea->UpdateDisplay(); | |
4101 | } | |
4102 | ||
4103 | void wxDataViewCtrl::DoSetIndent() | |
4104 | { | |
4105 | m_clientArea->UpdateDisplay(); | |
4106 | } | |
4107 | ||
afebb87b RR |
4108 | unsigned int wxDataViewCtrl::GetColumnCount() const |
4109 | { | |
4110 | return m_cols.GetCount(); | |
4111 | } | |
4112 | ||
aef252d9 | 4113 | wxDataViewColumn* wxDataViewCtrl::GetColumn( unsigned int idx ) const |
afebb87b | 4114 | { |
aef252d9 | 4115 | return m_cols[idx]; |
afebb87b RR |
4116 | } |
4117 | ||
702f5349 | 4118 | wxDataViewColumn *wxDataViewCtrl::GetColumnAt(unsigned int pos) const |
fc8c1a15 | 4119 | { |
702f5349 VZ |
4120 | // columns can't be reordered if there is no header window which allows |
4121 | // to do this | |
4122 | const unsigned idx = m_headerArea ? m_headerArea->GetColumnsOrder()[pos] | |
977a41ec | 4123 | : pos; |
59e60167 | 4124 | |
702f5349 VZ |
4125 | return GetColumn(idx); |
4126 | } | |
cfa42cb8 | 4127 | |
702f5349 VZ |
4128 | int wxDataViewCtrl::GetColumnIndex(const wxDataViewColumn *column) const |
4129 | { | |
4130 | const unsigned count = m_cols.size(); | |
4131 | for ( unsigned n = 0; n < count; n++ ) | |
4132 | { | |
4133 | if ( m_cols[n] == column ) | |
4134 | return n; | |
4135 | } | |
4136 | ||
4137 | return wxNOT_FOUND; | |
4138 | } | |
4139 | ||
4140 | void wxDataViewCtrl::ColumnMoved(wxDataViewColumn * WXUNUSED(col), | |
977a41ec | 4141 | unsigned int WXUNUSED(new_pos)) |
702f5349 VZ |
4142 | { |
4143 | // do _not_ reorder m_cols elements here, they should always be in the | |
4144 | // order in which columns were added, we only display the columns in | |
4145 | // different order | |
fc8c1a15 RR |
4146 | m_clientArea->UpdateDisplay(); |
4147 | } | |
4148 | ||
afebb87b RR |
4149 | bool wxDataViewCtrl::DeleteColumn( wxDataViewColumn *column ) |
4150 | { | |
b3a3c9d8 | 4151 | wxDataViewColumnList::compatibility_iterator ret = m_cols.Find( column ); |
4264606e | 4152 | if (!ret) |
afebb87b RR |
4153 | return false; |
4154 | ||
b7fe2261 | 4155 | m_cols.Erase(ret); |
aef252d9 | 4156 | OnColumnsCountChanged(); |
afebb87b RR |
4157 | |
4158 | return true; | |
4159 | } | |
4160 | ||
4161 | bool wxDataViewCtrl::ClearColumns() | |
4162 | { | |
b3a3c9d8 | 4163 | m_cols.Clear(); |
aef252d9 | 4164 | OnColumnsCountChanged(); |
afebb87b RR |
4165 | return true; |
4166 | } | |
4167 | ||
453091c2 RR |
4168 | int wxDataViewCtrl::GetColumnPosition( const wxDataViewColumn *column ) const |
4169 | { | |
702f5349 VZ |
4170 | int ret = 0, |
4171 | dummy = 0; | |
4172 | unsigned int len = GetColumnCount(); | |
4173 | for ( unsigned int i = 0; i < len; i++ ) | |
526e19e2 | 4174 | { |
702f5349 | 4175 | wxDataViewColumn * col = GetColumnAt(i); |
526e19e2 RR |
4176 | if (col->IsHidden()) |
4177 | continue; | |
4178 | ret += col->GetWidth(); | |
4179 | if (column==col) | |
4180 | { | |
702f5349 | 4181 | CalcScrolledPosition( ret, dummy, &ret, &dummy ); |
526e19e2 RR |
4182 | break; |
4183 | } | |
4184 | } | |
4185 | return ret; | |
453091c2 RR |
4186 | } |
4187 | ||
21f47fb9 RR |
4188 | wxDataViewColumn *wxDataViewCtrl::GetSortingColumn() const |
4189 | { | |
46234a03 | 4190 | return m_sortingColumnIdx == wxNOT_FOUND ? NULL |
977a41ec | 4191 | : GetColumn(m_sortingColumnIdx); |
21f47fb9 RR |
4192 | } |
4193 | ||
bc4f1ff2 | 4194 | // Selection code with wxDataViewItem as parameters |
fbda518c | 4195 | wxDataViewItem wxDataViewCtrl::GetSelection() const |
66e09788 RR |
4196 | { |
4197 | return m_clientArea->GetSelection(); | |
4198 | } | |
4199 | ||
b7e9f8b1 RR |
4200 | int wxDataViewCtrl::GetSelections( wxDataViewItemArray & sel ) const |
4201 | { | |
4202 | sel.Empty(); | |
4203 | wxDataViewSelection selection = m_clientArea->GetSelections(); | |
4204 | int len = selection.GetCount(); | |
4205 | for( int i = 0; i < len; i ++) | |
4206 | { | |
4207 | unsigned int row = selection[i]; | |
4208 | sel.Add( m_clientArea->GetItemByRow( row ) ); | |
4209 | } | |
4210 | return len; | |
4211 | } | |
4212 | ||
4213 | void wxDataViewCtrl::SetSelections( const wxDataViewItemArray & sel ) | |
4214 | { | |
59e60167 | 4215 | wxDataViewSelection selection(wxDataViewSelectionCmp); |
4219d8b0 RR |
4216 | |
4217 | wxDataViewItem last_parent; | |
4218 | ||
b7e9f8b1 RR |
4219 | int len = sel.GetCount(); |
4220 | for( int i = 0; i < len; i ++ ) | |
4221 | { | |
4219d8b0 RR |
4222 | wxDataViewItem item = sel[i]; |
4223 | wxDataViewItem parent = GetModel()->GetParent( item ); | |
4224 | if (parent) | |
4225 | { | |
4226 | if (parent != last_parent) | |
4227 | ExpandAncestors(item); | |
4228 | } | |
9adeb77a | 4229 | |
4219d8b0 RR |
4230 | last_parent = parent; |
4231 | int row = m_clientArea->GetRowByItem( item ); | |
b7e9f8b1 RR |
4232 | if( row >= 0 ) |
4233 | selection.Add( static_cast<unsigned int>(row) ); | |
4234 | } | |
9adeb77a | 4235 | |
b7e9f8b1 RR |
4236 | m_clientArea->SetSelections( selection ); |
4237 | } | |
4238 | ||
4239 | void wxDataViewCtrl::Select( const wxDataViewItem & item ) | |
704c3490 | 4240 | { |
4219d8b0 | 4241 | ExpandAncestors( item ); |
9adeb77a | 4242 | |
b7e9f8b1 RR |
4243 | int row = m_clientArea->GetRowByItem( item ); |
4244 | if( row >= 0 ) | |
57f2a652 | 4245 | { |
bc4f1ff2 | 4246 | // Unselect all rows before select another in the single select mode |
57f2a652 RR |
4247 | if (m_clientArea->IsSingleSel()) |
4248 | m_clientArea->SelectAllRows(false); | |
b7e9f8b1 | 4249 | m_clientArea->SelectRow(row, true); |
57f2a652 | 4250 | } |
704c3490 | 4251 | } |
3b6280be | 4252 | |
b7e9f8b1 | 4253 | void wxDataViewCtrl::Unselect( const wxDataViewItem & item ) |
6ff7eee7 | 4254 | { |
b7e9f8b1 RR |
4255 | int row = m_clientArea->GetRowByItem( item ); |
4256 | if( row >= 0 ) | |
4257 | m_clientArea->SelectRow(row, false); | |
6ff7eee7 RR |
4258 | } |
4259 | ||
b7e9f8b1 | 4260 | bool wxDataViewCtrl::IsSelected( const wxDataViewItem & item ) const |
6ff7eee7 | 4261 | { |
b7e9f8b1 RR |
4262 | int row = m_clientArea->GetRowByItem( item ); |
4263 | if( row >= 0 ) | |
4264 | { | |
4265 | return m_clientArea->IsRowSelected(row); | |
4266 | } | |
4267 | return false; | |
6ff7eee7 RR |
4268 | } |
4269 | ||
bc4f1ff2 | 4270 | // Selection code with row number as parameter |
b7e9f8b1 | 4271 | int wxDataViewCtrl::GetSelections( wxArrayInt & sel ) const |
6ff7eee7 | 4272 | { |
b7e9f8b1 RR |
4273 | sel.Empty(); |
4274 | wxDataViewSelection selection = m_clientArea->GetSelections(); | |
4275 | int len = selection.GetCount(); | |
4276 | for( int i = 0; i < len; i ++) | |
4277 | { | |
4278 | unsigned int row = selection[i]; | |
4279 | sel.Add( row ); | |
4280 | } | |
4281 | return len; | |
6ff7eee7 | 4282 | } |
df387169 | 4283 | |
b7e9f8b1 | 4284 | void wxDataViewCtrl::SetSelections( const wxArrayInt & sel ) |
fc211fe5 | 4285 | { |
59e60167 | 4286 | wxDataViewSelection selection(wxDataViewSelectionCmp); |
b7e9f8b1 RR |
4287 | int len = sel.GetCount(); |
4288 | for( int i = 0; i < len; i ++ ) | |
4289 | { | |
4290 | int row = sel[i]; | |
4291 | if( row >= 0 ) | |
4292 | selection.Add( static_cast<unsigned int>(row) ); | |
4293 | } | |
4294 | m_clientArea->SetSelections( selection ); | |
fc211fe5 RR |
4295 | } |
4296 | ||
b7e9f8b1 | 4297 | void wxDataViewCtrl::Select( int row ) |
6ff7eee7 | 4298 | { |
b7e9f8b1 | 4299 | if( row >= 0 ) |
57f2a652 RR |
4300 | { |
4301 | if (m_clientArea->IsSingleSel()) | |
4302 | m_clientArea->SelectAllRows(false); | |
b7e9f8b1 | 4303 | m_clientArea->SelectRow( row, true ); |
57f2a652 | 4304 | } |
b7e9f8b1 | 4305 | } |
df387169 | 4306 | |
b7e9f8b1 RR |
4307 | void wxDataViewCtrl::Unselect( int row ) |
4308 | { | |
4309 | if( row >= 0 ) | |
4310 | m_clientArea->SelectRow(row, false); | |
4311 | } | |
4312 | ||
4313 | bool wxDataViewCtrl::IsSelected( int row ) const | |
4314 | { | |
4315 | if( row >= 0 ) | |
4316 | return m_clientArea->IsRowSelected(row); | |
6ff7eee7 RR |
4317 | return false; |
4318 | } | |
4319 | ||
b7e9f8b1 | 4320 | void wxDataViewCtrl::SelectRange( int from, int to ) |
6ff7eee7 | 4321 | { |
b7fe2261 | 4322 | wxArrayInt sel; |
b7e9f8b1 RR |
4323 | for( int i = from; i < to; i ++ ) |
4324 | sel.Add( i ); | |
4325 | m_clientArea->Select(sel); | |
4326 | } | |
df387169 | 4327 | |
b7e9f8b1 RR |
4328 | void wxDataViewCtrl::UnselectRange( int from, int to ) |
4329 | { | |
4330 | wxDataViewSelection sel = m_clientArea->GetSelections(); | |
4331 | for( int i = from; i < to; i ++ ) | |
4332 | if( sel.Index( i ) != wxNOT_FOUND ) | |
4333 | sel.Remove( i ); | |
4334 | m_clientArea->SetSelections(sel); | |
6ff7eee7 RR |
4335 | } |
4336 | ||
b7e9f8b1 | 4337 | void wxDataViewCtrl::SelectAll() |
6ff7eee7 | 4338 | { |
b7e9f8b1 RR |
4339 | m_clientArea->SelectAllRows(true); |
4340 | } | |
df387169 | 4341 | |
b7e9f8b1 RR |
4342 | void wxDataViewCtrl::UnselectAll() |
4343 | { | |
4344 | m_clientArea->SelectAllRows(false); | |
6ff7eee7 | 4345 | } |
b7e9f8b1 | 4346 | |
fbda518c | 4347 | void wxDataViewCtrl::EnsureVisible( int row, int column ) |
b7e9f8b1 | 4348 | { |
fbda518c RR |
4349 | if( row < 0 ) |
4350 | row = 0; | |
67be459b | 4351 | if( row > (int) m_clientArea->GetRowCount() ) |
fbda518c RR |
4352 | row = m_clientArea->GetRowCount(); |
4353 | ||
4354 | int first = m_clientArea->GetFirstVisibleRow(); | |
4355 | int last = m_clientArea->GetLastVisibleRow(); | |
4356 | if( row < first ) | |
4357 | m_clientArea->ScrollTo( row, column ); | |
4358 | else if( row > last ) | |
4359 | m_clientArea->ScrollTo( row - last + first, column ); | |
4360 | else | |
4361 | m_clientArea->ScrollTo( first, column ); | |
b7e9f8b1 RR |
4362 | } |
4363 | ||
fbda518c | 4364 | void wxDataViewCtrl::EnsureVisible( const wxDataViewItem & item, const wxDataViewColumn * column ) |
b7e9f8b1 | 4365 | { |
4219d8b0 | 4366 | ExpandAncestors( item ); |
9adeb77a | 4367 | |
13499080 RR |
4368 | m_clientArea->RecalculateDisplay(); |
4369 | ||
b7e9f8b1 RR |
4370 | int row = m_clientArea->GetRowByItem(item); |
4371 | if( row >= 0 ) | |
fbda518c RR |
4372 | { |
4373 | if( column == NULL ) | |
9bcc8016 | 4374 | EnsureVisible(row, -1); |
fbda518c | 4375 | else |
702f5349 | 4376 | EnsureVisible( row, GetColumnIndex(column) ); |
fbda518c | 4377 | } |
b7fe2261 | 4378 | |
b7e9f8b1 RR |
4379 | } |
4380 | ||
4cef3873 | 4381 | void wxDataViewCtrl::HitTest( const wxPoint & point, wxDataViewItem & item, |
bc4f1ff2 | 4382 | wxDataViewColumn* &column ) const |
66e09788 RR |
4383 | { |
4384 | m_clientArea->HitTest(point, item, column); | |
4385 | } | |
4386 | ||
4cef3873 | 4387 | wxRect wxDataViewCtrl::GetItemRect( const wxDataViewItem & item, |
bc4f1ff2 | 4388 | const wxDataViewColumn* column ) const |
66e09788 RR |
4389 | { |
4390 | return m_clientArea->GetItemRect(item, column); | |
4391 | } | |
4392 | ||
b7e9f8b1 RR |
4393 | wxDataViewItem wxDataViewCtrl::GetItemByRow( unsigned int row ) const |
4394 | { | |
4395 | return m_clientArea->GetItemByRow( row ); | |
4396 | } | |
4397 | ||
4398 | int wxDataViewCtrl::GetRowByItem( const wxDataViewItem & item ) const | |
4399 | { | |
4400 | return m_clientArea->GetRowByItem( item ); | |
4401 | } | |
4402 | ||
afebb87b RR |
4403 | void wxDataViewCtrl::Expand( const wxDataViewItem & item ) |
4404 | { | |
4405 | int row = m_clientArea->GetRowByItem( item ); | |
4406 | if (row != -1) | |
4407 | m_clientArea->Expand(row); | |
4408 | } | |
4409 | ||
4410 | void wxDataViewCtrl::Collapse( const wxDataViewItem & item ) | |
4411 | { | |
4412 | int row = m_clientArea->GetRowByItem( item ); | |
4413 | if (row != -1) | |
b7fe2261 | 4414 | m_clientArea->Collapse(row); |
afebb87b RR |
4415 | } |
4416 | ||
739a8399 RR |
4417 | bool wxDataViewCtrl::IsExpanded( const wxDataViewItem & item ) const |
4418 | { | |
4419 | int row = m_clientArea->GetRowByItem( item ); | |
4420 | if (row != -1) | |
4421 | return m_clientArea->IsExpanded(row); | |
4422 | return false; | |
4423 | } | |
4424 | ||
c937344c RR |
4425 | void wxDataViewCtrl::StartEditor( const wxDataViewItem & item, unsigned int column ) |
4426 | { | |
4427 | wxDataViewColumn* col = GetColumn( column ); | |
4428 | if (!col) | |
4429 | return; | |
4cef3873 | 4430 | |
c937344c RR |
4431 | wxRect itemRect = GetItemRect(item, col); |
4432 | wxDataViewRenderer* renderer = col->GetRenderer(); | |
4433 | renderer->StartEditing(item, itemRect); | |
4434 | } | |
4435 | ||
4cef3873 | 4436 | #endif // !wxUSE_GENERICDATAVIEWCTRL |
4ed7af08 | 4437 | |
4cef3873 | 4438 | #endif // wxUSE_DATAVIEWCTRL |