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