1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/datavgen.cpp
3 // Purpose: wxDataViewCtrl generic implementation
4 // Author: Robert Roebling
5 // Modified by: Francesco Montorsi, Guru Kathiresan, Bo Yang
7 // Copyright: (c) 1998 Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
18 #if wxUSE_DATAVIEWCTRL
20 #include "wx/dataview.h"
22 #ifdef wxUSE_GENERICDATAVIEWCTRL
26 #include "wx/msw/private.h"
27 #include "wx/msw/wrapwin.h"
28 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
32 #include "wx/dcclient.h"
34 #include "wx/settings.h"
35 #include "wx/msgdlg.h"
36 #include "wx/dcscreen.h"
40 #include "wx/stockitem.h"
41 #include "wx/popupwin.h"
42 #include "wx/renderer.h"
43 #include "wx/dcbuffer.h"
46 #include "wx/listimpl.cpp"
47 #include "wx/imaglist.h"
48 #include "wx/headerctrl.h"
50 #include "wx/stopwatch.h"
51 #include "wx/weakref.h"
53 //-----------------------------------------------------------------------------
55 //-----------------------------------------------------------------------------
57 class wxDataViewColumn
;
58 class wxDataViewHeaderWindow
;
61 //-----------------------------------------------------------------------------
63 //-----------------------------------------------------------------------------
65 static const int SCROLL_UNIT_X
= 15;
67 // the cell padding on the left/right
68 static const int PADDING_RIGHTLEFT
= 3;
70 // the expander space margin
71 static const int EXPANDER_MARGIN
= 4;
74 static const int EXPANDER_OFFSET
= 4;
76 static const int EXPANDER_OFFSET
= 1;
79 // Below is the compare stuff.
80 // For the generic implementation, both the leaf nodes and the nodes are sorted for
81 // fast search when needed
82 static wxDataViewModel
* g_model
;
84 // The column is either the index of the column to be used for sorting or one
85 // of the special values in this enum:
88 // Sort when we're thawed later.
89 SortColumn_OnThaw
= -3,
94 // Sort using the model default sort order.
95 SortColumn_Default
= -1
98 static int g_column
= SortColumn_None
;
99 static bool g_asending
= true;
101 // ----------------------------------------------------------------------------
103 // ----------------------------------------------------------------------------
108 // Return the expander column or, if it is not set, the first column and also
109 // set it as the expander one for the future.
110 wxDataViewColumn
* GetExpanderColumnOrFirstOne(wxDataViewCtrl
* dataview
)
112 wxDataViewColumn
* expander
= dataview
->GetExpanderColumn();
115 // TODO-RTL: last column for RTL support
116 expander
= dataview
->GetColumnAt( 0 );
117 dataview
->SetExpanderColumn(expander
);
123 } // anonymous namespace
125 //-----------------------------------------------------------------------------
127 //-----------------------------------------------------------------------------
129 void wxDataViewColumn::Init(int width
, wxAlignment align
, int flags
)
136 m_sortAscending
= true;
139 int wxDataViewColumn::GetWidth() const
143 case wxCOL_WIDTH_DEFAULT
:
144 return wxDVC_DEFAULT_WIDTH
;
146 case wxCOL_WIDTH_AUTOSIZE
:
147 wxCHECK_MSG( m_owner
, wxDVC_DEFAULT_WIDTH
, "no owner control" );
148 return m_owner
->GetBestColumnWidth(m_owner
->GetColumnIndex(this));
155 void wxDataViewColumn::UpdateDisplay()
159 int idx
= m_owner
->GetColumnIndex( this );
160 m_owner
->OnColumnChange( idx
);
164 void wxDataViewColumn::UnsetAsSortKey()
169 m_owner
->SetSortingColumnIndex(wxNOT_FOUND
);
174 void wxDataViewColumn::SetSortOrder(bool ascending
)
179 // First unset the old sort column if any.
180 int oldSortKey
= m_owner
->GetSortingColumnIndex();
181 if ( oldSortKey
!= wxNOT_FOUND
)
183 m_owner
->GetColumn(oldSortKey
)->UnsetAsSortKey();
186 // Now set this one as the new sort column.
187 const int idx
= m_owner
->GetColumnIndex(this);
188 m_owner
->SetSortingColumnIndex(idx
);
191 m_sortAscending
= ascending
;
193 // Call this directly instead of using UpdateDisplay() as we already have
194 // the column index, no need to look it up again.
195 m_owner
->OnColumnChange(idx
);
198 //-----------------------------------------------------------------------------
199 // wxDataViewHeaderWindow
200 //-----------------------------------------------------------------------------
202 class wxDataViewHeaderWindow
: public wxHeaderCtrl
205 wxDataViewHeaderWindow(wxDataViewCtrl
*parent
)
206 : wxHeaderCtrl(parent
)
210 wxDataViewCtrl
*GetOwner() const
211 { return static_cast<wxDataViewCtrl
*>(GetParent()); }
214 // implement/override wxHeaderCtrl functions by forwarding them to the main
216 virtual const wxHeaderColumn
& GetColumn(unsigned int idx
) const
218 return *(GetOwner()->GetColumn(idx
));
221 virtual bool UpdateColumnWidthToFit(unsigned int idx
, int widthTitle
)
223 wxDataViewCtrl
* const owner
= GetOwner();
225 int widthContents
= owner
->GetBestColumnWidth(idx
);
226 owner
->GetColumn(idx
)->SetWidth(wxMax(widthTitle
, widthContents
));
227 owner
->OnColumnChange(idx
);
233 bool SendEvent(wxEventType type
, unsigned int n
)
235 wxDataViewCtrl
* const owner
= GetOwner();
236 wxDataViewEvent
event(type
, owner
->GetId());
238 event
.SetEventObject(owner
);
240 event
.SetDataViewColumn(owner
->GetColumn(n
));
241 event
.SetModel(owner
->GetModel());
243 // for events created by wxDataViewHeaderWindow the
244 // row / value fields are not valid
245 return owner
->ProcessWindowEvent(event
);
248 void OnClick(wxHeaderCtrlEvent
& event
)
250 const unsigned idx
= event
.GetColumn();
252 if ( SendEvent(wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICK
, idx
) )
255 // default handling for the column click is to sort by this column or
256 // toggle its sort order
257 wxDataViewCtrl
* const owner
= GetOwner();
258 wxDataViewColumn
* const col
= owner
->GetColumn(idx
);
259 if ( !col
->IsSortable() )
261 // no default handling for non-sortable columns
266 if ( col
->IsSortKey() )
268 // already using this column for sorting, just change the order
269 col
->ToggleSortOrder();
271 else // not using this column for sorting yet
273 col
->SetSortOrder(true);
276 wxDataViewModel
* const model
= owner
->GetModel();
280 owner
->OnColumnChange(idx
);
282 SendEvent(wxEVT_COMMAND_DATAVIEW_COLUMN_SORTED
, idx
);
285 void OnRClick(wxHeaderCtrlEvent
& event
)
287 if ( !SendEvent(wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK
,
292 void OnResize(wxHeaderCtrlEvent
& event
)
294 wxDataViewCtrl
* const owner
= GetOwner();
296 const unsigned col
= event
.GetColumn();
297 owner
->GetColumn(col
)->SetWidth(event
.GetWidth());
298 GetOwner()->OnColumnChange(col
);
301 void OnEndReorder(wxHeaderCtrlEvent
& event
)
303 wxDataViewCtrl
* const owner
= GetOwner();
304 owner
->ColumnMoved(owner
->GetColumn(event
.GetColumn()),
305 event
.GetNewOrder());
308 DECLARE_EVENT_TABLE()
309 wxDECLARE_NO_COPY_CLASS(wxDataViewHeaderWindow
);
312 BEGIN_EVENT_TABLE(wxDataViewHeaderWindow
, wxHeaderCtrl
)
313 EVT_HEADER_CLICK(wxID_ANY
, wxDataViewHeaderWindow::OnClick
)
314 EVT_HEADER_RIGHT_CLICK(wxID_ANY
, wxDataViewHeaderWindow::OnRClick
)
316 EVT_HEADER_RESIZING(wxID_ANY
, wxDataViewHeaderWindow::OnResize
)
317 EVT_HEADER_END_RESIZE(wxID_ANY
, wxDataViewHeaderWindow::OnResize
)
319 EVT_HEADER_END_REORDER(wxID_ANY
, wxDataViewHeaderWindow::OnEndReorder
)
322 //-----------------------------------------------------------------------------
323 // wxDataViewRenameTimer
324 //-----------------------------------------------------------------------------
326 class wxDataViewRenameTimer
: public wxTimer
329 wxDataViewMainWindow
*m_owner
;
332 wxDataViewRenameTimer( wxDataViewMainWindow
*owner
);
336 //-----------------------------------------------------------------------------
337 // wxDataViewTreeNode
338 //-----------------------------------------------------------------------------
340 class wxDataViewTreeNode
;
341 WX_DEFINE_ARRAY( wxDataViewTreeNode
*, wxDataViewTreeNodes
);
343 int LINKAGEMODE
wxGenericTreeModelNodeCmp( wxDataViewTreeNode
** node1
,
344 wxDataViewTreeNode
** node2
);
346 class wxDataViewTreeNode
349 wxDataViewTreeNode(wxDataViewTreeNode
*parent
, const wxDataViewItem
& item
)
356 ~wxDataViewTreeNode()
360 wxDataViewTreeNodes
& nodes
= m_branchData
->children
;
361 for ( wxDataViewTreeNodes::iterator i
= nodes
.begin();
372 static wxDataViewTreeNode
* CreateRootNode()
374 wxDataViewTreeNode
*n
= new wxDataViewTreeNode(NULL
, wxDataViewItem());
375 n
->m_branchData
= new BranchNodeData
;
376 n
->m_branchData
->open
= true;
380 wxDataViewTreeNode
* GetParent() const { return m_parent
; }
382 const wxDataViewTreeNodes
& GetChildNodes() const
384 wxASSERT( m_branchData
!= NULL
);
385 return m_branchData
->children
;
388 void InsertChild(wxDataViewTreeNode
*node
, unsigned index
)
391 m_branchData
= new BranchNodeData
;
393 m_branchData
->children
.Insert(node
, index
);
395 // TODO: insert into sorted array directly in O(log n) instead of resorting in O(n log n)
397 m_branchData
->children
.Sort( &wxGenericTreeModelNodeCmp
);
400 void RemoveChild(wxDataViewTreeNode
*node
)
402 wxCHECK_RET( m_branchData
!= NULL
, "leaf node doesn't have children" );
403 m_branchData
->children
.Remove(node
);
406 // returns position of child node for given item in children list or wxNOT_FOUND
407 int FindChildByItem(const wxDataViewItem
& item
) const
412 const wxDataViewTreeNodes
& nodes
= m_branchData
->children
;
413 const int len
= nodes
.size();
414 for ( int i
= 0; i
< len
; i
++ )
416 if ( nodes
[i
]->m_item
== item
)
422 const wxDataViewItem
& GetItem() const { return m_item
; }
423 void SetItem( const wxDataViewItem
& item
) { m_item
= item
; }
425 int GetIndentLevel() const
428 const wxDataViewTreeNode
* node
= this;
429 while( node
->GetParent()->GetParent() != NULL
)
431 node
= node
->GetParent();
439 return m_branchData
&& m_branchData
->open
;
444 // We do not allow the (invisible) root node to be collapsed because
445 // there is no way to expand it again.
449 wxCHECK_RET( m_branchData
!= NULL
, "can't open leaf node" );
453 const wxDataViewTreeNodes
& nodes
= m_branchData
->children
;
454 const int len
= nodes
.GetCount();
455 for ( int i
= 0;i
< len
; i
++)
456 sum
+= 1 + nodes
[i
]->GetSubTreeCount();
458 if (m_branchData
->open
)
460 ChangeSubTreeCount(-sum
);
461 m_branchData
->open
= !m_branchData
->open
;
465 m_branchData
->open
= !m_branchData
->open
;
466 ChangeSubTreeCount(+sum
);
470 // "HasChildren" property corresponds to model's IsContainer(). Note that it may be true
471 // even if GetChildNodes() is empty; see below.
472 bool HasChildren() const
474 return m_branchData
!= NULL
;
477 void SetHasChildren(bool has
)
479 // The invisible root item always has children, so ignore any attempts
486 wxDELETE(m_branchData
);
488 else if ( m_branchData
== NULL
)
490 m_branchData
= new BranchNodeData
;
494 int GetSubTreeCount() const
496 return m_branchData
? m_branchData
->subTreeCount
: 0;
499 void ChangeSubTreeCount( int num
)
501 wxASSERT( m_branchData
!= NULL
);
503 if( !m_branchData
->open
)
506 m_branchData
->subTreeCount
+= num
;
507 wxASSERT( m_branchData
->subTreeCount
>= 0 );
510 m_parent
->ChangeSubTreeCount(num
);
520 wxDataViewTreeNodes
& nodes
= m_branchData
->children
;
522 nodes
.Sort( &wxGenericTreeModelNodeCmp
);
523 int len
= nodes
.GetCount();
524 for (int i
= 0; i
< len
; i
++)
526 if ( nodes
[i
]->HasChildren() )
534 wxDataViewTreeNode
*m_parent
;
536 // Corresponding model item.
537 wxDataViewItem m_item
;
539 // Data specific to non-leaf (branch, inner) nodes. They are kept in a
540 // separate struct in order to conserve memory.
541 struct BranchNodeData
549 // Child nodes. Note that this may be empty even if m_hasChildren in
550 // case this branch of the tree wasn't expanded and realized yet.
551 wxDataViewTreeNodes children
;
553 // Is the branch node currently open (expanded)?
556 // Total count of expanded (i.e. visible with the help of some
557 // scrolling) items in the subtree, but excluding this node. I.e. it is
558 // 0 for leaves and is the number of rows the subtree occupies for
563 BranchNodeData
*m_branchData
;
567 int LINKAGEMODE
wxGenericTreeModelNodeCmp( wxDataViewTreeNode
** node1
,
568 wxDataViewTreeNode
** node2
)
570 return g_model
->Compare( (*node1
)->GetItem(), (*node2
)->GetItem(), g_column
, g_asending
);
574 //-----------------------------------------------------------------------------
575 // wxDataViewMainWindow
576 //-----------------------------------------------------------------------------
578 WX_DEFINE_SORTED_ARRAY_SIZE_T(unsigned int, wxDataViewSelection
);
580 class wxDataViewMainWindow
: public wxWindow
583 wxDataViewMainWindow( wxDataViewCtrl
*parent
,
585 const wxPoint
&pos
= wxDefaultPosition
,
586 const wxSize
&size
= wxDefaultSize
,
587 const wxString
&name
= wxT("wxdataviewctrlmainwindow") );
588 virtual ~wxDataViewMainWindow();
590 bool IsList() const { return GetModel()->IsListModel(); }
591 bool IsVirtualList() const { return m_root
== NULL
; }
593 // notifications from wxDataViewModel
594 bool ItemAdded( const wxDataViewItem
&parent
, const wxDataViewItem
&item
);
595 bool ItemDeleted( const wxDataViewItem
&parent
, const wxDataViewItem
&item
);
596 bool ItemChanged( const wxDataViewItem
&item
);
597 bool ValueChanged( const wxDataViewItem
&item
, unsigned int model_column
);
601 if (!IsVirtualList())
609 // Override the base class method to resort if needed, i.e. if
610 // SortPrepare() was called -- and ignored -- while we were frozen.
611 virtual void DoThaw()
613 if ( g_column
== SortColumn_OnThaw
)
616 g_column
= SortColumn_None
;
624 g_model
= GetModel();
626 wxDataViewColumn
* col
= GetOwner()->GetSortingColumn();
629 if (g_model
->HasDefaultCompare())
631 // See below for the explanation of IsFrozen() test.
633 g_column
= SortColumn_OnThaw
;
635 g_column
= SortColumn_Default
;
638 g_column
= SortColumn_None
;
644 // Avoid sorting while the window is frozen, this allows to quickly add
645 // many items without resorting after each addition and only resort
646 // them all at once when the window is finally thawed, see above.
649 g_column
= SortColumn_OnThaw
;
653 g_column
= col
->GetModelColumn();
654 g_asending
= col
->IsSortOrderAscending();
657 void SetOwner( wxDataViewCtrl
* owner
) { m_owner
= owner
; }
658 wxDataViewCtrl
*GetOwner() { return m_owner
; }
659 const wxDataViewCtrl
*GetOwner() const { return m_owner
; }
661 wxDataViewModel
* GetModel() { return GetOwner()->GetModel(); }
662 const wxDataViewModel
* GetModel() const { return GetOwner()->GetModel(); }
664 #if wxUSE_DRAG_AND_DROP
665 wxBitmap
CreateItemBitmap( unsigned int row
, int &indent
);
666 #endif // wxUSE_DRAG_AND_DROP
667 void OnPaint( wxPaintEvent
&event
);
668 void OnCharHook( wxKeyEvent
&event
);
669 void OnChar( wxKeyEvent
&event
);
670 void OnVerticalNavigation(int delta
, const wxKeyEvent
& event
);
673 void OnMouse( wxMouseEvent
&event
);
674 void OnSetFocus( wxFocusEvent
&event
);
675 void OnKillFocus( wxFocusEvent
&event
);
677 void UpdateDisplay();
678 void RecalculateDisplay();
679 void OnInternalIdle();
681 void OnRenameTimer();
683 void ScrollWindow( int dx
, int dy
, const wxRect
*rect
= NULL
);
684 void ScrollTo( int rows
, int column
);
686 unsigned GetCurrentRow() const { return m_currentRow
; }
687 bool HasCurrentRow() { return m_currentRow
!= (unsigned int)-1; }
688 void ChangeCurrentRow( unsigned int row
);
689 bool TryAdvanceCurrentColumn(wxDataViewTreeNode
*node
, bool forward
);
691 wxDataViewColumn
*GetCurrentColumn() const { return m_currentCol
; }
692 void ClearCurrentColumn() { m_currentCol
= NULL
; }
694 bool IsSingleSel() const { return !GetParent()->HasFlag(wxDV_MULTIPLE
); }
695 bool IsEmpty() { return GetRowCount() == 0; }
697 int GetCountPerPage() const;
698 int GetEndOfLastCol() const;
699 unsigned int GetFirstVisibleRow() const;
701 // I change this method to un const because in the tree view,
702 // the displaying number of the tree are changing along with the
703 // expanding/collapsing of the tree nodes
704 unsigned int GetLastVisibleRow();
705 unsigned int GetRowCount() const;
707 const wxDataViewSelection
& GetSelections() const { return m_selection
; }
708 void SetSelections( const wxDataViewSelection
& sel
)
709 { m_selection
= sel
; UpdateDisplay(); }
710 void Select( const wxArrayInt
& aSelections
);
711 void SelectAllRows( bool on
);
712 void SelectRow( unsigned int row
, bool on
);
713 void SelectRows( unsigned int from
, unsigned int to
, bool on
);
714 void ReverseRowSelection( unsigned int row
);
715 bool IsRowSelected( unsigned int row
);
716 void SendSelectionChangedEvent( const wxDataViewItem
& item
);
718 void RefreshRow( unsigned int row
);
719 void RefreshRows( unsigned int from
, unsigned int to
);
720 void RefreshRowsAfter( unsigned int firstRow
);
722 // returns the colour to be used for drawing the rules
723 wxColour
GetRuleColour() const
725 return wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
);
728 wxRect
GetLineRect( unsigned int row
) const;
730 int GetLineStart( unsigned int row
) const; // row * m_lineHeight in fixed mode
731 int GetLineHeight( unsigned int row
) const; // m_lineHeight in fixed mode
732 int GetLineAt( unsigned int y
) const; // y / m_lineHeight in fixed mode
734 void SetRowHeight( int lineHeight
) { m_lineHeight
= lineHeight
; }
735 int GetRowHeight() const { return m_lineHeight
; }
736 int GetDefaultRowHeight() const;
738 // Some useful functions for row and item mapping
739 wxDataViewItem
GetItemByRow( unsigned int row
) const;
740 int GetRowByItem( const wxDataViewItem
& item
) const;
742 wxDataViewTreeNode
* GetTreeNodeByRow( unsigned int row
) const;
743 // We did not need this temporarily
744 // wxDataViewTreeNode * GetTreeNodeByItem( const wxDataViewItem & item );
746 // Methods for building the mapping tree
747 void BuildTree( wxDataViewModel
* model
);
749 void HitTest( const wxPoint
& point
, wxDataViewItem
& item
, wxDataViewColumn
* &column
);
750 wxRect
GetItemRect( const wxDataViewItem
& item
, const wxDataViewColumn
* column
);
752 void Expand( unsigned int row
);
753 void Collapse( unsigned int row
);
754 bool IsExpanded( unsigned int row
) const;
755 bool HasChildren( unsigned int row
) const;
757 #if wxUSE_DRAG_AND_DROP
758 bool EnableDragSource( const wxDataFormat
&format
);
759 bool EnableDropTarget( const wxDataFormat
&format
);
761 void RemoveDropHint();
762 wxDragResult
OnDragOver( wxDataFormat format
, wxCoord x
, wxCoord y
, wxDragResult def
);
763 bool OnDrop( wxDataFormat format
, wxCoord x
, wxCoord y
);
764 wxDragResult
OnData( wxDataFormat format
, wxCoord x
, wxCoord y
, wxDragResult def
);
766 #endif // wxUSE_DRAG_AND_DROP
768 void OnColumnsCountChanged();
770 // Called by wxDataViewCtrl and our own OnRenameTimer() to start edit the
771 // specified item in the given column.
772 void StartEditing(const wxDataViewItem
& item
, const wxDataViewColumn
* col
);
775 int RecalculateCount() const;
777 // Return false only if the event was vetoed by its handler.
778 bool SendExpanderEvent(wxEventType type
, const wxDataViewItem
& item
);
780 wxDataViewTreeNode
* FindNode( const wxDataViewItem
& item
);
782 wxDataViewColumn
*FindColumnForEditing(const wxDataViewItem
& item
, wxDataViewCellMode mode
);
784 bool IsCellEditableInMode(const wxDataViewItem
& item
, const wxDataViewColumn
*col
, wxDataViewCellMode mode
) const;
786 void DrawCellBackground( wxDataViewRenderer
* cell
, wxDC
& dc
, const wxRect
& rect
);
789 wxDataViewCtrl
*m_owner
;
793 wxDataViewColumn
*m_currentCol
;
794 unsigned int m_currentRow
;
795 wxDataViewSelection m_selection
;
797 wxDataViewRenameTimer
*m_renameTimer
;
802 bool m_currentColSetByKeyboard
;
804 #if wxUSE_DRAG_AND_DROP
809 wxDataFormat m_dragFormat
;
812 wxDataFormat m_dropFormat
;
814 unsigned int m_dropHintLine
;
815 #endif // wxUSE_DRAG_AND_DROP
817 // for double click logic
818 unsigned int m_lineLastClicked
,
819 m_lineBeforeLastClicked
,
820 m_lineSelectSingleOnUp
;
822 // the pen used to draw horiz/vertical rules
825 // the pen used to draw the expander and the lines
828 // This is the tree structure of the model
829 wxDataViewTreeNode
* m_root
;
832 // This is the tree node under the cursor
833 wxDataViewTreeNode
* m_underMouse
;
835 // The control used for editing or NULL.
836 wxWeakRef
<wxWindow
> m_editorCtrl
;
838 // Id m_editorCtrl is non-NULL, pointer to the associated renderer.
839 wxDataViewRenderer
* m_editorRenderer
;
842 DECLARE_DYNAMIC_CLASS(wxDataViewMainWindow
)
843 DECLARE_EVENT_TABLE()
846 // ---------------------------------------------------------
847 // wxGenericDataViewModelNotifier
848 // ---------------------------------------------------------
850 class wxGenericDataViewModelNotifier
: public wxDataViewModelNotifier
853 wxGenericDataViewModelNotifier( wxDataViewMainWindow
*mainWindow
)
854 { m_mainWindow
= mainWindow
; }
856 virtual bool ItemAdded( const wxDataViewItem
& parent
, const wxDataViewItem
& item
)
857 { return m_mainWindow
->ItemAdded( parent
, item
); }
858 virtual bool ItemDeleted( const wxDataViewItem
&parent
, const wxDataViewItem
&item
)
859 { return m_mainWindow
->ItemDeleted( parent
, item
); }
860 virtual bool ItemChanged( const wxDataViewItem
& item
)
861 { return m_mainWindow
->ItemChanged(item
); }
862 virtual bool ValueChanged( const wxDataViewItem
& item
, unsigned int col
)
863 { return m_mainWindow
->ValueChanged( item
, col
); }
864 virtual bool Cleared()
865 { return m_mainWindow
->Cleared(); }
866 virtual void Resort()
867 { m_mainWindow
->Resort(); }
869 wxDataViewMainWindow
*m_mainWindow
;
872 // ---------------------------------------------------------
873 // wxDataViewRenderer
874 // ---------------------------------------------------------
876 IMPLEMENT_ABSTRACT_CLASS(wxDataViewRenderer
, wxDataViewRendererBase
)
878 wxDataViewRenderer::wxDataViewRenderer( const wxString
&varianttype
,
879 wxDataViewCellMode mode
,
881 wxDataViewCustomRendererBase( varianttype
, mode
, align
)
885 m_ellipsizeMode
= wxELLIPSIZE_MIDDLE
;
889 wxDataViewRenderer::~wxDataViewRenderer()
894 wxDC
*wxDataViewRenderer::GetDC()
898 if (GetOwner() == NULL
)
900 if (GetOwner()->GetOwner() == NULL
)
902 m_dc
= new wxClientDC( GetOwner()->GetOwner() );
908 void wxDataViewRenderer::SetAlignment( int align
)
913 int wxDataViewRenderer::GetAlignment() const
918 // ---------------------------------------------------------
919 // wxDataViewCustomRenderer
920 // ---------------------------------------------------------
922 IMPLEMENT_ABSTRACT_CLASS(wxDataViewCustomRenderer
, wxDataViewRenderer
)
924 wxDataViewCustomRenderer::wxDataViewCustomRenderer( const wxString
&varianttype
,
925 wxDataViewCellMode mode
, int align
) :
926 wxDataViewRenderer( varianttype
, mode
, align
)
930 // ---------------------------------------------------------
931 // wxDataViewTextRenderer
932 // ---------------------------------------------------------
934 IMPLEMENT_CLASS(wxDataViewTextRenderer
, wxDataViewRenderer
)
936 wxDataViewTextRenderer::wxDataViewTextRenderer( const wxString
&varianttype
,
937 wxDataViewCellMode mode
, int align
) :
938 wxDataViewRenderer( varianttype
, mode
, align
)
942 bool wxDataViewTextRenderer::SetValue( const wxVariant
&value
)
944 m_text
= value
.GetString();
949 bool wxDataViewTextRenderer::GetValue( wxVariant
& WXUNUSED(value
) ) const
954 bool wxDataViewTextRenderer::HasEditorCtrl() const
959 wxWindow
* wxDataViewTextRenderer::CreateEditorCtrl( wxWindow
*parent
,
960 wxRect labelRect
, const wxVariant
&value
)
962 wxTextCtrl
* ctrl
= new wxTextCtrl( parent
, wxID_ANY
, value
,
963 wxPoint(labelRect
.x
,labelRect
.y
),
964 wxSize(labelRect
.width
,labelRect
.height
),
965 wxTE_PROCESS_ENTER
);
967 // select the text in the control an place the cursor at the end
968 ctrl
->SetInsertionPointEnd();
974 bool wxDataViewTextRenderer::GetValueFromEditorCtrl( wxWindow
*editor
, wxVariant
&value
)
976 wxTextCtrl
*text
= (wxTextCtrl
*) editor
;
977 value
= text
->GetValue();
981 bool wxDataViewTextRenderer::Render(wxRect rect
, wxDC
*dc
, int state
)
983 RenderText(m_text
, 0, rect
, dc
, state
);
987 wxSize
wxDataViewTextRenderer::GetSize() const
990 return GetTextExtent(m_text
);
992 return wxSize(wxDVC_DEFAULT_RENDERER_SIZE
,wxDVC_DEFAULT_RENDERER_SIZE
);
995 // ---------------------------------------------------------
996 // wxDataViewBitmapRenderer
997 // ---------------------------------------------------------
999 IMPLEMENT_CLASS(wxDataViewBitmapRenderer
, wxDataViewRenderer
)
1001 wxDataViewBitmapRenderer::wxDataViewBitmapRenderer( const wxString
&varianttype
,
1002 wxDataViewCellMode mode
, int align
) :
1003 wxDataViewRenderer( varianttype
, mode
, align
)
1007 bool wxDataViewBitmapRenderer::SetValue( const wxVariant
&value
)
1009 if (value
.GetType() == wxT("wxBitmap"))
1011 if (value
.GetType() == wxT("wxIcon"))
1017 bool wxDataViewBitmapRenderer::GetValue( wxVariant
& WXUNUSED(value
) ) const
1022 bool wxDataViewBitmapRenderer::Render( wxRect cell
, wxDC
*dc
, int WXUNUSED(state
) )
1024 if (m_bitmap
.IsOk())
1025 dc
->DrawBitmap( m_bitmap
, cell
.x
, cell
.y
);
1026 else if (m_icon
.IsOk())
1027 dc
->DrawIcon( m_icon
, cell
.x
, cell
.y
);
1032 wxSize
wxDataViewBitmapRenderer::GetSize() const
1034 if (m_bitmap
.IsOk())
1035 return wxSize( m_bitmap
.GetWidth(), m_bitmap
.GetHeight() );
1036 else if (m_icon
.IsOk())
1037 return wxSize( m_icon
.GetWidth(), m_icon
.GetHeight() );
1039 return wxSize(wxDVC_DEFAULT_RENDERER_SIZE
,wxDVC_DEFAULT_RENDERER_SIZE
);
1042 // ---------------------------------------------------------
1043 // wxDataViewToggleRenderer
1044 // ---------------------------------------------------------
1046 IMPLEMENT_ABSTRACT_CLASS(wxDataViewToggleRenderer
, wxDataViewRenderer
)
1048 wxDataViewToggleRenderer::wxDataViewToggleRenderer( const wxString
&varianttype
,
1049 wxDataViewCellMode mode
, int align
) :
1050 wxDataViewRenderer( varianttype
, mode
, align
)
1055 bool wxDataViewToggleRenderer::SetValue( const wxVariant
&value
)
1057 m_toggle
= value
.GetBool();
1062 bool wxDataViewToggleRenderer::GetValue( wxVariant
&WXUNUSED(value
) ) const
1067 bool wxDataViewToggleRenderer::Render( wxRect cell
, wxDC
*dc
, int WXUNUSED(state
) )
1071 flags
|= wxCONTROL_CHECKED
;
1072 if (GetMode() != wxDATAVIEW_CELL_ACTIVATABLE
||
1073 GetEnabled() == false)
1074 flags
|= wxCONTROL_DISABLED
;
1076 // Ensure that the check boxes always have at least the minimal required
1077 // size, otherwise DrawCheckBox() doesn't really work well. If this size is
1078 // greater than the cell size, the checkbox will be truncated but this is a
1080 wxSize size
= cell
.GetSize();
1081 size
.IncTo(GetSize());
1084 wxRendererNative::Get().DrawCheckBox(
1085 GetOwner()->GetOwner(),
1093 bool wxDataViewToggleRenderer::WXActivateCell(const wxRect
& cellRect
,
1094 wxDataViewModel
*model
,
1095 const wxDataViewItem
& item
,
1097 const wxMouseEvent
*mouseEvent
)
1101 // Only react to clicks directly on the checkbox, not elsewhere in the
1104 // We suppose that the checkbox is centred in the total cell rectangle
1105 // as this is how it's rendered, at least under MSW. If this turns out
1106 // to be a wrong assumption, we probably would need to do the hit test
1107 // checking in wxRendererNative but for now this simple solution works.
1108 wxRect checkRect
= wxRect(GetSize()).CentreIn(cellRect
);
1110 // After centering in cellRect, we need to pull it back to (0, 0) as
1111 // the mouse coordinates passed to us are relative to cellRect already.
1112 checkRect
.Offset(-cellRect
.GetPosition());
1114 if ( !checkRect
.Contains(mouseEvent
->GetPosition()) )
1118 model
->ChangeValue(!m_toggle
, item
, col
);
1122 wxSize
wxDataViewToggleRenderer::GetSize() const
1124 // the window parameter is not used by GetCheckBoxSize() so it's
1125 // safe to pass NULL
1126 return wxRendererNative::Get().GetCheckBoxSize(NULL
);
1129 // ---------------------------------------------------------
1130 // wxDataViewProgressRenderer
1131 // ---------------------------------------------------------
1133 IMPLEMENT_ABSTRACT_CLASS(wxDataViewProgressRenderer
, wxDataViewRenderer
)
1135 wxDataViewProgressRenderer::wxDataViewProgressRenderer( const wxString
&label
,
1136 const wxString
&varianttype
, wxDataViewCellMode mode
, int align
) :
1137 wxDataViewRenderer( varianttype
, mode
, align
)
1143 bool wxDataViewProgressRenderer::SetValue( const wxVariant
&value
)
1145 m_value
= (long) value
;
1147 if (m_value
< 0) m_value
= 0;
1148 if (m_value
> 100) m_value
= 100;
1153 bool wxDataViewProgressRenderer::GetValue( wxVariant
&value
) const
1155 value
= (long) m_value
;
1160 wxDataViewProgressRenderer::Render(wxRect rect
, wxDC
*dc
, int WXUNUSED(state
))
1162 // deflate the rect to leave a small border between bars in adjacent rows
1163 wxRect bar
= rect
.Deflate(0, 1);
1165 dc
->SetBrush( *wxTRANSPARENT_BRUSH
);
1166 dc
->SetPen( *wxBLACK_PEN
);
1167 dc
->DrawRectangle( bar
);
1169 bar
.width
= (int)(bar
.width
* m_value
/ 100.);
1170 dc
->SetPen( *wxTRANSPARENT_PEN
);
1172 const wxDataViewItemAttr
& attr
= GetAttr();
1173 dc
->SetBrush( attr
.HasColour() ? wxBrush(attr
.GetColour())
1175 dc
->DrawRectangle( bar
);
1180 wxSize
wxDataViewProgressRenderer::GetSize() const
1182 return wxSize(40,12);
1185 // ---------------------------------------------------------
1186 // wxDataViewIconTextRenderer
1187 // ---------------------------------------------------------
1189 IMPLEMENT_CLASS(wxDataViewIconTextRenderer
, wxDataViewRenderer
)
1191 wxDataViewIconTextRenderer::wxDataViewIconTextRenderer(
1192 const wxString
&varianttype
, wxDataViewCellMode mode
, int align
) :
1193 wxDataViewRenderer( varianttype
, mode
, align
)
1196 SetAlignment(align
);
1199 bool wxDataViewIconTextRenderer::SetValue( const wxVariant
&value
)
1205 bool wxDataViewIconTextRenderer::GetValue( wxVariant
& WXUNUSED(value
) ) const
1210 bool wxDataViewIconTextRenderer::Render(wxRect rect
, wxDC
*dc
, int state
)
1214 const wxIcon
& icon
= m_value
.GetIcon();
1217 dc
->DrawIcon(icon
, rect
.x
, rect
.y
+ (rect
.height
- icon
.GetHeight())/2);
1218 xoffset
= icon
.GetWidth()+4;
1221 RenderText(m_value
.GetText(), xoffset
, rect
, dc
, state
);
1226 wxSize
wxDataViewIconTextRenderer::GetSize() const
1228 if (!m_value
.GetText().empty())
1230 wxSize size
= GetTextExtent(m_value
.GetText());
1232 if (m_value
.GetIcon().IsOk())
1233 size
.x
+= m_value
.GetIcon().GetWidth() + 4;
1236 return wxSize(80,20);
1239 wxWindow
* wxDataViewIconTextRenderer::CreateEditorCtrl(wxWindow
*parent
, wxRect labelRect
, const wxVariant
& value
)
1241 wxDataViewIconText iconText
;
1244 wxString text
= iconText
.GetText();
1246 // adjust the label rect to take the width of the icon into account
1247 if (iconText
.GetIcon().IsOk())
1249 int w
= iconText
.GetIcon().GetWidth() + 4;
1251 labelRect
.width
-= w
;
1254 wxTextCtrl
* ctrl
= new wxTextCtrl( parent
, wxID_ANY
, text
,
1255 wxPoint(labelRect
.x
,labelRect
.y
),
1256 wxSize(labelRect
.width
,labelRect
.height
),
1257 wxTE_PROCESS_ENTER
);
1259 // select the text in the control an place the cursor at the end
1260 ctrl
->SetInsertionPointEnd();
1266 bool wxDataViewIconTextRenderer::GetValueFromEditorCtrl( wxWindow
*editor
, wxVariant
& value
)
1268 wxTextCtrl
*text
= (wxTextCtrl
*) editor
;
1270 // The icon can't be edited so get its old value and reuse it.
1272 wxDataViewColumn
* const col
= GetOwner();
1273 GetView()->GetModel()->GetValue(valueOld
, m_item
, col
->GetModelColumn());
1275 wxDataViewIconText iconText
;
1276 iconText
<< valueOld
;
1278 // But replace the text with the value entered by user.
1279 iconText
.SetText(text
->GetValue());
1285 //-----------------------------------------------------------------------------
1286 // wxDataViewDropTarget
1287 //-----------------------------------------------------------------------------
1289 #if wxUSE_DRAG_AND_DROP
1291 class wxBitmapCanvas
: public wxWindow
1294 wxBitmapCanvas( wxWindow
*parent
, const wxBitmap
&bitmap
, const wxSize
&size
) :
1295 wxWindow( parent
, wxID_ANY
, wxPoint(0,0), size
)
1298 Connect( wxEVT_PAINT
, wxPaintEventHandler(wxBitmapCanvas::OnPaint
) );
1301 void OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1304 dc
.DrawBitmap( m_bitmap
, 0, 0);
1310 class wxDataViewDropSource
: public wxDropSource
1313 wxDataViewDropSource( wxDataViewMainWindow
*win
, unsigned int row
) :
1321 ~wxDataViewDropSource()
1326 virtual bool GiveFeedback( wxDragResult
WXUNUSED(effect
) )
1328 wxPoint pos
= wxGetMousePosition();
1332 int liney
= m_win
->GetLineStart( m_row
);
1334 m_win
->GetOwner()->CalcUnscrolledPosition( 0, liney
, NULL
, &liney
);
1335 m_win
->ClientToScreen( &linex
, &liney
);
1336 m_dist_x
= pos
.x
- linex
;
1337 m_dist_y
= pos
.y
- liney
;
1340 wxBitmap ib
= m_win
->CreateItemBitmap( m_row
, indent
);
1342 m_hint
= new wxFrame( m_win
->GetParent(), wxID_ANY
, wxEmptyString
,
1343 wxPoint(pos
.x
- m_dist_x
, pos
.y
+ 5 ),
1345 wxFRAME_TOOL_WINDOW
|
1346 wxFRAME_FLOAT_ON_PARENT
|
1347 wxFRAME_NO_TASKBAR
|
1349 new wxBitmapCanvas( m_hint
, ib
, ib
.GetSize() );
1354 m_hint
->Move( pos
.x
- m_dist_x
, pos
.y
+ 5 );
1355 m_hint
->SetTransparent( 128 );
1361 wxDataViewMainWindow
*m_win
;
1364 int m_dist_x
,m_dist_y
;
1368 class wxDataViewDropTarget
: public wxDropTarget
1371 wxDataViewDropTarget( wxDataObject
*obj
, wxDataViewMainWindow
*win
) :
1377 virtual wxDragResult
OnDragOver( wxCoord x
, wxCoord y
, wxDragResult def
)
1379 wxDataFormat format
= GetMatchingPair();
1380 if (format
== wxDF_INVALID
)
1382 return m_win
->OnDragOver( format
, x
, y
, def
);
1385 virtual bool OnDrop( wxCoord x
, wxCoord y
)
1387 wxDataFormat format
= GetMatchingPair();
1388 if (format
== wxDF_INVALID
)
1390 return m_win
->OnDrop( format
, x
, y
);
1393 virtual wxDragResult
OnData( wxCoord x
, wxCoord y
, wxDragResult def
)
1395 wxDataFormat format
= GetMatchingPair();
1396 if (format
== wxDF_INVALID
)
1400 return m_win
->OnData( format
, x
, y
, def
);
1403 virtual void OnLeave()
1404 { m_win
->OnLeave(); }
1406 wxDataViewMainWindow
*m_win
;
1409 #endif // wxUSE_DRAG_AND_DROP
1411 //-----------------------------------------------------------------------------
1412 // wxDataViewRenameTimer
1413 //-----------------------------------------------------------------------------
1415 wxDataViewRenameTimer::wxDataViewRenameTimer( wxDataViewMainWindow
*owner
)
1420 void wxDataViewRenameTimer::Notify()
1422 m_owner
->OnRenameTimer();
1425 //-----------------------------------------------------------------------------
1426 // wxDataViewMainWindow
1427 //-----------------------------------------------------------------------------
1429 // The tree building helper, declared firstly
1430 static void BuildTreeHelper( const wxDataViewModel
* model
, const wxDataViewItem
& item
,
1431 wxDataViewTreeNode
* node
);
1433 int LINKAGEMODE
wxDataViewSelectionCmp( unsigned int row1
, unsigned int row2
)
1435 if (row1
> row2
) return 1;
1436 if (row1
== row2
) return 0;
1440 IMPLEMENT_ABSTRACT_CLASS(wxDataViewMainWindow
, wxWindow
)
1442 BEGIN_EVENT_TABLE(wxDataViewMainWindow
,wxWindow
)
1443 EVT_PAINT (wxDataViewMainWindow::OnPaint
)
1444 EVT_MOUSE_EVENTS (wxDataViewMainWindow::OnMouse
)
1445 EVT_SET_FOCUS (wxDataViewMainWindow::OnSetFocus
)
1446 EVT_KILL_FOCUS (wxDataViewMainWindow::OnKillFocus
)
1447 EVT_CHAR_HOOK (wxDataViewMainWindow::OnCharHook
)
1448 EVT_CHAR (wxDataViewMainWindow::OnChar
)
1451 wxDataViewMainWindow::wxDataViewMainWindow( wxDataViewCtrl
*parent
, wxWindowID id
,
1452 const wxPoint
&pos
, const wxSize
&size
, const wxString
&name
) :
1453 wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
|wxBORDER_NONE
, name
),
1454 m_selection( wxDataViewSelectionCmp
)
1459 m_editorRenderer
= NULL
;
1461 m_lastOnSame
= false;
1462 m_renameTimer
= new wxDataViewRenameTimer( this );
1464 // TODO: user better initial values/nothing selected
1465 m_currentCol
= NULL
;
1466 m_currentColSetByKeyboard
= false;
1467 m_useCellFocus
= false;
1468 m_currentRow
= (unsigned)-1;
1469 m_lineHeight
= GetDefaultRowHeight();
1471 #if wxUSE_DRAG_AND_DROP
1473 m_dragStart
= wxPoint(0,0);
1475 m_dragEnabled
= false;
1476 m_dropEnabled
= false;
1478 m_dropHintLine
= (unsigned int) -1;
1479 #endif // wxUSE_DRAG_AND_DROP
1481 m_lineLastClicked
= (unsigned int) -1;
1482 m_lineBeforeLastClicked
= (unsigned int) -1;
1483 m_lineSelectSingleOnUp
= (unsigned int) -1;
1487 SetBackgroundColour( *wxWHITE
);
1489 SetBackgroundStyle(wxBG_STYLE_CUSTOM
);
1491 m_penRule
= wxPen(GetRuleColour());
1493 // compose a pen whichcan draw black lines
1494 // TODO: maybe there is something system colour to use
1495 m_penExpander
= wxPen(wxColour(0,0,0));
1497 m_root
= wxDataViewTreeNode::CreateRootNode();
1499 // Make m_count = -1 will cause the class recaculate the real displaying number of rows.
1501 m_underMouse
= NULL
;
1505 wxDataViewMainWindow::~wxDataViewMainWindow()
1508 delete m_renameTimer
;
1512 int wxDataViewMainWindow::GetDefaultRowHeight() const
1515 // We would like to use the same line height that Explorer uses. This is
1516 // different from standard ListView control since Vista.
1517 if ( wxGetWinVersion() >= wxWinVersion_Vista
)
1518 return wxMax(16, GetCharHeight()) + 6; // 16 = mini icon height
1521 return wxMax(16, GetCharHeight()) + 1; // 16 = mini icon height
1526 #if wxUSE_DRAG_AND_DROP
1527 bool wxDataViewMainWindow::EnableDragSource( const wxDataFormat
&format
)
1529 m_dragFormat
= format
;
1530 m_dragEnabled
= format
!= wxDF_INVALID
;
1535 bool wxDataViewMainWindow::EnableDropTarget( const wxDataFormat
&format
)
1537 m_dropFormat
= format
;
1538 m_dropEnabled
= format
!= wxDF_INVALID
;
1541 SetDropTarget( new wxDataViewDropTarget( new wxCustomDataObject( format
), this ) );
1546 void wxDataViewMainWindow::RemoveDropHint()
1551 RefreshRow( m_dropHintLine
);
1552 m_dropHintLine
= (unsigned int) -1;
1556 wxDragResult
wxDataViewMainWindow::OnDragOver( wxDataFormat format
, wxCoord x
,
1557 wxCoord y
, wxDragResult def
)
1561 m_owner
->CalcUnscrolledPosition( xx
, yy
, &xx
, &yy
);
1562 unsigned int row
= GetLineAt( yy
);
1564 if ((row
>= GetRowCount()) || (xx
> GetEndOfLastCol()))
1570 wxDataViewItem item
= GetItemByRow( row
);
1572 wxDataViewModel
*model
= GetModel();
1574 wxDataViewEvent
event( wxEVT_COMMAND_DATAVIEW_ITEM_DROP_POSSIBLE
, m_owner
->GetId() );
1575 event
.SetEventObject( m_owner
);
1576 event
.SetItem( item
);
1577 event
.SetModel( model
);
1578 event
.SetDataFormat( format
);
1579 event
.SetDropEffect( def
);
1580 if (!m_owner
->HandleWindowEvent( event
))
1586 if (!event
.IsAllowed())
1593 if (m_dropHint
&& (row
!= m_dropHintLine
))
1594 RefreshRow( m_dropHintLine
);
1596 m_dropHintLine
= row
;
1602 bool wxDataViewMainWindow::OnDrop( wxDataFormat format
, wxCoord x
, wxCoord y
)
1608 m_owner
->CalcUnscrolledPosition( xx
, yy
, &xx
, &yy
);
1609 unsigned int row
= GetLineAt( yy
);
1611 if ((row
>= GetRowCount()) || (xx
> GetEndOfLastCol()))
1614 wxDataViewItem item
= GetItemByRow( row
);
1616 wxDataViewModel
*model
= GetModel();
1618 wxDataViewEvent
event( wxEVT_COMMAND_DATAVIEW_ITEM_DROP_POSSIBLE
, m_owner
->GetId() );
1619 event
.SetEventObject( m_owner
);
1620 event
.SetItem( item
);
1621 event
.SetModel( model
);
1622 event
.SetDataFormat( format
);
1623 if (!m_owner
->HandleWindowEvent( event
))
1626 if (!event
.IsAllowed())
1632 wxDragResult
wxDataViewMainWindow::OnData( wxDataFormat format
, wxCoord x
, wxCoord y
,
1637 m_owner
->CalcUnscrolledPosition( xx
, yy
, &xx
, &yy
);
1638 unsigned int row
= GetLineAt( yy
);
1640 if ((row
>= GetRowCount()) || (xx
> GetEndOfLastCol()))
1643 wxDataViewItem item
= GetItemByRow( row
);
1645 wxDataViewModel
*model
= GetModel();
1647 wxCustomDataObject
*obj
= (wxCustomDataObject
*) GetDropTarget()->GetDataObject();
1649 wxDataViewEvent
event( wxEVT_COMMAND_DATAVIEW_ITEM_DROP
, m_owner
->GetId() );
1650 event
.SetEventObject( m_owner
);
1651 event
.SetItem( item
);
1652 event
.SetModel( model
);
1653 event
.SetDataFormat( format
);
1654 event
.SetDataSize( obj
->GetSize() );
1655 event
.SetDataBuffer( obj
->GetData() );
1656 event
.SetDropEffect( def
);
1657 if (!m_owner
->HandleWindowEvent( event
))
1660 if (!event
.IsAllowed())
1666 void wxDataViewMainWindow::OnLeave()
1671 wxBitmap
wxDataViewMainWindow::CreateItemBitmap( unsigned int row
, int &indent
)
1673 int height
= GetLineHeight( row
);
1675 unsigned int cols
= GetOwner()->GetColumnCount();
1677 for (col
= 0; col
< cols
; col
++)
1679 wxDataViewColumn
*column
= GetOwner()->GetColumnAt(col
);
1680 if (column
->IsHidden())
1681 continue; // skip it!
1682 width
+= column
->GetWidth();
1688 wxDataViewTreeNode
*node
= GetTreeNodeByRow(row
);
1689 indent
= GetOwner()->GetIndent() * node
->GetIndentLevel();
1690 indent
= indent
+ m_lineHeight
;
1691 // try to use the m_lineHeight as the expander space
1695 wxBitmap
bitmap( width
, height
);
1696 wxMemoryDC
dc( bitmap
);
1697 dc
.SetFont( GetFont() );
1698 dc
.SetPen( *wxBLACK_PEN
);
1699 dc
.SetBrush( *wxWHITE_BRUSH
);
1700 dc
.DrawRectangle( 0,0,width
,height
);
1702 wxDataViewModel
*model
= m_owner
->GetModel();
1704 wxDataViewColumn
* const
1705 expander
= GetExpanderColumnOrFirstOne(GetOwner());
1708 for (col
= 0; col
< cols
; col
++)
1710 wxDataViewColumn
*column
= GetOwner()->GetColumnAt( col
);
1711 wxDataViewRenderer
*cell
= column
->GetRenderer();
1713 if (column
->IsHidden())
1714 continue; // skip it!
1716 width
= column
->GetWidth();
1718 if (column
== expander
)
1721 wxDataViewItem item
= GetItemByRow( row
);
1722 cell
->PrepareForItem(model
, item
, column
->GetModelColumn());
1724 wxRect
item_rect(x
, 0, width
, height
);
1725 item_rect
.Deflate(PADDING_RIGHTLEFT
, 0);
1727 // dc.SetClippingRegion( item_rect );
1728 cell
->WXCallRender(item_rect
, &dc
, 0);
1729 // dc.DestroyClippingRegion();
1737 #endif // wxUSE_DRAG_AND_DROP
1740 // Draw focus rect for individual cell. Unlike native focus rect, we render
1741 // this in foreground text color (typically white) to enhance contrast and
1743 static void DrawSelectedCellFocusRect(wxDC
& dc
, const wxRect
& rect
)
1745 // (This code is based on wxRendererGeneric::DrawFocusRect and modified.)
1747 // draw the pixels manually because the "dots" in wxPen with wxDOT style
1748 // may be short traits and not really dots
1750 // note that to behave in the same manner as DrawRect(), we must exclude
1751 // the bottom and right borders from the rectangle
1752 wxCoord x1
= rect
.GetLeft(),
1754 x2
= rect
.GetRight(),
1755 y2
= rect
.GetBottom();
1757 wxDCPenChanger
pen(dc
, wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
));
1760 for ( z
= x1
+ 1; z
< x2
; z
+= 2 )
1761 dc
.DrawPoint(z
, rect
.GetTop());
1763 wxCoord shift
= z
== x2
? 0 : 1;
1764 for ( z
= y1
+ shift
; z
< y2
; z
+= 2 )
1765 dc
.DrawPoint(x2
, z
);
1767 shift
= z
== y2
? 0 : 1;
1768 for ( z
= x2
- shift
; z
> x1
; z
-= 2 )
1769 dc
.DrawPoint(z
, y2
);
1771 shift
= z
== x1
? 0 : 1;
1772 for ( z
= y2
- shift
; z
> y1
; z
-= 2 )
1773 dc
.DrawPoint(x1
, z
);
1777 void wxDataViewMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1779 wxDataViewModel
*model
= GetModel();
1780 wxAutoBufferedPaintDC
dc( this );
1782 dc
.SetBrush(GetOwner()->GetBackgroundColour());
1783 dc
.SetPen( *wxTRANSPARENT_PEN
);
1784 dc
.DrawRectangle(GetClientSize());
1788 // No items to draw.
1793 GetOwner()->PrepareDC( dc
);
1794 dc
.SetFont( GetFont() );
1796 wxRect update
= GetUpdateRegion().GetBox();
1797 m_owner
->CalcUnscrolledPosition( update
.x
, update
.y
, &update
.x
, &update
.y
);
1799 // compute which items needs to be redrawn
1800 unsigned int item_start
= GetLineAt( wxMax(0,update
.y
) );
1801 unsigned int item_count
=
1802 wxMin( (int)( GetLineAt( wxMax(0,update
.y
+update
.height
) ) - item_start
+ 1),
1803 (int)(GetRowCount( ) - item_start
));
1804 unsigned int item_last
= item_start
+ item_count
;
1806 // Send the event to wxDataViewCtrl itself.
1807 wxWindow
* const parent
= GetParent();
1808 wxDataViewEvent
cache_event(wxEVT_COMMAND_DATAVIEW_CACHE_HINT
, parent
->GetId());
1809 cache_event
.SetEventObject(parent
);
1810 cache_event
.SetCache(item_start
, item_last
- 1);
1811 parent
->ProcessWindowEvent(cache_event
);
1813 // compute which columns needs to be redrawn
1814 unsigned int cols
= GetOwner()->GetColumnCount();
1817 // we assume that we have at least one column below and painting an
1818 // empty control is unnecessary anyhow
1822 unsigned int col_start
= 0;
1823 unsigned int x_start
;
1824 for (x_start
= 0; col_start
< cols
; col_start
++)
1826 wxDataViewColumn
*col
= GetOwner()->GetColumnAt(col_start
);
1827 if (col
->IsHidden())
1828 continue; // skip it!
1830 unsigned int w
= col
->GetWidth();
1831 if (x_start
+w
>= (unsigned int)update
.x
)
1837 unsigned int col_last
= col_start
;
1838 unsigned int x_last
= x_start
;
1839 for (; col_last
< cols
; col_last
++)
1841 wxDataViewColumn
*col
= GetOwner()->GetColumnAt(col_last
);
1842 if (col
->IsHidden())
1843 continue; // skip it!
1845 if (x_last
> (unsigned int)update
.GetRight())
1848 x_last
+= col
->GetWidth();
1851 // Draw background of alternate rows specially if required
1852 if ( m_owner
->HasFlag(wxDV_ROW_LINES
) )
1854 wxColour altRowColour
= m_owner
->m_alternateRowColour
;
1855 if ( !altRowColour
.IsOk() )
1857 // Determine the alternate rows colour automatically from the
1858 // background colour.
1859 const wxColour bgColour
= m_owner
->GetBackgroundColour();
1861 // Depending on the background, alternate row color
1862 // will be 3% more dark or 50% brighter.
1863 int alpha
= bgColour
.GetRGB() > 0x808080 ? 97 : 150;
1864 altRowColour
= bgColour
.ChangeLightness(alpha
);
1867 dc
.SetPen(*wxTRANSPARENT_PEN
);
1868 dc
.SetBrush(wxBrush(altRowColour
));
1870 for (unsigned int item
= item_start
; item
< item_last
; item
++)
1874 dc
.DrawRectangle(x_start
,
1876 GetClientSize().GetWidth(),
1877 GetLineHeight(item
));
1882 // Draw horizontal rules if required
1883 if ( m_owner
->HasFlag(wxDV_HORIZ_RULES
) )
1885 dc
.SetPen(m_penRule
);
1886 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1888 for (unsigned int i
= item_start
; i
<= item_last
; i
++)
1890 int y
= GetLineStart( i
);
1891 dc
.DrawLine(x_start
, y
, x_last
, y
);
1895 // Draw vertical rules if required
1896 if ( m_owner
->HasFlag(wxDV_VERT_RULES
) )
1898 dc
.SetPen(m_penRule
);
1899 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1901 // NB: Vertical rules are drawn in the last pixel of a column so that
1902 // they align perfectly with native MSW wxHeaderCtrl as well as for
1903 // consistency with MSW native list control. There's no vertical
1904 // rule at the most-left side of the control.
1906 int x
= x_start
- 1;
1907 for (unsigned int i
= col_start
; i
< col_last
; i
++)
1909 wxDataViewColumn
*col
= GetOwner()->GetColumnAt(i
);
1910 if (col
->IsHidden())
1911 continue; // skip it
1913 x
+= col
->GetWidth();
1915 dc
.DrawLine(x
, GetLineStart( item_start
),
1916 x
, GetLineStart( item_last
) );
1920 // redraw the background for the items which are selected/current
1921 for (unsigned int item
= item_start
; item
< item_last
; item
++)
1923 bool selected
= m_selection
.Index( item
) != wxNOT_FOUND
;
1925 if (selected
|| item
== m_currentRow
)
1927 wxRect
rect( x_start
, GetLineStart( item
),
1928 x_last
- x_start
, GetLineHeight( item
) );
1930 // draw selection and whole-item focus:
1933 int flags
= wxCONTROL_SELECTED
;
1935 flags
|= wxCONTROL_FOCUSED
;
1937 wxRendererNative::Get().DrawItemSelectionRect
1946 // draw keyboard focus rect if applicable
1947 if ( item
== m_currentRow
&& m_hasFocus
)
1949 bool renderColumnFocus
= false;
1951 if ( m_useCellFocus
&& m_currentCol
&& m_currentColSetByKeyboard
)
1953 renderColumnFocus
= true;
1955 // If this is container node without columns, render full-row focus:
1958 wxDataViewTreeNode
*node
= GetTreeNodeByRow(item
);
1959 if ( node
->HasChildren() && !model
->HasContainerColumns(node
->GetItem()) )
1960 renderColumnFocus
= false;
1964 if ( renderColumnFocus
)
1966 for ( unsigned int i
= col_start
; i
< col_last
; i
++ )
1968 wxDataViewColumn
*col
= GetOwner()->GetColumnAt(i
);
1969 if ( col
->IsHidden() )
1972 rect
.width
= col
->GetWidth();
1974 if ( col
== m_currentCol
)
1976 // make the rect more visible by adding a small
1977 // margin around it:
1982 // DrawFocusRect() uses XOR and is all but
1983 // invisible against dark-blue background. Use
1984 // the same color used for selected text.
1985 DrawSelectedCellFocusRect(dc
, rect
);
1989 wxRendererNative::Get().DrawFocusRect
2000 rect
.x
+= rect
.width
;
2005 // render focus rectangle for the whole row
2006 wxRendererNative::Get().DrawFocusRect
2011 selected
? (int)wxCONTROL_SELECTED
: 0
2018 #if wxUSE_DRAG_AND_DROP
2021 wxRect
rect( x_start
, GetLineStart( m_dropHintLine
),
2022 x_last
- x_start
, GetLineHeight( m_dropHintLine
) );
2023 dc
.SetPen( *wxBLACK_PEN
);
2024 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2025 dc
.DrawRectangle( rect
);
2027 #endif // wxUSE_DRAG_AND_DROP
2029 wxDataViewColumn
* const
2030 expander
= GetExpanderColumnOrFirstOne(GetOwner());
2032 // redraw all cells for all rows which must be repainted and all columns
2034 cell_rect
.x
= x_start
;
2035 for (unsigned int i
= col_start
; i
< col_last
; i
++)
2037 wxDataViewColumn
*col
= GetOwner()->GetColumnAt( i
);
2038 wxDataViewRenderer
*cell
= col
->GetRenderer();
2039 cell_rect
.width
= col
->GetWidth();
2041 if ( col
->IsHidden() || cell_rect
.width
<= 0 )
2042 continue; // skip it!
2044 for (unsigned int item
= item_start
; item
< item_last
; item
++)
2046 // get the cell value and set it into the renderer
2047 wxDataViewTreeNode
*node
= NULL
;
2048 wxDataViewItem dataitem
;
2050 if (!IsVirtualList())
2052 node
= GetTreeNodeByRow(item
);
2056 dataitem
= node
->GetItem();
2058 // Skip all columns of "container" rows except the expander
2059 // column itself unless HasContainerColumns() overrides this.
2060 if ( col
!= expander
&&
2061 model
->IsContainer(dataitem
) &&
2062 !model
->HasContainerColumns(dataitem
) )
2067 dataitem
= wxDataViewItem( wxUIntToPtr(item
+1) );
2070 cell
->PrepareForItem(model
, dataitem
, col
->GetModelColumn());
2073 cell_rect
.y
= GetLineStart( item
);
2074 cell_rect
.height
= GetLineHeight( item
);
2076 // draw the background
2077 bool selected
= m_selection
.Index( item
) != wxNOT_FOUND
;
2079 DrawCellBackground( cell
, dc
, cell_rect
);
2081 // deal with the expander
2083 if ((!IsList()) && (col
== expander
))
2085 // Calculate the indent first
2086 indent
= GetOwner()->GetIndent() * node
->GetIndentLevel();
2088 // we reserve m_lineHeight of horizontal space for the expander
2089 // but leave EXPANDER_MARGIN around the expander itself
2090 int exp_x
= cell_rect
.x
+ indent
+ EXPANDER_MARGIN
;
2092 indent
+= m_lineHeight
;
2094 // draw expander if needed and visible
2095 if ( node
->HasChildren() && exp_x
< cell_rect
.GetRight() )
2097 dc
.SetPen( m_penExpander
);
2098 dc
.SetBrush( wxNullBrush
);
2100 int exp_size
= m_lineHeight
- 2*EXPANDER_MARGIN
;
2101 int exp_y
= cell_rect
.y
+ (cell_rect
.height
- exp_size
)/2
2102 + EXPANDER_MARGIN
- EXPANDER_OFFSET
;
2104 const wxRect
rect(exp_x
, exp_y
, exp_size
, exp_size
);
2107 if ( m_underMouse
== node
)
2108 flag
|= wxCONTROL_CURRENT
;
2109 if ( node
->IsOpen() )
2110 flag
|= wxCONTROL_EXPANDED
;
2112 // ensure that we don't overflow the cell (which might
2113 // happen if the column is very narrow)
2114 wxDCClipper
clip(dc
, cell_rect
);
2116 wxRendererNative::Get().DrawTreeItemButton( this, dc
, rect
, flag
);
2119 // force the expander column to left-center align
2120 cell
->SetAlignment( wxALIGN_CENTER_VERTICAL
);
2123 wxRect item_rect
= cell_rect
;
2124 item_rect
.Deflate(PADDING_RIGHTLEFT
, 0);
2126 // account for the tree indent (harmless if we're not indented)
2127 item_rect
.x
+= indent
;
2128 item_rect
.width
-= indent
;
2130 if ( item_rect
.width
<= 0 )
2134 if (m_hasFocus
&& selected
)
2135 state
|= wxDATAVIEW_CELL_SELECTED
;
2137 // TODO: it would be much more efficient to create a clipping
2138 // region for the entire column being rendered (in the OnPaint
2139 // of wxDataViewMainWindow) instead of a single clip region for
2140 // each cell. However it would mean that each renderer should
2141 // respect the given wxRect's top & bottom coords, eventually
2142 // violating only the left & right coords - however the user can
2143 // make its own renderer and thus we cannot be sure of that.
2144 wxDCClipper
clip(dc
, item_rect
);
2146 cell
->WXCallRender(item_rect
, &dc
, state
);
2149 cell_rect
.x
+= cell_rect
.width
;
2154 void wxDataViewMainWindow::DrawCellBackground( wxDataViewRenderer
* cell
, wxDC
& dc
, const wxRect
& rect
)
2156 wxRect
rectBg( rect
);
2158 // don't overlap the horizontal rules
2159 if ( m_owner
->HasFlag(wxDV_HORIZ_RULES
) )
2165 // don't overlap the vertical rules
2166 if ( m_owner
->HasFlag(wxDV_VERT_RULES
) )
2172 cell
->RenderBackground(&dc
, rectBg
);
2175 void wxDataViewMainWindow::OnRenameTimer()
2177 // We have to call this here because changes may just have
2178 // been made and no screen update taken place.
2181 // TODO: use wxTheApp->SafeYieldFor(NULL, wxEVT_CATEGORY_UI) instead
2182 // (needs to be tested!)
2186 wxDataViewItem item
= GetItemByRow( m_currentRow
);
2188 StartEditing( item
, m_currentCol
);
2192 wxDataViewMainWindow::StartEditing(const wxDataViewItem
& item
,
2193 const wxDataViewColumn
* col
)
2195 wxDataViewRenderer
* renderer
= col
->GetRenderer();
2196 if ( !IsCellEditableInMode(item
, col
, wxDATAVIEW_CELL_EDITABLE
) )
2199 const wxRect itemRect
= GetItemRect(item
, col
);
2200 if ( renderer
->StartEditing(item
, itemRect
) )
2202 // Save the renderer to be able to finish/cancel editing it later and
2203 // save the control to be able to detect if we're still editing it.
2204 m_editorRenderer
= renderer
;
2205 m_editorCtrl
= renderer
->GetEditorCtrl();
2209 //-----------------------------------------------------------------------------
2210 // Helper class for do operation on the tree node
2211 //-----------------------------------------------------------------------------
2216 virtual ~DoJob() { }
2218 // The return value control how the tree-walker tranverse the tree
2221 DONE
, // Job done, stop traversing and return
2222 SKIP_SUBTREE
, // Ignore the current node's subtree and continue
2223 CONTINUE
// Job not done, continue
2226 virtual int operator() ( wxDataViewTreeNode
* node
) = 0;
2229 bool Walker( wxDataViewTreeNode
* node
, DoJob
& func
)
2231 wxCHECK_MSG( node
, false, "can't walk NULL node" );
2233 switch( func( node
) )
2237 case DoJob::SKIP_SUBTREE
:
2239 case DoJob::CONTINUE
:
2243 if ( node
->HasChildren() )
2245 const wxDataViewTreeNodes
& nodes
= node
->GetChildNodes();
2247 for ( wxDataViewTreeNodes::const_iterator i
= nodes
.begin();
2251 if ( Walker(*i
, func
) )
2259 bool wxDataViewMainWindow::ItemAdded(const wxDataViewItem
& parent
, const wxDataViewItem
& item
)
2261 if (IsVirtualList())
2263 wxDataViewVirtualListModel
*list_model
=
2264 (wxDataViewVirtualListModel
*) GetModel();
2265 m_count
= list_model
->GetCount();
2271 wxDataViewTreeNode
*parentNode
= FindNode(parent
);
2276 wxDataViewItemArray modelSiblings
;
2277 GetModel()->GetChildren(parent
, modelSiblings
);
2278 const int modelSiblingsSize
= modelSiblings
.size();
2280 int posInModel
= modelSiblings
.Index(item
, /*fromEnd=*/true);
2281 wxCHECK_MSG( posInModel
!= wxNOT_FOUND
, false, "adding non-existent item?" );
2283 wxDataViewTreeNode
*itemNode
= new wxDataViewTreeNode(parentNode
, item
);
2284 itemNode
->SetHasChildren(GetModel()->IsContainer(item
));
2286 parentNode
->SetHasChildren(true);
2288 const wxDataViewTreeNodes
& nodeSiblings
= parentNode
->GetChildNodes();
2289 const int nodeSiblingsSize
= nodeSiblings
.size();
2293 if ( posInModel
== modelSiblingsSize
- 1 )
2295 nodePos
= nodeSiblingsSize
;
2297 else if ( modelSiblingsSize
== nodeSiblingsSize
+ 1 )
2299 // This is the simple case when our node tree already matches the
2300 // model and only this one item is missing.
2301 nodePos
= posInModel
;
2305 // It's possible that a larger discrepancy between the model and
2306 // our realization exists. This can happen e.g. when adding a bunch
2307 // of items to the model and then calling ItemsAdded() just once
2308 // afterwards. In this case, we must find the right position by
2309 // looking at sibling items.
2311 // append to the end if we won't find a better position:
2312 nodePos
= nodeSiblingsSize
;
2314 for ( int nextItemPos
= posInModel
+ 1;
2315 nextItemPos
< modelSiblingsSize
;
2318 int nextNodePos
= parentNode
->FindChildByItem(modelSiblings
[nextItemPos
]);
2319 if ( nextNodePos
!= wxNOT_FOUND
)
2321 nodePos
= nextNodePos
;
2327 parentNode
->ChangeSubTreeCount(+1);
2328 parentNode
->InsertChild(itemNode
, nodePos
);
2333 GetOwner()->InvalidateColBestWidths();
2339 bool wxDataViewMainWindow::ItemDeleted(const wxDataViewItem
& parent
,
2340 const wxDataViewItem
& item
)
2342 if (IsVirtualList())
2344 wxDataViewVirtualListModel
*list_model
=
2345 (wxDataViewVirtualListModel
*) GetModel();
2346 m_count
= list_model
->GetCount();
2348 if ( !m_selection
.empty() )
2350 const int row
= GetRowByItem(item
);
2352 int rowIndexInSelection
= wxNOT_FOUND
;
2354 const size_t selCount
= m_selection
.size();
2355 for ( size_t i
= 0; i
< selCount
; i
++ )
2357 if ( m_selection
[i
] == (unsigned)row
)
2358 rowIndexInSelection
= i
;
2359 else if ( m_selection
[i
] > (unsigned)row
)
2363 if ( rowIndexInSelection
!= wxNOT_FOUND
)
2364 m_selection
.RemoveAt(rowIndexInSelection
);
2368 else // general case
2370 wxDataViewTreeNode
*parentNode
= FindNode(parent
);
2372 // Notice that it is possible that the item being deleted is not in the
2373 // tree at all, for example we could be deleting a never shown (because
2374 // collapsed) item in a tree model. So it's not an error if we don't know
2375 // about this item, just return without doing anything then.
2379 wxCHECK_MSG( parentNode
->HasChildren(), false, "parent node doesn't have children?" );
2380 const wxDataViewTreeNodes
& parentsChildren
= parentNode
->GetChildNodes();
2382 // We can't use FindNode() to find 'item', because it was already
2383 // removed from the model by the time ItemDeleted() is called, so we
2384 // have to do it manually. We keep track of its position as well for
2386 int itemPosInNode
= 0;
2387 wxDataViewTreeNode
*itemNode
= NULL
;
2388 for ( wxDataViewTreeNodes::const_iterator i
= parentsChildren
.begin();
2389 i
!= parentsChildren
.end();
2390 ++i
, ++itemPosInNode
)
2392 if( (*i
)->GetItem() == item
)
2399 // If the parent wasn't expanded, it's possible that we didn't have a
2400 // node corresponding to 'item' and so there's nothing left to do.
2403 // If this was the last child to be removed, it's possible the parent
2404 // node became a leaf. Let's ask the model about it.
2405 if ( parentNode
->GetChildNodes().empty() )
2406 parentNode
->SetHasChildren(GetModel()->IsContainer(parent
));
2411 // Delete the item from wxDataViewTreeNode representation:
2412 const int itemsDeleted
= 1 + itemNode
->GetSubTreeCount();
2414 parentNode
->RemoveChild(itemNode
);
2416 parentNode
->ChangeSubTreeCount(-itemsDeleted
);
2418 // Make the row number invalid and get a new valid one when user call GetRowCount
2421 // If this was the last child to be removed, it's possible the parent
2422 // node became a leaf. Let's ask the model about it.
2423 if ( parentNode
->GetChildNodes().empty() )
2425 bool isContainer
= GetModel()->IsContainer(parent
);
2426 parentNode
->SetHasChildren(isContainer
);
2429 // If it's still a container, make sure we show "+" icon for it
2430 // and not "-" one as there is nothing to collapse any more.
2431 if ( parentNode
->IsOpen() )
2432 parentNode
->ToggleOpen();
2436 // Update selection by removing 'item' and its entire children tree from the selection.
2437 if ( !m_selection
.empty() )
2439 // we can't call GetRowByItem() on 'item', as it's already deleted, so compute it from
2440 // the parent ('parentNode') and position in its list of children
2442 if ( itemPosInNode
== 0 )
2444 // 1st child, row number is that of the parent parentNode + 1
2445 itemRow
= GetRowByItem(parentNode
->GetItem()) + 1;
2449 // row number is that of the sibling above 'item' + its subtree if any + 1
2450 const wxDataViewTreeNode
*siblingNode
= parentNode
->GetChildNodes()[itemPosInNode
- 1];
2452 itemRow
= GetRowByItem(siblingNode
->GetItem()) +
2453 siblingNode
->GetSubTreeCount() +
2457 wxDataViewSelection
newsel(wxDataViewSelectionCmp
);
2459 const size_t numSelections
= m_selection
.size();
2460 for ( size_t i
= 0; i
< numSelections
; ++i
)
2462 const int s
= m_selection
[i
];
2464 newsel
.push_back(s
);
2465 else if ( s
>= itemRow
+ itemsDeleted
)
2466 newsel
.push_back(s
- itemsDeleted
);
2467 // else: deleted item, remove from selection
2470 m_selection
= newsel
;
2474 // Change the current row to the last row if the current exceed the max row number
2475 if ( m_currentRow
>= GetRowCount() )
2476 ChangeCurrentRow(m_count
- 1);
2478 GetOwner()->InvalidateColBestWidths();
2484 bool wxDataViewMainWindow::ItemChanged(const wxDataViewItem
& item
)
2489 GetOwner()->InvalidateColBestWidths();
2492 wxWindow
*parent
= GetParent();
2493 wxDataViewEvent
le(wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED
, parent
->GetId());
2494 le
.SetEventObject(parent
);
2495 le
.SetModel(GetModel());
2497 parent
->ProcessWindowEvent(le
);
2502 bool wxDataViewMainWindow::ValueChanged( const wxDataViewItem
& item
, unsigned int model_column
)
2504 int view_column
= -1;
2505 unsigned int n_col
= m_owner
->GetColumnCount();
2506 for (unsigned i
= 0; i
< n_col
; i
++)
2508 wxDataViewColumn
*column
= m_owner
->GetColumn( i
);
2509 if (column
->GetModelColumn() == model_column
)
2511 view_column
= (int) i
;
2515 if (view_column
== -1)
2518 // NOTE: to be valid, we cannot use e.g. INT_MAX - 1
2519 /*#define MAX_VIRTUAL_WIDTH 100000
2521 wxRect rect( 0, row*m_lineHeight, MAX_VIRTUAL_WIDTH, m_lineHeight );
2522 m_owner->CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y );
2523 Refresh( true, &rect );
2530 GetOwner()->InvalidateColBestWidth(view_column
);
2533 wxWindow
*parent
= GetParent();
2534 wxDataViewEvent
le(wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED
, parent
->GetId());
2535 le
.SetEventObject(parent
);
2536 le
.SetModel(GetModel());
2538 le
.SetColumn(view_column
);
2539 le
.SetDataViewColumn(GetOwner()->GetColumn(view_column
));
2540 parent
->ProcessWindowEvent(le
);
2545 bool wxDataViewMainWindow::Cleared()
2548 m_selection
.Clear();
2549 m_currentRow
= (unsigned)-1;
2554 BuildTree( GetModel() );
2561 GetOwner()->InvalidateColBestWidths();
2567 void wxDataViewMainWindow::UpdateDisplay()
2570 m_underMouse
= NULL
;
2573 void wxDataViewMainWindow::OnInternalIdle()
2575 wxWindow::OnInternalIdle();
2579 RecalculateDisplay();
2584 void wxDataViewMainWindow::RecalculateDisplay()
2586 wxDataViewModel
*model
= GetModel();
2593 int width
= GetEndOfLastCol();
2594 int height
= GetLineStart( GetRowCount() );
2596 SetVirtualSize( width
, height
);
2597 GetOwner()->SetScrollRate( 10, m_lineHeight
);
2602 void wxDataViewMainWindow::ScrollWindow( int dx
, int dy
, const wxRect
*rect
)
2604 m_underMouse
= NULL
;
2606 wxWindow::ScrollWindow( dx
, dy
, rect
);
2608 if (GetOwner()->m_headerArea
)
2609 GetOwner()->m_headerArea
->ScrollWindow( dx
, 0 );
2612 void wxDataViewMainWindow::ScrollTo( int rows
, int column
)
2614 m_underMouse
= NULL
;
2617 m_owner
->GetScrollPixelsPerUnit( &x
, &y
);
2618 int sy
= GetLineStart( rows
)/y
;
2622 wxRect rect
= GetClientRect();
2626 m_owner
->CalcUnscrolledPosition( rect
.x
, rect
.y
, &xx
, &yy
);
2627 for (x_start
= 0; colnum
< column
; colnum
++)
2629 wxDataViewColumn
*col
= GetOwner()->GetColumnAt(colnum
);
2630 if (col
->IsHidden())
2631 continue; // skip it!
2633 w
= col
->GetWidth();
2637 int x_end
= x_start
+ w
;
2638 xe
= xx
+ rect
.width
;
2641 sx
= ( xx
+ x_end
- xe
)/x
;
2648 m_owner
->Scroll( sx
, sy
);
2651 int wxDataViewMainWindow::GetCountPerPage() const
2653 wxSize size
= GetClientSize();
2654 return size
.y
/ m_lineHeight
;
2657 int wxDataViewMainWindow::GetEndOfLastCol() const
2661 for (i
= 0; i
< GetOwner()->GetColumnCount(); i
++)
2663 const wxDataViewColumn
*c
=
2664 const_cast<wxDataViewCtrl
*>(GetOwner())->GetColumnAt( i
);
2667 width
+= c
->GetWidth();
2672 unsigned int wxDataViewMainWindow::GetFirstVisibleRow() const
2676 m_owner
->CalcUnscrolledPosition( x
, y
, &x
, &y
);
2678 return GetLineAt( y
);
2681 unsigned int wxDataViewMainWindow::GetLastVisibleRow()
2683 wxSize client_size
= GetClientSize();
2684 m_owner
->CalcUnscrolledPosition( client_size
.x
, client_size
.y
,
2685 &client_size
.x
, &client_size
.y
);
2687 // we should deal with the pixel here
2688 unsigned int row
= GetLineAt(client_size
.y
) - 1;
2690 return wxMin( GetRowCount()-1, row
);
2693 unsigned int wxDataViewMainWindow::GetRowCount() const
2695 if ( m_count
== -1 )
2697 wxDataViewMainWindow
* const
2698 self
= const_cast<wxDataViewMainWindow
*>(this);
2699 self
->m_count
= RecalculateCount();
2700 self
->UpdateDisplay();
2705 void wxDataViewMainWindow::ChangeCurrentRow( unsigned int row
)
2712 void wxDataViewMainWindow::SelectAllRows( bool on
)
2719 m_selection
.Clear();
2720 for (unsigned int i
= 0; i
< GetRowCount(); i
++)
2721 m_selection
.Add( i
);
2726 unsigned int first_visible
= GetFirstVisibleRow();
2727 unsigned int last_visible
= GetLastVisibleRow();
2729 for (i
= 0; i
< m_selection
.GetCount(); i
++)
2731 unsigned int row
= m_selection
[i
];
2732 if ((row
>= first_visible
) && (row
<= last_visible
))
2735 m_selection
.Clear();
2739 void wxDataViewMainWindow::SelectRow( unsigned int row
, bool on
)
2741 if (m_selection
.Index( row
) == wxNOT_FOUND
)
2745 m_selection
.Add( row
);
2753 m_selection
.Remove( row
);
2759 void wxDataViewMainWindow::SelectRows( unsigned int from
, unsigned int to
, bool on
)
2763 unsigned int tmp
= from
;
2769 for (i
= from
; i
<= to
; i
++)
2771 if (m_selection
.Index( i
) == wxNOT_FOUND
)
2774 m_selection
.Add( i
);
2779 m_selection
.Remove( i
);
2782 RefreshRows( from
, to
);
2785 void wxDataViewMainWindow::Select( const wxArrayInt
& aSelections
)
2787 for (size_t i
=0; i
< aSelections
.GetCount(); i
++)
2789 int n
= aSelections
[i
];
2791 m_selection
.Add( n
);
2796 void wxDataViewMainWindow::ReverseRowSelection( unsigned int row
)
2798 if (m_selection
.Index( row
) == wxNOT_FOUND
)
2799 m_selection
.Add( row
);
2801 m_selection
.Remove( row
);
2805 bool wxDataViewMainWindow::IsRowSelected( unsigned int row
)
2807 return (m_selection
.Index( row
) != wxNOT_FOUND
);
2810 void wxDataViewMainWindow::SendSelectionChangedEvent( const wxDataViewItem
& item
)
2812 wxWindow
*parent
= GetParent();
2813 wxDataViewEvent
le(wxEVT_COMMAND_DATAVIEW_SELECTION_CHANGED
, parent
->GetId());
2815 le
.SetEventObject(parent
);
2816 le
.SetModel(GetModel());
2819 parent
->ProcessWindowEvent(le
);
2822 void wxDataViewMainWindow::RefreshRow( unsigned int row
)
2824 wxRect
rect( 0, GetLineStart( row
), GetEndOfLastCol(), GetLineHeight( row
) );
2825 m_owner
->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2827 wxSize client_size
= GetClientSize();
2828 wxRect
client_rect( 0, 0, client_size
.x
, client_size
.y
);
2829 wxRect intersect_rect
= client_rect
.Intersect( rect
);
2830 if (intersect_rect
.width
> 0)
2831 Refresh( true, &intersect_rect
);
2834 void wxDataViewMainWindow::RefreshRows( unsigned int from
, unsigned int to
)
2838 unsigned int tmp
= to
;
2843 wxRect
rect( 0, GetLineStart( from
), GetEndOfLastCol(), GetLineStart( (to
-from
+1) ) );
2844 m_owner
->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2846 wxSize client_size
= GetClientSize();
2847 wxRect
client_rect( 0, 0, client_size
.x
, client_size
.y
);
2848 wxRect intersect_rect
= client_rect
.Intersect( rect
);
2849 if (intersect_rect
.width
> 0)
2850 Refresh( true, &intersect_rect
);
2853 void wxDataViewMainWindow::RefreshRowsAfter( unsigned int firstRow
)
2855 wxSize client_size
= GetClientSize();
2856 int start
= GetLineStart( firstRow
);
2857 m_owner
->CalcScrolledPosition( start
, 0, &start
, NULL
);
2858 if (start
> client_size
.y
) return;
2860 wxRect
rect( 0, start
, client_size
.x
, client_size
.y
- start
);
2862 Refresh( true, &rect
);
2865 wxRect
wxDataViewMainWindow::GetLineRect( unsigned int row
) const
2869 rect
.y
= GetLineStart( row
);
2870 rect
.width
= GetEndOfLastCol();
2871 rect
.height
= GetLineHeight( row
);
2876 int wxDataViewMainWindow::GetLineStart( unsigned int row
) const
2878 const wxDataViewModel
*model
= GetModel();
2880 if (GetOwner()->GetWindowStyle() & wxDV_VARIABLE_LINE_HEIGHT
)
2882 // TODO make more efficient
2887 for (r
= 0; r
< row
; r
++)
2889 const wxDataViewTreeNode
* node
= GetTreeNodeByRow(r
);
2890 if (!node
) return start
;
2892 wxDataViewItem item
= node
->GetItem();
2894 unsigned int cols
= GetOwner()->GetColumnCount();
2896 int height
= m_lineHeight
;
2897 for (col
= 0; col
< cols
; col
++)
2899 const wxDataViewColumn
*column
= GetOwner()->GetColumn(col
);
2900 if (column
->IsHidden())
2901 continue; // skip it!
2904 model
->IsContainer(item
) &&
2905 !model
->HasContainerColumns(item
))
2906 continue; // skip it!
2908 wxDataViewRenderer
*renderer
=
2909 const_cast<wxDataViewRenderer
*>(column
->GetRenderer());
2910 renderer
->PrepareForItem(model
, item
, column
->GetModelColumn());
2912 height
= wxMax( height
, renderer
->GetSize().y
);
2922 return row
* m_lineHeight
;
2926 int wxDataViewMainWindow::GetLineAt( unsigned int y
) const
2928 const wxDataViewModel
*model
= GetModel();
2930 // check for the easy case first
2931 if ( !GetOwner()->HasFlag(wxDV_VARIABLE_LINE_HEIGHT
) )
2932 return y
/ m_lineHeight
;
2934 // TODO make more efficient
2935 unsigned int row
= 0;
2936 unsigned int yy
= 0;
2939 const wxDataViewTreeNode
* node
= GetTreeNodeByRow(row
);
2942 // not really correct...
2943 return row
+ ((y
-yy
) / m_lineHeight
);
2946 wxDataViewItem item
= node
->GetItem();
2948 unsigned int cols
= GetOwner()->GetColumnCount();
2950 int height
= m_lineHeight
;
2951 for (col
= 0; col
< cols
; col
++)
2953 const wxDataViewColumn
*column
= GetOwner()->GetColumn(col
);
2954 if (column
->IsHidden())
2955 continue; // skip it!
2958 model
->IsContainer(item
) &&
2959 !model
->HasContainerColumns(item
))
2960 continue; // skip it!
2962 wxDataViewRenderer
*renderer
=
2963 const_cast<wxDataViewRenderer
*>(column
->GetRenderer());
2964 renderer
->PrepareForItem(model
, item
, column
->GetModelColumn());
2966 height
= wxMax( height
, renderer
->GetSize().y
);
2977 int wxDataViewMainWindow::GetLineHeight( unsigned int row
) const
2979 const wxDataViewModel
*model
= GetModel();
2981 if (GetOwner()->GetWindowStyle() & wxDV_VARIABLE_LINE_HEIGHT
)
2983 wxASSERT( !IsVirtualList() );
2985 const wxDataViewTreeNode
* node
= GetTreeNodeByRow(row
);
2986 // wxASSERT( node );
2987 if (!node
) return m_lineHeight
;
2989 wxDataViewItem item
= node
->GetItem();
2991 int height
= m_lineHeight
;
2993 unsigned int cols
= GetOwner()->GetColumnCount();
2995 for (col
= 0; col
< cols
; col
++)
2997 const wxDataViewColumn
*column
= GetOwner()->GetColumn(col
);
2998 if (column
->IsHidden())
2999 continue; // skip it!
3002 model
->IsContainer(item
) &&
3003 !model
->HasContainerColumns(item
))
3004 continue; // skip it!
3006 wxDataViewRenderer
*renderer
=
3007 const_cast<wxDataViewRenderer
*>(column
->GetRenderer());
3008 renderer
->PrepareForItem(model
, item
, column
->GetModelColumn());
3010 height
= wxMax( height
, renderer
->GetSize().y
);
3017 return m_lineHeight
;
3022 class RowToTreeNodeJob
: public DoJob
3025 RowToTreeNodeJob( unsigned int row
, int current
, wxDataViewTreeNode
* node
)
3028 this->current
= current
;
3033 virtual int operator() ( wxDataViewTreeNode
* node
)
3036 if( current
== static_cast<int>(row
))
3042 if( node
->GetSubTreeCount() + current
< static_cast<int>(row
) )
3044 current
+= node
->GetSubTreeCount();
3045 return DoJob::SKIP_SUBTREE
;
3051 // If the current node has only leaf children, we can find the
3052 // desired node directly. This can speed up finding the node
3053 // in some cases, and will have a very good effect for list views.
3054 if ( node
->HasChildren() &&
3055 (int)node
->GetChildNodes().size() == node
->GetSubTreeCount() )
3057 const int index
= static_cast<int>(row
) - current
- 1;
3058 ret
= node
->GetChildNodes()[index
];
3062 return DoJob::CONTINUE
;
3066 wxDataViewTreeNode
* GetResult() const
3072 wxDataViewTreeNode
* ret
;
3073 wxDataViewTreeNode
* parent
;
3076 wxDataViewTreeNode
* wxDataViewMainWindow::GetTreeNodeByRow(unsigned int row
) const
3078 wxASSERT( !IsVirtualList() );
3080 if ( row
== (unsigned)-1 )
3083 RowToTreeNodeJob
job( row
, -2, m_root
);
3084 Walker( m_root
, job
);
3085 return job
.GetResult();
3088 wxDataViewItem
wxDataViewMainWindow::GetItemByRow(unsigned int row
) const
3090 wxDataViewItem item
;
3091 if (IsVirtualList())
3093 if ( row
< GetRowCount() )
3094 item
= wxDataViewItem(wxUIntToPtr(row
+1));
3098 wxDataViewTreeNode
*node
= GetTreeNodeByRow(row
);
3100 item
= node
->GetItem();
3107 wxDataViewMainWindow::SendExpanderEvent(wxEventType type
,
3108 const wxDataViewItem
& item
)
3110 wxWindow
*parent
= GetParent();
3111 wxDataViewEvent
le(type
, parent
->GetId());
3113 le
.SetEventObject(parent
);
3114 le
.SetModel(GetModel());
3117 return !parent
->ProcessWindowEvent(le
) || le
.IsAllowed();
3120 bool wxDataViewMainWindow::IsExpanded( unsigned int row
) const
3125 wxDataViewTreeNode
* node
= GetTreeNodeByRow(row
);
3129 if (!node
->HasChildren())
3132 return node
->IsOpen();
3135 bool wxDataViewMainWindow::HasChildren( unsigned int row
) const
3140 wxDataViewTreeNode
* node
= GetTreeNodeByRow(row
);
3144 if (!node
->HasChildren())
3150 void wxDataViewMainWindow::Expand( unsigned int row
)
3155 wxDataViewTreeNode
* node
= GetTreeNodeByRow(row
);
3159 if (!node
->HasChildren())
3162 if (!node
->IsOpen())
3164 if ( !SendExpanderEvent(wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDING
, node
->GetItem()) )
3166 // Vetoed by the event handler.
3172 // build the children of current node
3173 if( node
->GetChildNodes().empty() )
3176 ::BuildTreeHelper(GetModel(), node
->GetItem(), node
);
3179 // By expanding the node all row indices that are currently in the selection list
3180 // and are greater than our node have become invalid. So we have to correct that now.
3181 const unsigned rowAdjustment
= node
->GetSubTreeCount();
3182 for(unsigned i
=0; i
<m_selection
.size(); ++i
)
3184 const unsigned testRow
= m_selection
[i
];
3185 // all rows above us are not affected, so skip them
3189 m_selection
[i
] += rowAdjustment
;
3192 if(m_currentRow
> row
)
3193 ChangeCurrentRow(m_currentRow
+ rowAdjustment
);
3197 // Send the expanded event
3198 SendExpanderEvent(wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDED
,node
->GetItem());
3202 void wxDataViewMainWindow::Collapse(unsigned int row
)
3207 wxDataViewTreeNode
*node
= GetTreeNodeByRow(row
);
3211 if (!node
->HasChildren())
3216 if ( !SendExpanderEvent(wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSING
,node
->GetItem()) )
3218 // Vetoed by the event handler.
3222 // Find out if there are selected items below the current node.
3223 bool selectCollapsingRow
= false;
3224 const unsigned rowAdjustment
= node
->GetSubTreeCount();
3225 unsigned maxRowToBeTested
= row
+ rowAdjustment
;
3226 for(unsigned i
=0; i
<m_selection
.size(); ++i
)
3228 const unsigned testRow
= m_selection
[i
];
3229 if(testRow
> row
&& testRow
<= maxRowToBeTested
)
3231 selectCollapsingRow
= true;
3232 // get out as soon as we have found a node that is selected
3239 // If the node to be closed has selected items the user won't see those any longer.
3240 // We select the collapsing node in this case.
3241 if(selectCollapsingRow
)
3243 SelectAllRows(false);
3244 ChangeCurrentRow(row
);
3245 SelectRow(row
, true);
3246 SendSelectionChangedEvent(GetItemByRow(row
));
3250 // if there were no selected items below our node we still need to "fix" the
3251 // selection list to adjust for the changing of the row indices.
3252 // We actually do the opposite of what we are doing in Expand().
3253 for(unsigned i
=0; i
<m_selection
.size(); ++i
)
3255 const unsigned testRow
= m_selection
[i
];
3256 // all rows above us are not affected, so skip them
3260 m_selection
[i
] -= rowAdjustment
;
3263 // if the "current row" is being collapsed away we change it to the current row ;-)
3264 if(m_currentRow
> row
&& m_currentRow
<= maxRowToBeTested
)
3265 ChangeCurrentRow(row
);
3266 else if(m_currentRow
> row
)
3267 ChangeCurrentRow(m_currentRow
- rowAdjustment
);
3272 SendExpanderEvent(wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSED
,node
->GetItem());
3276 wxDataViewTreeNode
* wxDataViewMainWindow::FindNode( const wxDataViewItem
& item
)
3278 const wxDataViewModel
* model
= GetModel();
3285 // Compose the parent-chain for the item we are looking for
3286 wxVector
<wxDataViewItem
> parentChain
;
3287 wxDataViewItem
it( item
);
3290 parentChain
.push_back(it
);
3291 it
= model
->GetParent(it
);
3294 // Find the item along the parent-chain.
3295 // This algorithm is designed to speed up the node-finding method
3296 wxDataViewTreeNode
* node
= m_root
;
3297 for( unsigned iter
= parentChain
.size()-1; ; --iter
)
3299 if( node
->HasChildren() )
3301 if( node
->GetChildNodes().empty() )
3303 // Even though the item is a container, it doesn't have any
3304 // child nodes in the control's representation yet. We have
3305 // to realize its subtree now.
3307 ::BuildTreeHelper(model
, node
->GetItem(), node
);
3310 const wxDataViewTreeNodes
& nodes
= node
->GetChildNodes();
3313 for (unsigned i
= 0; i
< nodes
.GetCount(); ++i
)
3315 wxDataViewTreeNode
* currentNode
= nodes
[i
];
3316 if (currentNode
->GetItem() == parentChain
[iter
])
3318 if (currentNode
->GetItem() == item
)
3338 void wxDataViewMainWindow::HitTest( const wxPoint
& point
, wxDataViewItem
& item
,
3339 wxDataViewColumn
* &column
)
3341 wxDataViewColumn
*col
= NULL
;
3342 unsigned int cols
= GetOwner()->GetColumnCount();
3343 unsigned int colnum
= 0;
3345 m_owner
->CalcUnscrolledPosition( point
.x
, point
.y
, &x
, &y
);
3346 for (unsigned x_start
= 0; colnum
< cols
; colnum
++)
3348 col
= GetOwner()->GetColumnAt(colnum
);
3349 if (col
->IsHidden())
3350 continue; // skip it!
3352 unsigned int w
= col
->GetWidth();
3353 if (x_start
+w
>= (unsigned int)x
)
3360 item
= GetItemByRow( GetLineAt( y
) );
3363 wxRect
wxDataViewMainWindow::GetItemRect( const wxDataViewItem
& item
,
3364 const wxDataViewColumn
* column
)
3369 unsigned int cols
= GetOwner()->GetColumnCount();
3370 // If column is null the loop will compute the combined width of all columns.
3371 // Otherwise, it will compute the x position of the column we are looking for.
3372 for (unsigned int i
= 0; i
< cols
; i
++)
3374 wxDataViewColumn
* col
= GetOwner()->GetColumnAt( i
);
3379 if (col
->IsHidden())
3380 continue; // skip it!
3382 xpos
+= col
->GetWidth();
3383 width
+= col
->GetWidth();
3388 // If we have a column, we need can get its width directly.
3389 if(column
->IsHidden())
3392 width
= column
->GetWidth();
3397 // If we have no column, we reset the x position back to zero.
3401 // we have to take an expander column into account and compute its indentation
3402 // to get the correct x position where the actual text is
3404 int row
= GetRowByItem(item
);
3406 (column
== 0 || GetExpanderColumnOrFirstOne(GetOwner()) == column
) )
3408 wxDataViewTreeNode
* node
= GetTreeNodeByRow(row
);
3409 indent
= GetOwner()->GetIndent() * node
->GetIndentLevel();
3410 indent
= indent
+ m_lineHeight
; // use m_lineHeight as the width of the expander
3413 wxRect
itemRect( xpos
+ indent
,
3414 GetLineStart( row
),
3416 GetLineHeight( row
) );
3418 GetOwner()->CalcScrolledPosition( itemRect
.x
, itemRect
.y
,
3419 &itemRect
.x
, &itemRect
.y
);
3424 int wxDataViewMainWindow::RecalculateCount() const
3426 if (IsVirtualList())
3428 wxDataViewVirtualListModel
*list_model
=
3429 (wxDataViewVirtualListModel
*) GetModel();
3431 return list_model
->GetCount();
3435 return m_root
->GetSubTreeCount();
3439 class ItemToRowJob
: public DoJob
3442 ItemToRowJob(const wxDataViewItem
& item_
, wxVector
<wxDataViewItem
>::reverse_iterator iter
)
3449 // Maybe binary search will help to speed up this process
3450 virtual int operator() ( wxDataViewTreeNode
* node
)
3453 if( node
->GetItem() == item
)
3458 if( node
->GetItem() == *m_iter
)
3461 return DoJob::CONTINUE
;
3465 ret
+= node
->GetSubTreeCount();
3466 return DoJob::SKIP_SUBTREE
;
3471 // the row number is begin from zero
3472 int GetResult() const
3476 wxVector
<wxDataViewItem
>::reverse_iterator m_iter
;
3477 wxDataViewItem item
;
3482 int wxDataViewMainWindow::GetRowByItem(const wxDataViewItem
& item
) const
3484 const wxDataViewModel
* model
= GetModel();
3488 if (IsVirtualList())
3490 return wxPtrToUInt( item
.GetID() ) -1;
3497 // Compose the parent-chain of the item we are looking for
3498 wxVector
<wxDataViewItem
> parentChain
;
3499 wxDataViewItem
it( item
);
3502 parentChain
.push_back(it
);
3503 it
= model
->GetParent(it
);
3506 // add an 'invalid' item to represent our 'invisible' root node
3507 parentChain
.push_back(wxDataViewItem());
3509 // the parent chain was created by adding the deepest parent first.
3510 // so if we want to start at the root node, we have to iterate backwards through the vector
3511 ItemToRowJob
job( item
, parentChain
.rbegin() );
3512 Walker( m_root
, job
);
3513 return job
.GetResult();
3517 static void BuildTreeHelper( const wxDataViewModel
* model
, const wxDataViewItem
& item
,
3518 wxDataViewTreeNode
* node
)
3520 if( !model
->IsContainer( item
) )
3523 wxDataViewItemArray children
;
3524 unsigned int num
= model
->GetChildren( item
, children
);
3526 for ( unsigned int index
= 0; index
< num
; index
++ )
3528 wxDataViewTreeNode
*n
= new wxDataViewTreeNode(node
, children
[index
]);
3530 if( model
->IsContainer(children
[index
]) )
3531 n
->SetHasChildren( true );
3533 node
->InsertChild(n
, index
);
3536 wxASSERT( node
->IsOpen() );
3537 node
->ChangeSubTreeCount(+num
);
3540 void wxDataViewMainWindow::BuildTree(wxDataViewModel
* model
)
3544 if (GetModel()->IsVirtualListModel())
3550 m_root
= wxDataViewTreeNode::CreateRootNode();
3552 // First we define a invalid item to fetch the top-level elements
3553 wxDataViewItem item
;
3555 BuildTreeHelper( model
, item
, m_root
);
3559 void wxDataViewMainWindow::DestroyTree()
3561 if (!IsVirtualList())
3569 wxDataViewMainWindow::FindColumnForEditing(const wxDataViewItem
& item
, wxDataViewCellMode mode
)
3571 // Edit the current column editable in 'mode'. If no column is focused
3572 // (typically because the user has full row selected), try to find the
3573 // first editable column (this would typically be a checkbox for
3574 // wxDATAVIEW_CELL_ACTIVATABLE and we don't want to force the user to set
3575 // focus on the checkbox column; or on the only editable text column).
3577 wxDataViewColumn
*candidate
= m_currentCol
;
3580 !IsCellEditableInMode(item
, candidate
, mode
) &&
3581 !m_currentColSetByKeyboard
)
3583 // If current column was set by mouse to something not editable (in
3584 // 'mode') and the user pressed Space/F2 to edit it, treat the
3585 // situation as if there was whole-row focus, because that's what is
3586 // visually indicated and the mouse click could very well be targeted
3587 // on the row rather than on an individual cell.
3589 // But if it was done by keyboard, respect that even if the column
3590 // isn't editable, because focus is visually on that column and editing
3591 // something else would be surprising.
3597 const unsigned cols
= GetOwner()->GetColumnCount();
3598 for ( unsigned i
= 0; i
< cols
; i
++ )
3600 wxDataViewColumn
*c
= GetOwner()->GetColumnAt(i
);
3601 if ( c
->IsHidden() )
3604 if ( IsCellEditableInMode(item
, c
, mode
) )
3612 // If on container item without columns, only the expander column
3613 // may be directly editable:
3615 GetOwner()->GetExpanderColumn() != candidate
&&
3616 GetModel()->IsContainer(item
) &&
3617 !GetModel()->HasContainerColumns(item
) )
3619 candidate
= GetOwner()->GetExpanderColumn();
3625 if ( !IsCellEditableInMode(item
, candidate
, mode
) )
3631 bool wxDataViewMainWindow::IsCellEditableInMode(const wxDataViewItem
& item
,
3632 const wxDataViewColumn
*col
,
3633 wxDataViewCellMode mode
) const
3635 if ( col
->GetRenderer()->GetMode() != mode
)
3638 if ( !GetModel()->IsEnabled(item
, col
->GetModelColumn()) )
3644 void wxDataViewMainWindow::OnCharHook(wxKeyEvent
& event
)
3648 // Handle any keys special for the in-place editor and return without
3649 // calling Skip() below.
3650 switch ( event
.GetKeyCode() )
3653 m_editorRenderer
->CancelEditing();
3657 m_editorRenderer
->FinishEditing();
3665 void wxDataViewMainWindow::OnChar( wxKeyEvent
&event
)
3667 wxWindow
* const parent
= GetParent();
3669 // propagate the char event upwards
3670 wxKeyEvent
eventForParent(event
);
3671 eventForParent
.SetEventObject(parent
);
3672 if ( parent
->ProcessWindowEvent(eventForParent
) )
3675 if ( parent
->HandleAsNavigationKey(event
) )
3678 // no item -> nothing to do
3679 if (!HasCurrentRow())
3685 // don't use m_linesPerPage directly as it might not be computed yet
3686 const int pageSize
= GetCountPerPage();
3687 wxCHECK_RET( pageSize
, wxT("should have non zero page size") );
3689 switch ( event
.GetKeyCode() )
3692 if ( event
.HasModifiers() )
3699 // Enter activates the item, i.e. sends wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED to
3700 // it. Only if that event is not handled do we activate column renderer (which
3701 // is normally done by Space) or even inline editing.
3703 const wxDataViewItem item
= GetItemByRow(m_currentRow
);
3705 wxDataViewEvent
le(wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED
,
3708 le
.SetEventObject(parent
);
3709 le
.SetModel(GetModel());
3711 if ( parent
->ProcessWindowEvent(le
) )
3713 // else: fall through to WXK_SPACE handling
3717 if ( event
.HasModifiers() )
3724 // Space toggles activatable items or -- if not activatable --
3725 // starts inline editing (this is normally done using F2 on
3726 // Windows, but Space is common everywhere else, so use it too
3727 // for greater cross-platform compatibility).
3729 const wxDataViewItem item
= GetItemByRow(m_currentRow
);
3731 // Activate the current activatable column. If not column is focused (typically
3732 // because the user has full row selected), try to find the first activatable
3733 // column (this would typically be a checkbox and we don't want to force the user
3734 // to set focus on the checkbox column).
3735 wxDataViewColumn
*activatableCol
= FindColumnForEditing(item
, wxDATAVIEW_CELL_ACTIVATABLE
);
3737 if ( activatableCol
)
3739 const unsigned colIdx
= activatableCol
->GetModelColumn();
3740 const wxRect cell_rect
= GetOwner()->GetItemRect(item
, activatableCol
);
3742 wxDataViewRenderer
*cell
= activatableCol
->GetRenderer();
3743 cell
->PrepareForItem(GetModel(), item
, colIdx
);
3744 cell
->WXActivateCell(cell_rect
, GetModel(), item
, colIdx
, NULL
);
3748 // else: fall through to WXK_F2 handling
3752 if ( event
.HasModifiers() )
3759 if( !m_selection
.empty() )
3761 // Mimic Windows 7 behavior: edit the item that has focus
3762 // if it is selected and the first selected item if focus
3763 // is out of selection.
3765 if ( m_selection
.Index(m_currentRow
) != wxNOT_FOUND
)
3768 sel
= m_selection
[0];
3771 const wxDataViewItem item
= GetItemByRow(sel
);
3773 // Edit the current column. If no column is focused
3774 // (typically because the user has full row selected), try
3775 // to find the first editable column.
3776 wxDataViewColumn
*editableCol
= FindColumnForEditing(item
, wxDATAVIEW_CELL_EDITABLE
);
3779 GetOwner()->EditItem(item
, editableCol
);
3785 OnVerticalNavigation( -1, event
);
3789 OnVerticalNavigation( +1, event
);
3791 // Add the process for tree expanding/collapsing
3801 OnVerticalNavigation( +(int)GetRowCount(), event
);
3805 OnVerticalNavigation( -(int)GetRowCount(), event
);
3809 OnVerticalNavigation( -(pageSize
- 1), event
);
3813 OnVerticalNavigation( +(pageSize
- 1), event
);
3821 void wxDataViewMainWindow::OnVerticalNavigation(int delta
, const wxKeyEvent
& event
)
3823 // if there is no selection, we cannot move it anywhere
3824 if (!HasCurrentRow() || IsEmpty())
3827 int newRow
= (int)m_currentRow
+ delta
;
3829 // let's keep the new row inside the allowed range
3833 const int rowCount
= (int)GetRowCount();
3834 if ( newRow
>= rowCount
)
3835 newRow
= rowCount
- 1;
3837 unsigned int oldCurrent
= m_currentRow
;
3838 unsigned int newCurrent
= (unsigned int)newRow
;
3840 // in single selection we just ignore Shift as we can't select several
3842 if ( event
.ShiftDown() && !IsSingleSel() )
3844 RefreshRow( oldCurrent
);
3846 ChangeCurrentRow( newCurrent
);
3848 // select all the items between the old and the new one
3849 if ( oldCurrent
> newCurrent
)
3851 newCurrent
= oldCurrent
;
3852 oldCurrent
= m_currentRow
;
3855 SelectRows( oldCurrent
, newCurrent
, true );
3856 if (oldCurrent
!=newCurrent
)
3857 SendSelectionChangedEvent(GetItemByRow(m_selection
[0]));
3861 RefreshRow( oldCurrent
);
3863 // all previously selected items are unselected unless ctrl is held
3864 if ( !event
.ControlDown() )
3865 SelectAllRows(false);
3867 ChangeCurrentRow( newCurrent
);
3869 if ( !event
.ControlDown() )
3871 SelectRow( m_currentRow
, true );
3872 SendSelectionChangedEvent(GetItemByRow(m_currentRow
));
3875 RefreshRow( m_currentRow
);
3878 GetOwner()->EnsureVisible( m_currentRow
, -1 );
3881 void wxDataViewMainWindow::OnLeftKey()
3885 TryAdvanceCurrentColumn(NULL
, /*forward=*/false);
3889 wxDataViewTreeNode
* node
= GetTreeNodeByRow(m_currentRow
);
3893 if ( TryAdvanceCurrentColumn(node
, /*forward=*/false) )
3896 // Because TryAdvanceCurrentColumn() return false, we are at the first
3897 // column or using whole-row selection. In this situation, we can use
3898 // the standard TreeView handling of the left key.
3899 if (node
->HasChildren() && node
->IsOpen())
3901 Collapse(m_currentRow
);
3905 // if the node is already closed, we move the selection to its parent
3906 wxDataViewTreeNode
*parent_node
= node
->GetParent();
3910 int parent
= GetRowByItem( parent_node
->GetItem() );
3913 unsigned int row
= m_currentRow
;
3914 SelectRow( row
, false);
3915 SelectRow( parent
, true );
3916 ChangeCurrentRow( parent
);
3917 GetOwner()->EnsureVisible( parent
, -1 );
3918 SendSelectionChangedEvent( parent_node
->GetItem() );
3925 void wxDataViewMainWindow::OnRightKey()
3929 TryAdvanceCurrentColumn(NULL
, /*forward=*/true);
3933 wxDataViewTreeNode
* node
= GetTreeNodeByRow(m_currentRow
);
3937 if ( node
->HasChildren() )
3939 if ( !node
->IsOpen() )
3941 Expand( m_currentRow
);
3945 // if the node is already open, we move the selection to the first child
3946 unsigned int row
= m_currentRow
;
3947 SelectRow( row
, false );
3948 SelectRow( row
+ 1, true );
3949 ChangeCurrentRow( row
+ 1 );
3950 GetOwner()->EnsureVisible( row
+ 1, -1 );
3951 SendSelectionChangedEvent( GetItemByRow(row
+1) );
3956 TryAdvanceCurrentColumn(node
, /*forward=*/true);
3961 bool wxDataViewMainWindow::TryAdvanceCurrentColumn(wxDataViewTreeNode
*node
, bool forward
)
3963 if ( GetOwner()->GetColumnCount() == 0 )
3966 if ( !m_useCellFocus
)
3971 // navigation shouldn't work in branch nodes without other columns:
3972 if ( node
->HasChildren() && !GetModel()->HasContainerColumns(node
->GetItem()) )
3976 if ( m_currentCol
== NULL
|| !m_currentColSetByKeyboard
)
3980 m_currentCol
= GetOwner()->GetColumnAt(1);
3981 m_currentColSetByKeyboard
= true;
3982 RefreshRow(m_currentRow
);
3989 int idx
= GetOwner()->GetColumnIndex(m_currentCol
) + (forward
? +1 : -1);
3991 if ( idx
>= (int)GetOwner()->GetColumnCount() )
3994 GetOwner()->EnsureVisible(m_currentRow
, idx
);
3998 // We are going to the left of the second column. Reset to whole-row
3999 // focus (which means first column would be edited).
4000 m_currentCol
= NULL
;
4001 RefreshRow(m_currentRow
);
4005 m_currentCol
= GetOwner()->GetColumnAt(idx
);
4006 m_currentColSetByKeyboard
= true;
4007 RefreshRow(m_currentRow
);
4011 void wxDataViewMainWindow::OnMouse( wxMouseEvent
&event
)
4013 if (event
.GetEventType() == wxEVT_MOUSEWHEEL
)
4015 // let the base handle mouse wheel events.
4020 if(event
.ButtonDown())
4022 // Not skipping button down events would prevent the system from
4023 // setting focus to this window as most (all?) of them do by default,
4024 // so skip it to enable default handling.
4028 int x
= event
.GetX();
4029 int y
= event
.GetY();
4030 m_owner
->CalcUnscrolledPosition( x
, y
, &x
, &y
);
4031 wxDataViewColumn
*col
= NULL
;
4034 unsigned int cols
= GetOwner()->GetColumnCount();
4036 for (i
= 0; i
< cols
; i
++)
4038 wxDataViewColumn
*c
= GetOwner()->GetColumnAt( i
);
4040 continue; // skip it!
4042 if (x
< xpos
+ c
->GetWidth())
4047 xpos
+= c
->GetWidth();
4050 wxDataViewModel
* const model
= GetModel();
4052 const unsigned int current
= GetLineAt( y
);
4053 const wxDataViewItem item
= GetItemByRow(current
);
4055 // Handle right clicking here, before everything else as context menu
4056 // events should be sent even when we click outside of any item, unlike all
4058 if (event
.RightUp())
4060 wxWindow
*parent
= GetParent();
4061 wxDataViewEvent
le(wxEVT_COMMAND_DATAVIEW_ITEM_CONTEXT_MENU
, parent
->GetId());
4062 le
.SetEventObject(parent
);
4065 if ( item
.IsOk() && col
)
4068 le
.SetColumn( col
->GetModelColumn() );
4069 le
.SetDataViewColumn( col
);
4072 parent
->ProcessWindowEvent(le
);
4076 // Check if we clicked outside the item area.
4077 if ((current
>= GetRowCount()) || !col
)
4079 // Follow Windows convention here: clicking either left or right (but
4080 // not middle) button clears the existing selection.
4081 if (m_owner
&& (event
.LeftDown() || event
.RightDown()))
4083 if (!GetSelections().empty())
4085 m_owner
->UnselectAll();
4086 SendSelectionChangedEvent(wxDataViewItem());
4093 wxDataViewRenderer
*cell
= col
->GetRenderer();
4094 wxDataViewColumn
* const
4095 expander
= GetExpanderColumnOrFirstOne(GetOwner());
4097 // Test whether the mouse is hovering over the expander (a.k.a tree "+"
4098 // button) and also determine the offset of the real cell start, skipping
4099 // the indentation and the expander itself.
4100 bool hoverOverExpander
= false;
4102 if ((!IsList()) && (expander
== col
))
4104 wxDataViewTreeNode
* node
= GetTreeNodeByRow(current
);
4106 int indent
= node
->GetIndentLevel();
4107 itemOffset
= GetOwner()->GetIndent()*indent
;
4109 if ( node
->HasChildren() )
4111 // we make the rectangle we are looking in a bit bigger than the actual
4112 // visual expander so the user can hit that little thing reliably
4113 wxRect
rect(itemOffset
,
4114 GetLineStart( current
) + (GetLineHeight(current
) - m_lineHeight
)/2,
4115 m_lineHeight
, m_lineHeight
);
4117 if( rect
.Contains(x
, y
) )
4119 // So the mouse is over the expander
4120 hoverOverExpander
= true;
4121 if (m_underMouse
&& m_underMouse
!= node
)
4123 // wxLogMessage("Undo the row: %d", GetRowByItem(m_underMouse->GetItem()));
4124 RefreshRow(GetRowByItem(m_underMouse
->GetItem()));
4126 if (m_underMouse
!= node
)
4128 // wxLogMessage("Do the row: %d", current);
4129 RefreshRow(current
);
4131 m_underMouse
= node
;
4135 // Account for the expander as well, even if this item doesn't have it,
4136 // its parent does so it still counts for the offset.
4137 itemOffset
+= m_lineHeight
;
4139 if (!hoverOverExpander
)
4141 if (m_underMouse
!= NULL
)
4143 // wxLogMessage("Undo the row: %d", GetRowByItem(m_underMouse->GetItem()));
4144 RefreshRow(GetRowByItem(m_underMouse
->GetItem()));
4145 m_underMouse
= NULL
;
4149 #if wxUSE_DRAG_AND_DROP
4150 if (event
.Dragging())
4152 if (m_dragCount
== 0)
4154 // we have to report the raw, physical coords as we want to be
4155 // able to call HitTest(event.m_pointDrag) from the user code to
4156 // get the item being dragged
4157 m_dragStart
= event
.GetPosition();
4162 if (m_dragCount
!= 3)
4165 if (event
.LeftIsDown())
4167 m_owner
->CalcUnscrolledPosition( m_dragStart
.x
, m_dragStart
.y
,
4168 &m_dragStart
.x
, &m_dragStart
.y
);
4169 unsigned int drag_item_row
= GetLineAt( m_dragStart
.y
);
4170 wxDataViewItem itemDragged
= GetItemByRow( drag_item_row
);
4172 // Notify cell about drag
4173 wxDataViewEvent
event( wxEVT_COMMAND_DATAVIEW_ITEM_BEGIN_DRAG
, m_owner
->GetId() );
4174 event
.SetEventObject( m_owner
);
4175 event
.SetItem( itemDragged
);
4176 event
.SetModel( model
);
4177 if (!m_owner
->HandleWindowEvent( event
))
4180 if (!event
.IsAllowed())
4183 wxDataObject
*obj
= event
.GetDataObject();
4187 wxDataViewDropSource
drag( this, drag_item_row
);
4188 drag
.SetData( *obj
);
4189 /* wxDragResult res = */ drag
.DoDragDrop(event
.GetDragFlags());
4198 #endif // wxUSE_DRAG_AND_DROP
4200 bool simulateClick
= false;
4202 if (event
.ButtonDClick())
4204 m_renameTimer
->Stop();
4205 m_lastOnSame
= false;
4208 bool ignore_other_columns
=
4209 ((expander
!= col
) &&
4210 (model
->IsContainer(item
)) &&
4211 (!model
->HasContainerColumns(item
)));
4213 if (event
.LeftDClick())
4215 if(hoverOverExpander
)
4217 // a double click on the expander will be converted into a "simulated" normal click
4218 simulateClick
= true;
4220 else if ( current
== m_lineLastClicked
)
4222 wxWindow
*parent
= GetParent();
4223 wxDataViewEvent
le(wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED
, parent
->GetId());
4225 le
.SetColumn( col
->GetModelColumn() );
4226 le
.SetDataViewColumn( col
);
4227 le
.SetEventObject(parent
);
4228 le
.SetModel(GetModel());
4230 parent
->ProcessWindowEvent(le
);
4235 // The first click was on another item, so don't interpret this as
4236 // a double click, but as a simple click instead
4237 simulateClick
= true;
4241 if (event
.LeftUp() && !hoverOverExpander
)
4243 if (m_lineSelectSingleOnUp
!= (unsigned int)-1)
4245 // select single line
4246 SelectAllRows( false );
4247 SelectRow( m_lineSelectSingleOnUp
, true );
4248 SendSelectionChangedEvent( GetItemByRow(m_lineSelectSingleOnUp
) );
4251 // If the user click the expander, we do not do editing even if the column
4252 // with expander are editable
4253 if (m_lastOnSame
&& !ignore_other_columns
)
4255 if ((col
== m_currentCol
) && (current
== m_currentRow
) &&
4256 IsCellEditableInMode(item
, col
, wxDATAVIEW_CELL_EDITABLE
) )
4258 m_renameTimer
->Start( 100, true );
4262 m_lastOnSame
= false;
4263 m_lineSelectSingleOnUp
= (unsigned int)-1;
4265 else if(!event
.LeftUp())
4267 // This is necessary, because after a DnD operation in
4268 // from and to ourself, the up event is swallowed by the
4269 // DnD code. So on next non-up event (which means here and
4270 // now) m_lineSelectSingleOnUp should be reset.
4271 m_lineSelectSingleOnUp
= (unsigned int)-1;
4274 if (event
.RightDown())
4276 m_lineBeforeLastClicked
= m_lineLastClicked
;
4277 m_lineLastClicked
= current
;
4279 // If the item is already selected, do not update the selection.
4280 // Multi-selections should not be cleared if a selected item is clicked.
4281 if (!IsRowSelected(current
))
4283 SelectAllRows(false);
4284 const unsigned oldCurrent
= m_currentRow
;
4285 ChangeCurrentRow(current
);
4286 SelectRow(m_currentRow
,true);
4287 RefreshRow(oldCurrent
);
4288 SendSelectionChangedEvent(GetItemByRow( m_currentRow
) );
4291 else if (event
.MiddleDown())
4295 if((event
.LeftDown() || simulateClick
) && hoverOverExpander
)
4297 wxDataViewTreeNode
* node
= GetTreeNodeByRow(current
);
4299 // hoverOverExpander being true tells us that our node must be
4300 // valid and have children.
4301 // So we don't need any extra checks.
4302 if( node
->IsOpen() )
4307 else if ((event
.LeftDown() || simulateClick
) && !hoverOverExpander
)
4309 m_lineBeforeLastClicked
= m_lineLastClicked
;
4310 m_lineLastClicked
= current
;
4312 unsigned int oldCurrentRow
= m_currentRow
;
4313 bool oldWasSelected
= IsRowSelected(m_currentRow
);
4315 bool cmdModifierDown
= event
.CmdDown();
4316 if ( IsSingleSel() || !(cmdModifierDown
|| event
.ShiftDown()) )
4318 if ( IsSingleSel() || !IsRowSelected(current
) )
4320 SelectAllRows( false );
4321 ChangeCurrentRow(current
);
4322 SelectRow(m_currentRow
,true);
4323 SendSelectionChangedEvent(GetItemByRow( m_currentRow
) );
4325 else // multi sel & current is highlighted & no mod keys
4327 m_lineSelectSingleOnUp
= current
;
4328 ChangeCurrentRow(current
); // change focus
4331 else // multi sel & either ctrl or shift is down
4333 if (cmdModifierDown
)
4335 ChangeCurrentRow(current
);
4336 ReverseRowSelection(m_currentRow
);
4337 SendSelectionChangedEvent(GetItemByRow(m_currentRow
));
4339 else if (event
.ShiftDown())
4341 ChangeCurrentRow(current
);
4343 unsigned int lineFrom
= oldCurrentRow
,
4346 if ( lineTo
< lineFrom
)
4349 lineFrom
= m_currentRow
;
4352 SelectRows(lineFrom
, lineTo
, true);
4353 SendSelectionChangedEvent(GetItemByRow(m_selection
[0]) );
4355 else // !ctrl, !shift
4357 // test in the enclosing if should make it impossible
4358 wxFAIL_MSG( wxT("how did we get here?") );
4362 if (m_currentRow
!= oldCurrentRow
)
4363 RefreshRow( oldCurrentRow
);
4365 wxDataViewColumn
*oldCurrentCol
= m_currentCol
;
4367 // Update selection here...
4369 m_currentColSetByKeyboard
= false;
4371 // This flag is used to decide whether we should start editing the item
4372 // label. We do it if the user clicks twice (but not double clicks,
4373 // i.e. simulateClick is false) on the same item but not if the click
4374 // was used for something else already, e.g. selecting the item (so it
4375 // must have been already selected) or giving the focus to the control
4376 // (so it must have had focus already).
4377 m_lastOnSame
= !simulateClick
&& ((col
== oldCurrentCol
) &&
4378 (current
== oldCurrentRow
)) && oldWasSelected
&&
4381 // Call ActivateCell() after everything else as under GTK+
4382 if ( IsCellEditableInMode(item
, col
, wxDATAVIEW_CELL_ACTIVATABLE
) )
4384 // notify cell about click
4385 cell
->PrepareForItem(model
, item
, col
->GetModelColumn());
4387 wxRect
cell_rect( xpos
+ itemOffset
,
4388 GetLineStart( current
),
4389 col
->GetWidth() - itemOffset
,
4390 GetLineHeight( current
) );
4392 // Report position relative to the cell's custom area, i.e.
4393 // no the entire space as given by the control but the one
4394 // used by the renderer after calculation of alignment etc.
4396 // adjust the rectangle ourselves to account for the alignment
4397 wxRect rectItem
= cell_rect
;
4398 const int align
= cell
->GetAlignment();
4399 if ( align
!= wxDVR_DEFAULT_ALIGNMENT
)
4401 const wxSize size
= cell
->GetSize();
4403 if ( size
.x
>= 0 && size
.x
< cell_rect
.width
)
4405 if ( align
& wxALIGN_CENTER_HORIZONTAL
)
4406 rectItem
.x
+= (cell_rect
.width
- size
.x
)/2;
4407 else if ( align
& wxALIGN_RIGHT
)
4408 rectItem
.x
+= cell_rect
.width
- size
.x
;
4409 // else: wxALIGN_LEFT is the default
4412 if ( size
.y
>= 0 && size
.y
< cell_rect
.height
)
4414 if ( align
& wxALIGN_CENTER_VERTICAL
)
4415 rectItem
.y
+= (cell_rect
.height
- size
.y
)/2;
4416 else if ( align
& wxALIGN_BOTTOM
)
4417 rectItem
.y
+= cell_rect
.height
- size
.y
;
4418 // else: wxALIGN_TOP is the default
4422 wxMouseEvent
event2(event
);
4423 event2
.m_x
-= rectItem
.x
;
4424 event2
.m_y
-= rectItem
.y
;
4425 m_owner
->CalcUnscrolledPosition(event2
.m_x
, event2
.m_y
, &event2
.m_x
, &event2
.m_y
);
4427 /* ignore ret */ cell
->WXActivateCell
4432 col
->GetModelColumn(),
4439 void wxDataViewMainWindow::OnSetFocus( wxFocusEvent
&event
)
4443 if (HasCurrentRow())
4449 void wxDataViewMainWindow::OnKillFocus( wxFocusEvent
&event
)
4453 if (HasCurrentRow())
4459 void wxDataViewMainWindow::OnColumnsCountChanged()
4461 int editableCount
= 0;
4463 const unsigned cols
= GetOwner()->GetColumnCount();
4464 for ( unsigned i
= 0; i
< cols
; i
++ )
4466 wxDataViewColumn
*c
= GetOwner()->GetColumnAt(i
);
4467 if ( c
->IsHidden() )
4469 if ( c
->GetRenderer()->GetMode() != wxDATAVIEW_CELL_INERT
)
4473 m_useCellFocus
= (editableCount
> 1);
4478 //-----------------------------------------------------------------------------
4480 //-----------------------------------------------------------------------------
4482 WX_DEFINE_LIST(wxDataViewColumnList
)
4484 IMPLEMENT_DYNAMIC_CLASS(wxDataViewCtrl
, wxDataViewCtrlBase
)
4485 BEGIN_EVENT_TABLE(wxDataViewCtrl
, wxDataViewCtrlBase
)
4486 EVT_SIZE(wxDataViewCtrl::OnSize
)
4489 wxDataViewCtrl::~wxDataViewCtrl()
4492 GetModel()->RemoveNotifier( m_notifier
);
4495 m_colsBestWidths
.clear();
4498 void wxDataViewCtrl::Init()
4500 m_cols
.DeleteContents(true);
4503 // No sorting column at start
4504 m_sortingColumnIdx
= wxNOT_FOUND
;
4506 m_headerArea
= NULL
;
4507 m_clientArea
= NULL
;
4509 m_colsDirty
= false;
4512 bool wxDataViewCtrl::Create(wxWindow
*parent
,
4517 const wxValidator
& validator
,
4518 const wxString
& name
)
4520 // if ( (style & wxBORDER_MASK) == 0)
4521 // style |= wxBORDER_SUNKEN;
4525 if (!wxControl::Create( parent
, id
, pos
, size
,
4526 style
| wxScrolledWindowStyle
, validator
, name
))
4529 SetInitialSize(size
);
4532 MacSetClipChildren( true );
4535 m_clientArea
= new wxDataViewMainWindow( this, wxID_ANY
);
4537 // We use the cursor keys for moving the selection, not scrolling, so call
4538 // this method to ensure wxScrollHelperEvtHandler doesn't catch all
4539 // keyboard events forwarded to us from wxListMainWindow.
4540 DisableKeyboardScrolling();
4542 if (HasFlag(wxDV_NO_HEADER
))
4543 m_headerArea
= NULL
;
4545 m_headerArea
= new wxDataViewHeaderWindow(this);
4547 SetTargetWindow( m_clientArea
);
4549 wxBoxSizer
*sizer
= new wxBoxSizer( wxVERTICAL
);
4551 sizer
->Add( m_headerArea
, 0, wxGROW
);
4552 sizer
->Add( m_clientArea
, 1, wxGROW
);
4558 wxBorder
wxDataViewCtrl::GetDefaultBorder() const
4560 return wxBORDER_THEME
;
4564 WXLRESULT
wxDataViewCtrl::MSWWindowProc(WXUINT nMsg
,
4568 WXLRESULT rc
= wxDataViewCtrlBase::MSWWindowProc(nMsg
, wParam
, lParam
);
4571 // we need to process arrows ourselves for scrolling
4572 if ( nMsg
== WM_GETDLGCODE
)
4574 rc
|= DLGC_WANTARROWS
;
4582 wxSize
wxDataViewCtrl::GetSizeAvailableForScrollTarget(const wxSize
& size
)
4584 wxSize newsize
= size
;
4585 if (!HasFlag(wxDV_NO_HEADER
) && (m_headerArea
))
4586 newsize
.y
-= m_headerArea
->GetSize().y
;
4591 void wxDataViewCtrl::OnSize( wxSizeEvent
&WXUNUSED(event
) )
4593 // We need to override OnSize so that our scrolled
4594 // window a) does call Layout() to use sizers for
4595 // positioning the controls but b) does not query
4596 // the sizer for their size and use that for setting
4597 // the scrollable area as set that ourselves by
4598 // calling SetScrollbar() further down.
4604 // We must redraw the headers if their height changed. Normally this
4605 // shouldn't happen as the control shouldn't let itself be resized beneath
4606 // its minimal height but avoid the display artefacts that appear if it
4607 // does happen, e.g. because there is really not enough vertical space.
4608 if ( !HasFlag(wxDV_NO_HEADER
) && m_headerArea
&&
4609 m_headerArea
->GetSize().y
<= m_headerArea
->GetBestSize(). y
)
4611 m_headerArea
->Refresh();
4615 void wxDataViewCtrl::SetFocus()
4618 m_clientArea
->SetFocus();
4621 bool wxDataViewCtrl::SetFont(const wxFont
& font
)
4623 if (!wxControl::SetFont(font
))
4627 m_headerArea
->SetFont(font
);
4631 m_clientArea
->SetFont(font
);
4632 m_clientArea
->SetRowHeight(m_clientArea
->GetDefaultRowHeight());
4635 if (m_headerArea
|| m_clientArea
)
4637 InvalidateColBestWidths();
4646 bool wxDataViewCtrl::AssociateModel( wxDataViewModel
*model
)
4648 if (!wxDataViewCtrlBase::AssociateModel( model
))
4653 m_notifier
= new wxGenericDataViewModelNotifier( m_clientArea
);
4654 model
->AddNotifier( m_notifier
);
4656 else if (m_notifier
)
4658 m_notifier
->Cleared();
4662 m_clientArea
->DestroyTree();
4666 m_clientArea
->BuildTree(model
);
4669 m_clientArea
->UpdateDisplay();
4674 #if wxUSE_DRAG_AND_DROP
4676 bool wxDataViewCtrl::EnableDragSource( const wxDataFormat
&format
)
4678 return m_clientArea
->EnableDragSource( format
);
4681 bool wxDataViewCtrl::EnableDropTarget( const wxDataFormat
&format
)
4683 return m_clientArea
->EnableDropTarget( format
);
4686 #endif // wxUSE_DRAG_AND_DROP
4688 bool wxDataViewCtrl::AppendColumn( wxDataViewColumn
*col
)
4690 if (!wxDataViewCtrlBase::AppendColumn(col
))
4693 m_cols
.Append( col
);
4694 m_colsBestWidths
.push_back(CachedColWidthInfo());
4695 OnColumnsCountChanged();
4699 bool wxDataViewCtrl::PrependColumn( wxDataViewColumn
*col
)
4701 if (!wxDataViewCtrlBase::PrependColumn(col
))
4704 m_cols
.Insert( col
);
4705 m_colsBestWidths
.insert(m_colsBestWidths
.begin(), CachedColWidthInfo());
4706 OnColumnsCountChanged();
4710 bool wxDataViewCtrl::InsertColumn( unsigned int pos
, wxDataViewColumn
*col
)
4712 if (!wxDataViewCtrlBase::InsertColumn(pos
,col
))
4715 m_cols
.Insert( pos
, col
);
4716 m_colsBestWidths
.insert(m_colsBestWidths
.begin() + pos
, CachedColWidthInfo());
4717 OnColumnsCountChanged();
4721 void wxDataViewCtrl::OnColumnChange(unsigned int idx
)
4724 m_headerArea
->UpdateColumn(idx
);
4726 m_clientArea
->UpdateDisplay();
4729 void wxDataViewCtrl::OnColumnsCountChanged()
4732 m_headerArea
->SetColumnCount(GetColumnCount());
4734 m_clientArea
->OnColumnsCountChanged();
4737 void wxDataViewCtrl::DoSetExpanderColumn()
4739 m_clientArea
->UpdateDisplay();
4742 void wxDataViewCtrl::DoSetIndent()
4744 m_clientArea
->UpdateDisplay();
4747 unsigned int wxDataViewCtrl::GetColumnCount() const
4749 return m_cols
.GetCount();
4752 bool wxDataViewCtrl::SetRowHeight( int lineHeight
)
4754 if ( !m_clientArea
)
4757 m_clientArea
->SetRowHeight(lineHeight
);
4762 wxDataViewColumn
* wxDataViewCtrl::GetColumn( unsigned int idx
) const
4767 wxDataViewColumn
*wxDataViewCtrl::GetColumnAt(unsigned int pos
) const
4769 // columns can't be reordered if there is no header window which allows
4771 const unsigned idx
= m_headerArea
? m_headerArea
->GetColumnsOrder()[pos
]
4774 return GetColumn(idx
);
4777 int wxDataViewCtrl::GetColumnIndex(const wxDataViewColumn
*column
) const
4779 const unsigned count
= m_cols
.size();
4780 for ( unsigned n
= 0; n
< count
; n
++ )
4782 if ( m_cols
[n
] == column
)
4789 unsigned int wxDataViewCtrl::GetBestColumnWidth(int idx
) const
4791 if ( m_colsBestWidths
[idx
].width
!= 0 )
4792 return m_colsBestWidths
[idx
].width
;
4794 const int count
= m_clientArea
->GetRowCount();
4795 wxDataViewColumn
*column
= GetColumn(idx
);
4796 wxDataViewRenderer
*renderer
=
4797 const_cast<wxDataViewRenderer
*>(column
->GetRenderer());
4799 class MaxWidthCalculator
4802 MaxWidthCalculator(const wxDataViewCtrl
*dvc
,
4803 wxDataViewMainWindow
*clientArea
,
4804 wxDataViewRenderer
*renderer
,
4805 const wxDataViewModel
*model
,
4810 m_clientArea(clientArea
),
4811 m_renderer(renderer
),
4814 m_expanderSize(expanderSize
)
4818 !clientArea
->IsList() &&
4820 GetExpanderColumnOrFirstOne(const_cast<wxDataViewCtrl
*>(dvc
)) == dvc
->GetColumnAt(column
));
4823 void UpdateWithWidth(int width
)
4825 m_width
= wxMax(m_width
, width
);
4828 void UpdateWithRow(int row
)
4831 wxDataViewItem item
;
4833 if ( m_isExpanderCol
)
4835 wxDataViewTreeNode
*node
= m_clientArea
->GetTreeNodeByRow(row
);
4836 item
= node
->GetItem();
4837 indent
= m_dvc
->GetIndent() * node
->GetIndentLevel() + m_expanderSize
;
4841 item
= m_clientArea
->GetItemByRow(row
);
4844 m_renderer
->PrepareForItem(m_model
, item
, m_column
);
4845 m_width
= wxMax(m_width
, m_renderer
->GetSize().x
+ indent
);
4848 int GetMaxWidth() const { return m_width
; }
4852 const wxDataViewCtrl
*m_dvc
;
4853 wxDataViewMainWindow
*m_clientArea
;
4854 wxDataViewRenderer
*m_renderer
;
4855 const wxDataViewModel
*m_model
;
4857 bool m_isExpanderCol
;
4861 MaxWidthCalculator
calculator(this, m_clientArea
, renderer
,
4862 GetModel(), column
->GetModelColumn(),
4863 m_clientArea
->GetRowHeight());
4865 calculator
.UpdateWithWidth(column
->GetMinWidth());
4868 calculator
.UpdateWithWidth(m_headerArea
->GetColumnTitleWidth(*column
));
4870 // The code below deserves some explanation. For very large controls, we
4871 // simply can't afford to calculate sizes for all items, it takes too
4872 // long. So the best we can do is to check the first and the last N/2
4873 // items in the control for some sufficiently large N and calculate best
4874 // sizes from that. That can result in the calculated best width being too
4875 // small for some outliers, but it's better to get slightly imperfect
4876 // result than to wait several seconds after every update. To avoid highly
4877 // visible miscalculations, we also include all currently visible items
4878 // no matter what. Finally, the value of N is determined dynamically by
4879 // measuring how much time we spent on the determining item widths so far.
4882 int top_part_end
= count
;
4883 static const long CALC_TIMEOUT
= 20/*ms*/;
4884 // don't call wxStopWatch::Time() too often
4885 static const unsigned CALC_CHECK_FREQ
= 100;
4888 // use some hard-coded limit, that's the best we can do without timer
4889 int top_part_end
= wxMin(500, count
);
4890 #endif // wxUSE_STOPWATCH/!wxUSE_STOPWATCH
4894 for ( row
= 0; row
< top_part_end
; row
++ )
4897 if ( row
% CALC_CHECK_FREQ
== CALC_CHECK_FREQ
-1 &&
4898 timer
.Time() > CALC_TIMEOUT
)
4900 #endif // wxUSE_STOPWATCH
4901 calculator
.UpdateWithRow(row
);
4904 // row is the first unmeasured item now; that's our value of N/2
4910 // add bottom N/2 items now:
4911 const int bottom_part_start
= wxMax(row
, count
- row
);
4912 for ( row
= bottom_part_start
; row
< count
; row
++ )
4914 calculator
.UpdateWithRow(row
);
4917 // finally, include currently visible items in the calculation:
4918 const wxPoint origin
= CalcUnscrolledPosition(wxPoint(0, 0));
4919 int first_visible
= m_clientArea
->GetLineAt(origin
.y
);
4920 int last_visible
= m_clientArea
->GetLineAt(origin
.y
+ GetClientSize().y
);
4922 first_visible
= wxMax(first_visible
, top_part_end
);
4923 last_visible
= wxMin(bottom_part_start
, last_visible
);
4925 for ( row
= first_visible
; row
< last_visible
; row
++ )
4927 calculator
.UpdateWithRow(row
);
4930 wxLogTrace("dataview",
4931 "determined best size from %d top, %d bottom plus %d more visible items out of %d total",
4933 count
- bottom_part_start
,
4934 wxMax(0, last_visible
- first_visible
),
4938 int max_width
= calculator
.GetMaxWidth();
4939 if ( max_width
> 0 )
4940 max_width
+= 2 * PADDING_RIGHTLEFT
;
4942 const_cast<wxDataViewCtrl
*>(this)->m_colsBestWidths
[idx
].width
= max_width
;
4946 void wxDataViewCtrl::ColumnMoved(wxDataViewColumn
* WXUNUSED(col
),
4947 unsigned int WXUNUSED(new_pos
))
4949 // do _not_ reorder m_cols elements here, they should always be in the
4950 // order in which columns were added, we only display the columns in
4952 m_clientArea
->UpdateDisplay();
4955 bool wxDataViewCtrl::DeleteColumn( wxDataViewColumn
*column
)
4957 wxDataViewColumnList::compatibility_iterator ret
= m_cols
.Find( column
);
4961 m_colsBestWidths
.erase(m_colsBestWidths
.begin() + GetColumnIndex(column
));
4964 if ( m_clientArea
->GetCurrentColumn() == column
)
4965 m_clientArea
->ClearCurrentColumn();
4967 OnColumnsCountChanged();
4972 bool wxDataViewCtrl::ClearColumns()
4974 SetExpanderColumn(NULL
);
4976 m_colsBestWidths
.clear();
4978 m_clientArea
->ClearCurrentColumn();
4980 OnColumnsCountChanged();
4985 void wxDataViewCtrl::InvalidateColBestWidth(int idx
)
4987 m_colsBestWidths
[idx
].width
= 0;
4988 m_colsBestWidths
[idx
].dirty
= true;
4992 void wxDataViewCtrl::InvalidateColBestWidths()
4994 // mark all columns as dirty:
4995 m_colsBestWidths
.clear();
4996 m_colsBestWidths
.resize(m_cols
.size());
5000 void wxDataViewCtrl::UpdateColWidths()
5002 m_colsDirty
= false;
5004 if ( !m_headerArea
)
5007 const unsigned len
= m_colsBestWidths
.size();
5008 for ( unsigned i
= 0; i
< len
; i
++ )
5010 // Note that we have to have an explicit 'dirty' flag here instead of
5011 // checking if the width==0, as is done in GetBestColumnWidth().
5013 // Testing width==0 wouldn't work correctly if some code called
5014 // GetWidth() after col. width invalidation but before
5015 // wxDataViewCtrl::UpdateColWidths() was called at idle time. This
5016 // would result in the header's column width getting out of sync with
5017 // the control itself.
5018 if ( m_colsBestWidths
[i
].dirty
)
5020 m_headerArea
->UpdateColumn(i
);
5021 m_colsBestWidths
[i
].dirty
= false;
5026 void wxDataViewCtrl::OnInternalIdle()
5028 wxDataViewCtrlBase::OnInternalIdle();
5034 int wxDataViewCtrl::GetColumnPosition( const wxDataViewColumn
*column
) const
5036 unsigned int len
= GetColumnCount();
5037 for ( unsigned int i
= 0; i
< len
; i
++ )
5039 wxDataViewColumn
* col
= GetColumnAt(i
);
5047 wxDataViewColumn
*wxDataViewCtrl::GetSortingColumn() const
5049 return m_sortingColumnIdx
== wxNOT_FOUND
? NULL
5050 : GetColumn(m_sortingColumnIdx
);
5053 wxDataViewItem
wxDataViewCtrl::DoGetCurrentItem() const
5055 return GetItemByRow(m_clientArea
->GetCurrentRow());
5058 void wxDataViewCtrl::DoSetCurrentItem(const wxDataViewItem
& item
)
5060 const int row
= m_clientArea
->GetRowByItem(item
);
5062 const unsigned oldCurrent
= m_clientArea
->GetCurrentRow();
5063 if ( static_cast<unsigned>(row
) != oldCurrent
)
5065 m_clientArea
->ChangeCurrentRow(row
);
5066 m_clientArea
->RefreshRow(oldCurrent
);
5067 m_clientArea
->RefreshRow(row
);
5071 wxDataViewColumn
*wxDataViewCtrl::GetCurrentColumn() const
5073 return m_clientArea
->GetCurrentColumn();
5076 int wxDataViewCtrl::GetSelectedItemsCount() const
5078 return m_clientArea
->GetSelections().size();
5081 int wxDataViewCtrl::GetSelections( wxDataViewItemArray
& sel
) const
5084 const wxDataViewSelection
& selections
= m_clientArea
->GetSelections();
5086 const size_t len
= selections
.size();
5087 for ( size_t i
= 0; i
< len
; i
++ )
5089 wxDataViewItem item
= m_clientArea
->GetItemByRow(selections
[i
]);
5096 wxFAIL_MSG( "invalid item in selection - bad internal state" );
5103 void wxDataViewCtrl::SetSelections( const wxDataViewItemArray
& sel
)
5105 wxDataViewSelection
selection(wxDataViewSelectionCmp
);
5107 wxDataViewItem last_parent
;
5109 int len
= sel
.GetCount();
5110 for( int i
= 0; i
< len
; i
++ )
5112 wxDataViewItem item
= sel
[i
];
5113 wxDataViewItem parent
= GetModel()->GetParent( item
);
5116 if (parent
!= last_parent
)
5117 ExpandAncestors(item
);
5120 last_parent
= parent
;
5121 int row
= m_clientArea
->GetRowByItem( item
);
5123 selection
.Add( static_cast<unsigned int>(row
) );
5126 m_clientArea
->SetSelections( selection
);
5129 void wxDataViewCtrl::Select( const wxDataViewItem
& item
)
5131 ExpandAncestors( item
);
5133 int row
= m_clientArea
->GetRowByItem( item
);
5136 // Unselect all rows before select another in the single select mode
5137 if (m_clientArea
->IsSingleSel())
5138 m_clientArea
->SelectAllRows(false);
5140 m_clientArea
->SelectRow(row
, true);
5142 // Also set focus to the selected item
5143 m_clientArea
->ChangeCurrentRow( row
);
5147 void wxDataViewCtrl::Unselect( const wxDataViewItem
& item
)
5149 int row
= m_clientArea
->GetRowByItem( item
);
5151 m_clientArea
->SelectRow(row
, false);
5154 bool wxDataViewCtrl::IsSelected( const wxDataViewItem
& item
) const
5156 int row
= m_clientArea
->GetRowByItem( item
);
5159 return m_clientArea
->IsRowSelected(row
);
5164 void wxDataViewCtrl::SetAlternateRowColour(const wxColour
& colour
)
5166 m_alternateRowColour
= colour
;
5169 void wxDataViewCtrl::SelectAll()
5171 m_clientArea
->SelectAllRows(true);
5174 void wxDataViewCtrl::UnselectAll()
5176 m_clientArea
->SelectAllRows(false);
5179 void wxDataViewCtrl::EnsureVisible( int row
, int column
)
5183 if( row
> (int) m_clientArea
->GetRowCount() )
5184 row
= m_clientArea
->GetRowCount();
5186 int first
= m_clientArea
->GetFirstVisibleRow();
5187 int last
= m_clientArea
->GetLastVisibleRow();
5189 m_clientArea
->ScrollTo( row
, column
);
5190 else if( row
> last
)
5191 m_clientArea
->ScrollTo( row
- last
+ first
, column
);
5193 m_clientArea
->ScrollTo( first
, column
);
5196 void wxDataViewCtrl::EnsureVisible( const wxDataViewItem
& item
, const wxDataViewColumn
* column
)
5198 ExpandAncestors( item
);
5200 m_clientArea
->RecalculateDisplay();
5202 int row
= m_clientArea
->GetRowByItem(item
);
5205 if( column
== NULL
)
5206 EnsureVisible(row
, -1);
5208 EnsureVisible( row
, GetColumnIndex(column
) );
5213 void wxDataViewCtrl::HitTest( const wxPoint
& point
, wxDataViewItem
& item
,
5214 wxDataViewColumn
* &column
) const
5216 m_clientArea
->HitTest(point
, item
, column
);
5219 wxRect
wxDataViewCtrl::GetItemRect( const wxDataViewItem
& item
,
5220 const wxDataViewColumn
* column
) const
5222 return m_clientArea
->GetItemRect(item
, column
);
5225 wxDataViewItem
wxDataViewCtrl::GetItemByRow( unsigned int row
) const
5227 return m_clientArea
->GetItemByRow( row
);
5230 int wxDataViewCtrl::GetRowByItem( const wxDataViewItem
& item
) const
5232 return m_clientArea
->GetRowByItem( item
);
5235 void wxDataViewCtrl::Expand( const wxDataViewItem
& item
)
5237 ExpandAncestors( item
);
5239 int row
= m_clientArea
->GetRowByItem( item
);
5242 m_clientArea
->Expand(row
);
5243 InvalidateColBestWidths();
5247 void wxDataViewCtrl::Collapse( const wxDataViewItem
& item
)
5249 int row
= m_clientArea
->GetRowByItem( item
);
5252 m_clientArea
->Collapse(row
);
5253 InvalidateColBestWidths();
5257 bool wxDataViewCtrl::IsExpanded( const wxDataViewItem
& item
) const
5259 int row
= m_clientArea
->GetRowByItem( item
);
5261 return m_clientArea
->IsExpanded(row
);
5265 void wxDataViewCtrl::EditItem(const wxDataViewItem
& item
, const wxDataViewColumn
*column
)
5267 wxCHECK_RET( item
.IsOk(), "invalid item" );
5268 wxCHECK_RET( column
, "no column provided" );
5270 m_clientArea
->StartEditing(item
, column
);
5273 #endif // !wxUSE_GENERICDATAVIEWCTRL
5275 #endif // wxUSE_DATAVIEWCTRL