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