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