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