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
;
83 static int g_column
= -2;
84 static bool g_asending
= true;
86 // ----------------------------------------------------------------------------
88 // ----------------------------------------------------------------------------
93 // Return the expander column or, if it is not set, the first column and also
94 // set it as the expander one for the future.
95 wxDataViewColumn
* GetExpanderColumnOrFirstOne(wxDataViewCtrl
* dataview
)
97 wxDataViewColumn
* expander
= dataview
->GetExpanderColumn();
100 // TODO-RTL: last column for RTL support
101 expander
= dataview
->GetColumnAt( 0 );
102 dataview
->SetExpanderColumn(expander
);
108 } // anonymous namespace
110 //-----------------------------------------------------------------------------
112 //-----------------------------------------------------------------------------
114 void wxDataViewColumn::Init(int width
, wxAlignment align
, int flags
)
121 m_sortAscending
= true;
124 int wxDataViewColumn::GetWidth() const
128 case wxCOL_WIDTH_DEFAULT
:
129 return wxDVC_DEFAULT_WIDTH
;
131 case wxCOL_WIDTH_AUTOSIZE
:
132 wxCHECK_MSG( m_owner
, wxDVC_DEFAULT_WIDTH
, "no owner control" );
133 return m_owner
->GetBestColumnWidth(m_owner
->GetColumnIndex(this));
140 void wxDataViewColumn::UpdateDisplay()
144 int idx
= m_owner
->GetColumnIndex( this );
145 m_owner
->OnColumnChange( idx
);
149 void wxDataViewColumn::SetSortOrder(bool ascending
)
154 // First unset the old sort column if any.
155 int oldSortKey
= m_owner
->GetSortingColumnIndex();
156 if ( oldSortKey
!= wxNOT_FOUND
)
158 m_owner
->GetColumn(oldSortKey
)->UnsetAsSortKey();
161 // Now set this one as the new sort column.
162 const int idx
= m_owner
->GetColumnIndex(this);
163 m_owner
->SetSortingColumnIndex(idx
);
166 m_sortAscending
= ascending
;
168 // Call this directly instead of using UpdateDisplay() as we already have
169 // the column index, no need to look it up again.
170 m_owner
->OnColumnChange(idx
);
173 //-----------------------------------------------------------------------------
174 // wxDataViewHeaderWindow
175 //-----------------------------------------------------------------------------
177 class wxDataViewHeaderWindow
: public wxHeaderCtrl
180 wxDataViewHeaderWindow(wxDataViewCtrl
*parent
)
181 : wxHeaderCtrl(parent
)
185 wxDataViewCtrl
*GetOwner() const
186 { return static_cast<wxDataViewCtrl
*>(GetParent()); }
189 // implement/override wxHeaderCtrl functions by forwarding them to the main
191 virtual const wxHeaderColumn
& GetColumn(unsigned int idx
) const
193 return *(GetOwner()->GetColumn(idx
));
196 virtual bool UpdateColumnWidthToFit(unsigned int idx
, int widthTitle
)
198 wxDataViewCtrl
* const owner
= GetOwner();
200 int widthContents
= owner
->GetBestColumnWidth(idx
);
201 owner
->GetColumn(idx
)->SetWidth(wxMax(widthTitle
, widthContents
));
202 owner
->OnColumnChange(idx
);
208 bool SendEvent(wxEventType type
, unsigned int n
)
210 wxDataViewCtrl
* const owner
= GetOwner();
211 wxDataViewEvent
event(type
, owner
->GetId());
213 event
.SetEventObject(owner
);
215 event
.SetDataViewColumn(owner
->GetColumn(n
));
216 event
.SetModel(owner
->GetModel());
218 // for events created by wxDataViewHeaderWindow the
219 // row / value fields are not valid
220 return owner
->ProcessWindowEvent(event
);
223 void OnClick(wxHeaderCtrlEvent
& event
)
225 const unsigned idx
= event
.GetColumn();
227 if ( SendEvent(wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICK
, idx
) )
230 // default handling for the column click is to sort by this column or
231 // toggle its sort order
232 wxDataViewCtrl
* const owner
= GetOwner();
233 wxDataViewColumn
* const col
= owner
->GetColumn(idx
);
234 if ( !col
->IsSortable() )
236 // no default handling for non-sortable columns
241 if ( col
->IsSortKey() )
243 // already using this column for sorting, just change the order
244 col
->ToggleSortOrder();
246 else // not using this column for sorting yet
248 col
->SetSortOrder(true);
251 wxDataViewModel
* const model
= owner
->GetModel();
255 owner
->OnColumnChange(idx
);
257 SendEvent(wxEVT_COMMAND_DATAVIEW_COLUMN_SORTED
, idx
);
260 void OnRClick(wxHeaderCtrlEvent
& event
)
262 if ( !SendEvent(wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK
,
267 void OnResize(wxHeaderCtrlEvent
& event
)
269 wxDataViewCtrl
* const owner
= GetOwner();
271 const unsigned col
= event
.GetColumn();
272 owner
->GetColumn(col
)->SetWidth(event
.GetWidth());
273 GetOwner()->OnColumnChange(col
);
276 void OnEndReorder(wxHeaderCtrlEvent
& event
)
278 wxDataViewCtrl
* const owner
= GetOwner();
279 owner
->ColumnMoved(owner
->GetColumn(event
.GetColumn()),
280 event
.GetNewOrder());
283 DECLARE_EVENT_TABLE()
284 wxDECLARE_NO_COPY_CLASS(wxDataViewHeaderWindow
);
287 BEGIN_EVENT_TABLE(wxDataViewHeaderWindow
, wxHeaderCtrl
)
288 EVT_HEADER_CLICK(wxID_ANY
, wxDataViewHeaderWindow::OnClick
)
289 EVT_HEADER_RIGHT_CLICK(wxID_ANY
, wxDataViewHeaderWindow::OnRClick
)
291 EVT_HEADER_RESIZING(wxID_ANY
, wxDataViewHeaderWindow::OnResize
)
292 EVT_HEADER_END_RESIZE(wxID_ANY
, wxDataViewHeaderWindow::OnResize
)
294 EVT_HEADER_END_REORDER(wxID_ANY
, wxDataViewHeaderWindow::OnEndReorder
)
297 //-----------------------------------------------------------------------------
298 // wxDataViewRenameTimer
299 //-----------------------------------------------------------------------------
301 class wxDataViewRenameTimer
: public wxTimer
304 wxDataViewMainWindow
*m_owner
;
307 wxDataViewRenameTimer( wxDataViewMainWindow
*owner
);
311 //-----------------------------------------------------------------------------
312 // wxDataViewTreeNode
313 //-----------------------------------------------------------------------------
315 class wxDataViewTreeNode
;
316 WX_DEFINE_ARRAY( wxDataViewTreeNode
*, wxDataViewTreeNodes
);
318 int LINKAGEMODE
wxGenericTreeModelNodeCmp( wxDataViewTreeNode
** node1
,
319 wxDataViewTreeNode
** node2
);
321 class wxDataViewTreeNode
324 wxDataViewTreeNode(wxDataViewTreeNode
*parent
, const wxDataViewItem
& item
)
331 ~wxDataViewTreeNode()
335 wxDataViewTreeNodes
& nodes
= m_branchData
->children
;
336 for ( wxDataViewTreeNodes::iterator i
= nodes
.begin();
347 static wxDataViewTreeNode
* CreateRootNode()
349 wxDataViewTreeNode
*n
= new wxDataViewTreeNode(NULL
, wxDataViewItem());
350 n
->SetHasChildren(true);
351 n
->m_branchData
->open
= true;
355 wxDataViewTreeNode
* GetParent() const { return m_parent
; }
357 const wxDataViewTreeNodes
& GetChildNodes() const
359 wxASSERT( m_branchData
!= NULL
);
360 return m_branchData
->children
;
363 void InsertChild(wxDataViewTreeNode
*node
, unsigned index
)
366 m_branchData
= new BranchNodeData
;
368 m_branchData
->children
.Insert(node
, index
);
370 // TODO: insert into sorted array directly in O(log n) instead of resorting in O(n log n)
372 m_branchData
->children
.Sort( &wxGenericTreeModelNodeCmp
);
375 void RemoveChild(wxDataViewTreeNode
*node
)
377 wxCHECK_RET( m_branchData
!= NULL
, "leaf node doesn't have children" );
378 m_branchData
->children
.Remove(node
);
381 // returns position of child node for given item in children list or wxNOT_FOUND
382 int FindChildByItem(const wxDataViewItem
& item
) const
387 const wxDataViewTreeNodes
& nodes
= m_branchData
->children
;
388 const int len
= nodes
.size();
389 for ( int i
= 0; i
< len
; i
++ )
391 if ( nodes
[i
]->m_item
== item
)
397 const wxDataViewItem
& GetItem() const { return m_item
; }
398 void SetItem( const wxDataViewItem
& item
) { m_item
= item
; }
400 int GetIndentLevel() const
403 const wxDataViewTreeNode
* node
= this;
404 while( node
->GetParent()->GetParent() != NULL
)
406 node
= node
->GetParent();
414 return m_branchData
&& m_branchData
->open
;
419 wxCHECK_RET( m_branchData
!= NULL
, "can't open leaf node" );
423 const wxDataViewTreeNodes
& nodes
= m_branchData
->children
;
424 const int len
= nodes
.GetCount();
425 for ( int i
= 0;i
< len
; i
++)
426 sum
+= 1 + nodes
[i
]->GetSubTreeCount();
428 if (m_branchData
->open
)
430 ChangeSubTreeCount(-sum
);
431 m_branchData
->open
= !m_branchData
->open
;
435 m_branchData
->open
= !m_branchData
->open
;
436 ChangeSubTreeCount(+sum
);
440 // "HasChildren" property corresponds to model's IsContainer(). Note that it may be true
441 // even if GetChildNodes() is empty; see below.
442 bool HasChildren() const
444 return m_branchData
!= NULL
;
447 void SetHasChildren(bool has
)
451 wxDELETE(m_branchData
);
453 else if ( m_branchData
== NULL
)
455 m_branchData
= new BranchNodeData
;
459 int GetSubTreeCount() const
461 return m_branchData
? m_branchData
->subTreeCount
: 0;
464 void ChangeSubTreeCount( int num
)
466 wxASSERT( m_branchData
!= NULL
);
468 if( !m_branchData
->open
)
471 m_branchData
->subTreeCount
+= num
;
472 wxASSERT( m_branchData
->subTreeCount
>= 0 );
475 m_parent
->ChangeSubTreeCount(num
);
485 wxDataViewTreeNodes
& nodes
= m_branchData
->children
;
487 nodes
.Sort( &wxGenericTreeModelNodeCmp
);
488 int len
= nodes
.GetCount();
489 for (int i
= 0; i
< len
; i
++)
491 if ( nodes
[i
]->HasChildren() )
499 wxDataViewTreeNode
*m_parent
;
501 // Corresponding model item.
502 wxDataViewItem m_item
;
504 // Data specific to non-leaf (branch, inner) nodes. They are kept in a
505 // separate struct in order to conserve memory.
506 struct BranchNodeData
514 // Child nodes. Note that this may be empty even if m_hasChildren in
515 // case this branch of the tree wasn't expanded and realized yet.
516 wxDataViewTreeNodes children
;
518 // Is the branch node currently open (expanded)?
521 // Total count of expanded (i.e. visible with the help of some
522 // scrolling) items in the subtree, but excluding this node. I.e. it is
523 // 0 for leaves and is the number of rows the subtree occupies for
528 BranchNodeData
*m_branchData
;
532 int LINKAGEMODE
wxGenericTreeModelNodeCmp( wxDataViewTreeNode
** node1
,
533 wxDataViewTreeNode
** node2
)
535 return g_model
->Compare( (*node1
)->GetItem(), (*node2
)->GetItem(), g_column
, g_asending
);
539 //-----------------------------------------------------------------------------
540 // wxDataViewMainWindow
541 //-----------------------------------------------------------------------------
543 WX_DEFINE_SORTED_ARRAY_SIZE_T(unsigned int, wxDataViewSelection
);
545 class wxDataViewMainWindow
: public wxWindow
548 wxDataViewMainWindow( wxDataViewCtrl
*parent
,
550 const wxPoint
&pos
= wxDefaultPosition
,
551 const wxSize
&size
= wxDefaultSize
,
552 const wxString
&name
= wxT("wxdataviewctrlmainwindow") );
553 virtual ~wxDataViewMainWindow();
555 bool IsList() const { return GetModel()->IsListModel(); }
556 bool IsVirtualList() const { return m_root
== NULL
; }
558 // notifications from wxDataViewModel
559 bool ItemAdded( const wxDataViewItem
&parent
, const wxDataViewItem
&item
);
560 bool ItemDeleted( const wxDataViewItem
&parent
, const wxDataViewItem
&item
);
561 bool ItemChanged( const wxDataViewItem
&item
);
562 bool ValueChanged( const wxDataViewItem
&item
, unsigned int model_column
);
566 if (!IsVirtualList())
576 g_model
= GetModel();
577 wxDataViewColumn
* col
= GetOwner()->GetSortingColumn();
580 if (g_model
->HasDefaultCompare())
588 g_column
= col
->GetModelColumn();
589 g_asending
= col
->IsSortOrderAscending();
592 void SetOwner( wxDataViewCtrl
* owner
) { m_owner
= owner
; }
593 wxDataViewCtrl
*GetOwner() { return m_owner
; }
594 const wxDataViewCtrl
*GetOwner() const { return m_owner
; }
596 wxDataViewModel
* GetModel() { return GetOwner()->GetModel(); }
597 const wxDataViewModel
* GetModel() const { return GetOwner()->GetModel(); }
599 #if wxUSE_DRAG_AND_DROP
600 wxBitmap
CreateItemBitmap( unsigned int row
, int &indent
);
601 #endif // wxUSE_DRAG_AND_DROP
602 void OnPaint( wxPaintEvent
&event
);
603 void OnCharHook( wxKeyEvent
&event
);
604 void OnChar( wxKeyEvent
&event
);
605 void OnVerticalNavigation(unsigned int newCurrent
, const wxKeyEvent
& event
);
608 void OnMouse( wxMouseEvent
&event
);
609 void OnSetFocus( wxFocusEvent
&event
);
610 void OnKillFocus( wxFocusEvent
&event
);
612 void UpdateDisplay();
613 void RecalculateDisplay();
614 void OnInternalIdle();
616 void OnRenameTimer();
618 void ScrollWindow( int dx
, int dy
, const wxRect
*rect
= NULL
);
619 void ScrollTo( int rows
, int column
);
621 unsigned GetCurrentRow() const { return m_currentRow
; }
622 bool HasCurrentRow() { return m_currentRow
!= (unsigned int)-1; }
623 void ChangeCurrentRow( unsigned int row
);
624 bool TryAdvanceCurrentColumn(wxDataViewTreeNode
*node
, bool forward
);
626 wxDataViewColumn
*GetCurrentColumn() const { return m_currentCol
; }
627 void ClearCurrentColumn() { m_currentCol
= NULL
; }
629 bool IsSingleSel() const { return !GetParent()->HasFlag(wxDV_MULTIPLE
); }
630 bool IsEmpty() { return GetRowCount() == 0; }
632 int GetCountPerPage() const;
633 int GetEndOfLastCol() const;
634 unsigned int GetFirstVisibleRow() const;
636 // I change this method to un const because in the tree view,
637 // the displaying number of the tree are changing along with the
638 // expanding/collapsing of the tree nodes
639 unsigned int GetLastVisibleRow();
640 unsigned int GetRowCount() const;
642 const wxDataViewSelection
& GetSelections() const { return m_selection
; }
643 void SetSelections( const wxDataViewSelection
& sel
)
644 { m_selection
= sel
; UpdateDisplay(); }
645 void Select( const wxArrayInt
& aSelections
);
646 void SelectAllRows( bool on
);
647 void SelectRow( unsigned int row
, bool on
);
648 void SelectRows( unsigned int from
, unsigned int to
, bool on
);
649 void ReverseRowSelection( unsigned int row
);
650 bool IsRowSelected( unsigned int row
);
651 void SendSelectionChangedEvent( const wxDataViewItem
& item
);
653 void RefreshRow( unsigned int row
);
654 void RefreshRows( unsigned int from
, unsigned int to
);
655 void RefreshRowsAfter( unsigned int firstRow
);
657 // returns the colour to be used for drawing the rules
658 wxColour
GetRuleColour() const
660 return wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
);
663 wxRect
GetLineRect( unsigned int row
) const;
665 int GetLineStart( unsigned int row
) const; // row * m_lineHeight in fixed mode
666 int GetLineHeight( unsigned int row
) const; // m_lineHeight in fixed mode
667 int GetLineAt( unsigned int y
) const; // y / m_lineHeight in fixed mode
669 void SetRowHeight( int lineHeight
) { m_lineHeight
= lineHeight
; }
670 int GetRowHeight() const { return m_lineHeight
; }
672 // Some useful functions for row and item mapping
673 wxDataViewItem
GetItemByRow( unsigned int row
) const;
674 int GetRowByItem( const wxDataViewItem
& item
) const;
676 wxDataViewTreeNode
* GetTreeNodeByRow( unsigned int row
) const;
677 // We did not need this temporarily
678 // wxDataViewTreeNode * GetTreeNodeByItem( const wxDataViewItem & item );
680 // Methods for building the mapping tree
681 void BuildTree( wxDataViewModel
* model
);
683 void HitTest( const wxPoint
& point
, wxDataViewItem
& item
, wxDataViewColumn
* &column
);
684 wxRect
GetItemRect( const wxDataViewItem
& item
, const wxDataViewColumn
* column
);
686 void Expand( unsigned int row
);
687 void Collapse( unsigned int row
);
688 bool IsExpanded( unsigned int row
) const;
689 bool HasChildren( unsigned int row
) const;
691 #if wxUSE_DRAG_AND_DROP
692 bool EnableDragSource( const wxDataFormat
&format
);
693 bool EnableDropTarget( const wxDataFormat
&format
);
695 void RemoveDropHint();
696 wxDragResult
OnDragOver( wxDataFormat format
, wxCoord x
, wxCoord y
, wxDragResult def
);
697 bool OnDrop( wxDataFormat format
, wxCoord x
, wxCoord y
);
698 wxDragResult
OnData( wxDataFormat format
, wxCoord x
, wxCoord y
, wxDragResult def
);
700 #endif // wxUSE_DRAG_AND_DROP
702 void OnColumnsCountChanged();
704 // Called by wxDataViewCtrl and our own OnRenameTimer() to start edit the
705 // specified item in the given column.
706 void StartEditing(const wxDataViewItem
& item
, const wxDataViewColumn
* col
);
709 int RecalculateCount() const;
711 // Return false only if the event was vetoed by its handler.
712 bool SendExpanderEvent(wxEventType type
, const wxDataViewItem
& item
);
714 wxDataViewTreeNode
* FindNode( const wxDataViewItem
& item
);
716 wxDataViewColumn
*FindColumnForEditing(const wxDataViewItem
& item
, wxDataViewCellMode mode
);
718 bool IsCellEditableInMode(const wxDataViewItem
& item
, const wxDataViewColumn
*col
, wxDataViewCellMode mode
) const;
720 void DrawCellBackground( wxDataViewRenderer
* cell
, wxDC
& dc
, const wxRect
& rect
);
723 wxDataViewCtrl
*m_owner
;
727 wxDataViewColumn
*m_currentCol
;
728 unsigned int m_currentRow
;
729 wxDataViewSelection m_selection
;
731 wxDataViewRenameTimer
*m_renameTimer
;
736 bool m_currentColSetByKeyboard
;
738 #if wxUSE_DRAG_AND_DROP
743 wxDataFormat m_dragFormat
;
746 wxDataFormat m_dropFormat
;
748 unsigned int m_dropHintLine
;
749 #endif // wxUSE_DRAG_AND_DROP
751 // for double click logic
752 unsigned int m_lineLastClicked
,
753 m_lineBeforeLastClicked
,
754 m_lineSelectSingleOnUp
;
756 // the pen used to draw horiz/vertical rules
759 // the pen used to draw the expander and the lines
762 // This is the tree structure of the model
763 wxDataViewTreeNode
* m_root
;
766 // This is the tree node under the cursor
767 wxDataViewTreeNode
* m_underMouse
;
769 // The control used for editing or NULL.
770 wxWeakRef
<wxWindow
> m_editorCtrl
;
772 // Id m_editorCtrl is non-NULL, pointer to the associated renderer.
773 wxDataViewRenderer
* m_editorRenderer
;
776 DECLARE_DYNAMIC_CLASS(wxDataViewMainWindow
)
777 DECLARE_EVENT_TABLE()
780 // ---------------------------------------------------------
781 // wxGenericDataViewModelNotifier
782 // ---------------------------------------------------------
784 class wxGenericDataViewModelNotifier
: public wxDataViewModelNotifier
787 wxGenericDataViewModelNotifier( wxDataViewMainWindow
*mainWindow
)
788 { m_mainWindow
= mainWindow
; }
790 virtual bool ItemAdded( const wxDataViewItem
& parent
, const wxDataViewItem
& item
)
791 { return m_mainWindow
->ItemAdded( parent
, item
); }
792 virtual bool ItemDeleted( const wxDataViewItem
&parent
, const wxDataViewItem
&item
)
793 { return m_mainWindow
->ItemDeleted( parent
, item
); }
794 virtual bool ItemChanged( const wxDataViewItem
& item
)
795 { return m_mainWindow
->ItemChanged(item
); }
796 virtual bool ValueChanged( const wxDataViewItem
& item
, unsigned int col
)
797 { return m_mainWindow
->ValueChanged( item
, col
); }
798 virtual bool Cleared()
799 { return m_mainWindow
->Cleared(); }
800 virtual void Resort()
801 { m_mainWindow
->Resort(); }
803 wxDataViewMainWindow
*m_mainWindow
;
806 // ---------------------------------------------------------
807 // wxDataViewRenderer
808 // ---------------------------------------------------------
810 IMPLEMENT_ABSTRACT_CLASS(wxDataViewRenderer
, wxDataViewRendererBase
)
812 wxDataViewRenderer::wxDataViewRenderer( const wxString
&varianttype
,
813 wxDataViewCellMode mode
,
815 wxDataViewCustomRendererBase( varianttype
, mode
, align
)
819 m_ellipsizeMode
= wxELLIPSIZE_MIDDLE
;
823 wxDataViewRenderer::~wxDataViewRenderer()
828 wxDC
*wxDataViewRenderer::GetDC()
832 if (GetOwner() == NULL
)
834 if (GetOwner()->GetOwner() == NULL
)
836 m_dc
= new wxClientDC( GetOwner()->GetOwner() );
842 void wxDataViewRenderer::SetAlignment( int align
)
847 int wxDataViewRenderer::GetAlignment() const
852 // ---------------------------------------------------------
853 // wxDataViewCustomRenderer
854 // ---------------------------------------------------------
856 IMPLEMENT_ABSTRACT_CLASS(wxDataViewCustomRenderer
, wxDataViewRenderer
)
858 wxDataViewCustomRenderer::wxDataViewCustomRenderer( const wxString
&varianttype
,
859 wxDataViewCellMode mode
, int align
) :
860 wxDataViewRenderer( varianttype
, mode
, align
)
864 // ---------------------------------------------------------
865 // wxDataViewTextRenderer
866 // ---------------------------------------------------------
868 IMPLEMENT_CLASS(wxDataViewTextRenderer
, wxDataViewRenderer
)
870 wxDataViewTextRenderer::wxDataViewTextRenderer( const wxString
&varianttype
,
871 wxDataViewCellMode mode
, int align
) :
872 wxDataViewRenderer( varianttype
, mode
, align
)
876 bool wxDataViewTextRenderer::SetValue( const wxVariant
&value
)
878 m_text
= value
.GetString();
883 bool wxDataViewTextRenderer::GetValue( wxVariant
& WXUNUSED(value
) ) const
888 bool wxDataViewTextRenderer::HasEditorCtrl() const
893 wxWindow
* wxDataViewTextRenderer::CreateEditorCtrl( wxWindow
*parent
,
894 wxRect labelRect
, const wxVariant
&value
)
896 wxTextCtrl
* ctrl
= new wxTextCtrl( parent
, wxID_ANY
, value
,
897 wxPoint(labelRect
.x
,labelRect
.y
),
898 wxSize(labelRect
.width
,labelRect
.height
),
899 wxTE_PROCESS_ENTER
);
901 // select the text in the control an place the cursor at the end
902 ctrl
->SetInsertionPointEnd();
908 bool wxDataViewTextRenderer::GetValueFromEditorCtrl( wxWindow
*editor
, wxVariant
&value
)
910 wxTextCtrl
*text
= (wxTextCtrl
*) editor
;
911 value
= text
->GetValue();
915 bool wxDataViewTextRenderer::Render(wxRect rect
, wxDC
*dc
, int state
)
917 RenderText(m_text
, 0, rect
, dc
, state
);
921 wxSize
wxDataViewTextRenderer::GetSize() const
924 return GetTextExtent(m_text
);
926 return wxSize(wxDVC_DEFAULT_RENDERER_SIZE
,wxDVC_DEFAULT_RENDERER_SIZE
);
929 // ---------------------------------------------------------
930 // wxDataViewBitmapRenderer
931 // ---------------------------------------------------------
933 IMPLEMENT_CLASS(wxDataViewBitmapRenderer
, wxDataViewRenderer
)
935 wxDataViewBitmapRenderer::wxDataViewBitmapRenderer( const wxString
&varianttype
,
936 wxDataViewCellMode mode
, int align
) :
937 wxDataViewRenderer( varianttype
, mode
, align
)
941 bool wxDataViewBitmapRenderer::SetValue( const wxVariant
&value
)
943 if (value
.GetType() == wxT("wxBitmap"))
945 if (value
.GetType() == wxT("wxIcon"))
951 bool wxDataViewBitmapRenderer::GetValue( wxVariant
& WXUNUSED(value
) ) const
956 bool wxDataViewBitmapRenderer::Render( wxRect cell
, wxDC
*dc
, int WXUNUSED(state
) )
959 dc
->DrawBitmap( m_bitmap
, cell
.x
, cell
.y
);
960 else if (m_icon
.IsOk())
961 dc
->DrawIcon( m_icon
, cell
.x
, cell
.y
);
966 wxSize
wxDataViewBitmapRenderer::GetSize() const
969 return wxSize( m_bitmap
.GetWidth(), m_bitmap
.GetHeight() );
970 else if (m_icon
.IsOk())
971 return wxSize( m_icon
.GetWidth(), m_icon
.GetHeight() );
973 return wxSize(wxDVC_DEFAULT_RENDERER_SIZE
,wxDVC_DEFAULT_RENDERER_SIZE
);
976 // ---------------------------------------------------------
977 // wxDataViewToggleRenderer
978 // ---------------------------------------------------------
980 IMPLEMENT_ABSTRACT_CLASS(wxDataViewToggleRenderer
, wxDataViewRenderer
)
982 wxDataViewToggleRenderer::wxDataViewToggleRenderer( const wxString
&varianttype
,
983 wxDataViewCellMode mode
, int align
) :
984 wxDataViewRenderer( varianttype
, mode
, align
)
989 bool wxDataViewToggleRenderer::SetValue( const wxVariant
&value
)
991 m_toggle
= value
.GetBool();
996 bool wxDataViewToggleRenderer::GetValue( wxVariant
&WXUNUSED(value
) ) const
1001 bool wxDataViewToggleRenderer::Render( wxRect cell
, wxDC
*dc
, int WXUNUSED(state
) )
1005 flags
|= wxCONTROL_CHECKED
;
1006 if (GetMode() != wxDATAVIEW_CELL_ACTIVATABLE
||
1007 GetEnabled() == false)
1008 flags
|= wxCONTROL_DISABLED
;
1010 // check boxes we draw must always have the same, standard size (if it's
1011 // bigger than the cell size the checkbox will be truncated because the
1012 // caller had set the clipping rectangle to prevent us from drawing outside
1014 cell
.SetSize(GetSize());
1016 wxRendererNative::Get().DrawCheckBox(
1017 GetOwner()->GetOwner(),
1025 bool wxDataViewToggleRenderer::WXActivateCell(const wxRect
& WXUNUSED(cell
),
1026 wxDataViewModel
*model
,
1027 const wxDataViewItem
& item
,
1029 const wxMouseEvent
*mouseEvent
)
1033 // only react to clicks directly on the checkbox, not elsewhere in the same cell:
1034 if ( !wxRect(GetSize()).Contains(mouseEvent
->GetPosition()) )
1038 model
->ChangeValue(!m_toggle
, item
, col
);
1042 wxSize
wxDataViewToggleRenderer::GetSize() const
1044 // the window parameter is not used by GetCheckBoxSize() so it's
1045 // safe to pass NULL
1046 return wxRendererNative::Get().GetCheckBoxSize(NULL
);
1049 // ---------------------------------------------------------
1050 // wxDataViewProgressRenderer
1051 // ---------------------------------------------------------
1053 IMPLEMENT_ABSTRACT_CLASS(wxDataViewProgressRenderer
, wxDataViewRenderer
)
1055 wxDataViewProgressRenderer::wxDataViewProgressRenderer( const wxString
&label
,
1056 const wxString
&varianttype
, wxDataViewCellMode mode
, int align
) :
1057 wxDataViewRenderer( varianttype
, mode
, align
)
1063 bool wxDataViewProgressRenderer::SetValue( const wxVariant
&value
)
1065 m_value
= (long) value
;
1067 if (m_value
< 0) m_value
= 0;
1068 if (m_value
> 100) m_value
= 100;
1073 bool wxDataViewProgressRenderer::GetValue( wxVariant
&value
) const
1075 value
= (long) m_value
;
1080 wxDataViewProgressRenderer::Render(wxRect rect
, wxDC
*dc
, int WXUNUSED(state
))
1082 // deflate the rect to leave a small border between bars in adjacent rows
1083 wxRect bar
= rect
.Deflate(0, 1);
1085 dc
->SetBrush( *wxTRANSPARENT_BRUSH
);
1086 dc
->SetPen( *wxBLACK_PEN
);
1087 dc
->DrawRectangle( bar
);
1089 bar
.width
= (int)(bar
.width
* m_value
/ 100.);
1090 dc
->SetPen( *wxTRANSPARENT_PEN
);
1092 const wxDataViewItemAttr
& attr
= GetAttr();
1093 dc
->SetBrush( attr
.HasColour() ? wxBrush(attr
.GetColour())
1095 dc
->DrawRectangle( bar
);
1100 wxSize
wxDataViewProgressRenderer::GetSize() const
1102 return wxSize(40,12);
1105 // ---------------------------------------------------------
1106 // wxDataViewIconTextRenderer
1107 // ---------------------------------------------------------
1109 IMPLEMENT_CLASS(wxDataViewIconTextRenderer
, wxDataViewRenderer
)
1111 wxDataViewIconTextRenderer::wxDataViewIconTextRenderer(
1112 const wxString
&varianttype
, wxDataViewCellMode mode
, int align
) :
1113 wxDataViewRenderer( varianttype
, mode
, align
)
1116 SetAlignment(align
);
1119 bool wxDataViewIconTextRenderer::SetValue( const wxVariant
&value
)
1125 bool wxDataViewIconTextRenderer::GetValue( wxVariant
& WXUNUSED(value
) ) const
1130 bool wxDataViewIconTextRenderer::Render(wxRect rect
, wxDC
*dc
, int state
)
1134 const wxIcon
& icon
= m_value
.GetIcon();
1137 dc
->DrawIcon(icon
, rect
.x
, rect
.y
+ (rect
.height
- icon
.GetHeight())/2);
1138 xoffset
= icon
.GetWidth()+4;
1141 RenderText(m_value
.GetText(), xoffset
, rect
, dc
, state
);
1146 wxSize
wxDataViewIconTextRenderer::GetSize() const
1148 if (!m_value
.GetText().empty())
1150 wxSize size
= GetTextExtent(m_value
.GetText());
1152 if (m_value
.GetIcon().IsOk())
1153 size
.x
+= m_value
.GetIcon().GetWidth() + 4;
1156 return wxSize(80,20);
1159 wxWindow
* wxDataViewIconTextRenderer::CreateEditorCtrl(wxWindow
*parent
, wxRect labelRect
, const wxVariant
& value
)
1161 wxDataViewIconText iconText
;
1164 wxString text
= iconText
.GetText();
1166 // adjust the label rect to take the width of the icon into account
1167 if (iconText
.GetIcon().IsOk())
1169 int w
= iconText
.GetIcon().GetWidth() + 4;
1171 labelRect
.width
-= w
;
1174 wxTextCtrl
* ctrl
= new wxTextCtrl( parent
, wxID_ANY
, text
,
1175 wxPoint(labelRect
.x
,labelRect
.y
),
1176 wxSize(labelRect
.width
,labelRect
.height
),
1177 wxTE_PROCESS_ENTER
);
1179 // select the text in the control an place the cursor at the end
1180 ctrl
->SetInsertionPointEnd();
1186 bool wxDataViewIconTextRenderer::GetValueFromEditorCtrl( wxWindow
*editor
, wxVariant
& value
)
1188 wxTextCtrl
*text
= (wxTextCtrl
*) editor
;
1190 // The icon can't be edited so get its old value and reuse it.
1192 wxDataViewColumn
* const col
= GetOwner();
1193 GetView()->GetModel()->GetValue(valueOld
, m_item
, col
->GetModelColumn());
1195 wxDataViewIconText iconText
;
1196 iconText
<< valueOld
;
1198 // But replace the text with the value entered by user.
1199 iconText
.SetText(text
->GetValue());
1205 //-----------------------------------------------------------------------------
1206 // wxDataViewDropTarget
1207 //-----------------------------------------------------------------------------
1209 #if wxUSE_DRAG_AND_DROP
1211 class wxBitmapCanvas
: public wxWindow
1214 wxBitmapCanvas( wxWindow
*parent
, const wxBitmap
&bitmap
, const wxSize
&size
) :
1215 wxWindow( parent
, wxID_ANY
, wxPoint(0,0), size
)
1218 Connect( wxEVT_PAINT
, wxPaintEventHandler(wxBitmapCanvas::OnPaint
) );
1221 void OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1224 dc
.DrawBitmap( m_bitmap
, 0, 0);
1230 class wxDataViewDropSource
: public wxDropSource
1233 wxDataViewDropSource( wxDataViewMainWindow
*win
, unsigned int row
) :
1241 ~wxDataViewDropSource()
1246 virtual bool GiveFeedback( wxDragResult
WXUNUSED(effect
) )
1248 wxPoint pos
= wxGetMousePosition();
1252 int liney
= m_win
->GetLineStart( m_row
);
1254 m_win
->GetOwner()->CalcUnscrolledPosition( 0, liney
, NULL
, &liney
);
1255 m_win
->ClientToScreen( &linex
, &liney
);
1256 m_dist_x
= pos
.x
- linex
;
1257 m_dist_y
= pos
.y
- liney
;
1260 wxBitmap ib
= m_win
->CreateItemBitmap( m_row
, indent
);
1262 m_hint
= new wxFrame( m_win
->GetParent(), wxID_ANY
, wxEmptyString
,
1263 wxPoint(pos
.x
- m_dist_x
, pos
.y
+ 5 ),
1265 wxFRAME_TOOL_WINDOW
|
1266 wxFRAME_FLOAT_ON_PARENT
|
1267 wxFRAME_NO_TASKBAR
|
1269 new wxBitmapCanvas( m_hint
, ib
, ib
.GetSize() );
1274 m_hint
->Move( pos
.x
- m_dist_x
, pos
.y
+ 5 );
1275 m_hint
->SetTransparent( 128 );
1281 wxDataViewMainWindow
*m_win
;
1284 int m_dist_x
,m_dist_y
;
1288 class wxDataViewDropTarget
: public wxDropTarget
1291 wxDataViewDropTarget( wxDataObject
*obj
, wxDataViewMainWindow
*win
) :
1297 virtual wxDragResult
OnDragOver( wxCoord x
, wxCoord y
, wxDragResult def
)
1299 wxDataFormat format
= GetMatchingPair();
1300 if (format
== wxDF_INVALID
)
1302 return m_win
->OnDragOver( format
, x
, y
, def
);
1305 virtual bool OnDrop( wxCoord x
, wxCoord y
)
1307 wxDataFormat format
= GetMatchingPair();
1308 if (format
== wxDF_INVALID
)
1310 return m_win
->OnDrop( format
, x
, y
);
1313 virtual wxDragResult
OnData( wxCoord x
, wxCoord y
, wxDragResult def
)
1315 wxDataFormat format
= GetMatchingPair();
1316 if (format
== wxDF_INVALID
)
1320 return m_win
->OnData( format
, x
, y
, def
);
1323 virtual void OnLeave()
1324 { m_win
->OnLeave(); }
1326 wxDataViewMainWindow
*m_win
;
1329 #endif // wxUSE_DRAG_AND_DROP
1331 //-----------------------------------------------------------------------------
1332 // wxDataViewRenameTimer
1333 //-----------------------------------------------------------------------------
1335 wxDataViewRenameTimer::wxDataViewRenameTimer( wxDataViewMainWindow
*owner
)
1340 void wxDataViewRenameTimer::Notify()
1342 m_owner
->OnRenameTimer();
1345 //-----------------------------------------------------------------------------
1346 // wxDataViewMainWindow
1347 //-----------------------------------------------------------------------------
1349 // The tree building helper, declared firstly
1350 static void BuildTreeHelper( const wxDataViewModel
* model
, const wxDataViewItem
& item
,
1351 wxDataViewTreeNode
* node
);
1353 int LINKAGEMODE
wxDataViewSelectionCmp( unsigned int row1
, unsigned int row2
)
1355 if (row1
> row2
) return 1;
1356 if (row1
== row2
) return 0;
1360 IMPLEMENT_ABSTRACT_CLASS(wxDataViewMainWindow
, wxWindow
)
1362 BEGIN_EVENT_TABLE(wxDataViewMainWindow
,wxWindow
)
1363 EVT_PAINT (wxDataViewMainWindow::OnPaint
)
1364 EVT_MOUSE_EVENTS (wxDataViewMainWindow::OnMouse
)
1365 EVT_SET_FOCUS (wxDataViewMainWindow::OnSetFocus
)
1366 EVT_KILL_FOCUS (wxDataViewMainWindow::OnKillFocus
)
1367 EVT_CHAR_HOOK (wxDataViewMainWindow::OnCharHook
)
1368 EVT_CHAR (wxDataViewMainWindow::OnChar
)
1371 wxDataViewMainWindow::wxDataViewMainWindow( wxDataViewCtrl
*parent
, wxWindowID id
,
1372 const wxPoint
&pos
, const wxSize
&size
, const wxString
&name
) :
1373 wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
|wxBORDER_NONE
, name
),
1374 m_selection( wxDataViewSelectionCmp
)
1379 m_editorRenderer
= NULL
;
1381 m_lastOnSame
= false;
1382 m_renameTimer
= new wxDataViewRenameTimer( this );
1384 // TODO: user better initial values/nothing selected
1385 m_currentCol
= NULL
;
1386 m_currentColSetByKeyboard
= false;
1387 m_useCellFocus
= false;
1391 // We would like to use the same line height that Explorer uses. This is
1392 // different from standard ListView control since Vista.
1393 if ( wxGetWinVersion() >= wxWinVersion_Vista
)
1394 m_lineHeight
= wxMax(16, GetCharHeight()) + 6; // 16 = mini icon height
1397 m_lineHeight
= wxMax(16, GetCharHeight()) + 1; // 16 = mini icon height
1399 #if wxUSE_DRAG_AND_DROP
1401 m_dragStart
= wxPoint(0,0);
1403 m_dragEnabled
= false;
1404 m_dropEnabled
= false;
1406 m_dropHintLine
= (unsigned int) -1;
1407 #endif // wxUSE_DRAG_AND_DROP
1409 m_lineLastClicked
= (unsigned int) -1;
1410 m_lineBeforeLastClicked
= (unsigned int) -1;
1411 m_lineSelectSingleOnUp
= (unsigned int) -1;
1415 SetBackgroundColour( *wxWHITE
);
1417 SetBackgroundStyle(wxBG_STYLE_CUSTOM
);
1419 m_penRule
= wxPen(GetRuleColour());
1421 // compose a pen whichcan draw black lines
1422 // TODO: maybe there is something system colour to use
1423 m_penExpander
= wxPen(wxColour(0,0,0));
1425 m_root
= wxDataViewTreeNode::CreateRootNode();
1427 // Make m_count = -1 will cause the class recaculate the real displaying number of rows.
1429 m_underMouse
= NULL
;
1433 wxDataViewMainWindow::~wxDataViewMainWindow()
1436 delete m_renameTimer
;
1440 #if wxUSE_DRAG_AND_DROP
1441 bool wxDataViewMainWindow::EnableDragSource( const wxDataFormat
&format
)
1443 m_dragFormat
= format
;
1444 m_dragEnabled
= format
!= wxDF_INVALID
;
1449 bool wxDataViewMainWindow::EnableDropTarget( const wxDataFormat
&format
)
1451 m_dropFormat
= format
;
1452 m_dropEnabled
= format
!= wxDF_INVALID
;
1455 SetDropTarget( new wxDataViewDropTarget( new wxCustomDataObject( format
), this ) );
1460 void wxDataViewMainWindow::RemoveDropHint()
1465 RefreshRow( m_dropHintLine
);
1466 m_dropHintLine
= (unsigned int) -1;
1470 wxDragResult
wxDataViewMainWindow::OnDragOver( wxDataFormat format
, wxCoord x
,
1471 wxCoord y
, wxDragResult def
)
1475 m_owner
->CalcUnscrolledPosition( xx
, yy
, &xx
, &yy
);
1476 unsigned int row
= GetLineAt( yy
);
1478 if ((row
>= GetRowCount()) || (xx
> GetEndOfLastCol()))
1484 wxDataViewItem item
= GetItemByRow( row
);
1486 wxDataViewModel
*model
= GetModel();
1488 wxDataViewEvent
event( wxEVT_COMMAND_DATAVIEW_ITEM_DROP_POSSIBLE
, m_owner
->GetId() );
1489 event
.SetEventObject( m_owner
);
1490 event
.SetItem( item
);
1491 event
.SetModel( model
);
1492 event
.SetDataFormat( format
);
1493 if (!m_owner
->HandleWindowEvent( event
))
1499 if (!event
.IsAllowed())
1506 if (m_dropHint
&& (row
!= m_dropHintLine
))
1507 RefreshRow( m_dropHintLine
);
1509 m_dropHintLine
= row
;
1515 bool wxDataViewMainWindow::OnDrop( wxDataFormat format
, wxCoord x
, wxCoord y
)
1521 m_owner
->CalcUnscrolledPosition( xx
, yy
, &xx
, &yy
);
1522 unsigned int row
= GetLineAt( yy
);
1524 if ((row
>= GetRowCount()) || (xx
> GetEndOfLastCol()))
1527 wxDataViewItem item
= GetItemByRow( row
);
1529 wxDataViewModel
*model
= GetModel();
1531 wxDataViewEvent
event( wxEVT_COMMAND_DATAVIEW_ITEM_DROP_POSSIBLE
, m_owner
->GetId() );
1532 event
.SetEventObject( m_owner
);
1533 event
.SetItem( item
);
1534 event
.SetModel( model
);
1535 event
.SetDataFormat( format
);
1536 if (!m_owner
->HandleWindowEvent( event
))
1539 if (!event
.IsAllowed())
1545 wxDragResult
wxDataViewMainWindow::OnData( wxDataFormat format
, wxCoord x
, wxCoord y
,
1550 m_owner
->CalcUnscrolledPosition( xx
, yy
, &xx
, &yy
);
1551 unsigned int row
= GetLineAt( yy
);
1553 if ((row
>= GetRowCount()) || (xx
> GetEndOfLastCol()))
1556 wxDataViewItem item
= GetItemByRow( row
);
1558 wxDataViewModel
*model
= GetModel();
1560 wxCustomDataObject
*obj
= (wxCustomDataObject
*) GetDropTarget()->GetDataObject();
1562 wxDataViewEvent
event( wxEVT_COMMAND_DATAVIEW_ITEM_DROP
, m_owner
->GetId() );
1563 event
.SetEventObject( m_owner
);
1564 event
.SetItem( item
);
1565 event
.SetModel( model
);
1566 event
.SetDataFormat( format
);
1567 event
.SetDataSize( obj
->GetSize() );
1568 event
.SetDataBuffer( obj
->GetData() );
1569 if (!m_owner
->HandleWindowEvent( event
))
1572 if (!event
.IsAllowed())
1578 void wxDataViewMainWindow::OnLeave()
1583 wxBitmap
wxDataViewMainWindow::CreateItemBitmap( unsigned int row
, int &indent
)
1585 int height
= GetLineHeight( row
);
1587 unsigned int cols
= GetOwner()->GetColumnCount();
1589 for (col
= 0; col
< cols
; col
++)
1591 wxDataViewColumn
*column
= GetOwner()->GetColumnAt(col
);
1592 if (column
->IsHidden())
1593 continue; // skip it!
1594 width
+= column
->GetWidth();
1600 wxDataViewTreeNode
*node
= GetTreeNodeByRow(row
);
1601 indent
= GetOwner()->GetIndent() * node
->GetIndentLevel();
1602 indent
= indent
+ m_lineHeight
;
1603 // try to use the m_lineHeight as the expander space
1607 wxBitmap
bitmap( width
, height
);
1608 wxMemoryDC
dc( bitmap
);
1609 dc
.SetFont( GetFont() );
1610 dc
.SetPen( *wxBLACK_PEN
);
1611 dc
.SetBrush( *wxWHITE_BRUSH
);
1612 dc
.DrawRectangle( 0,0,width
,height
);
1614 wxDataViewModel
*model
= m_owner
->GetModel();
1616 wxDataViewColumn
* const
1617 expander
= GetExpanderColumnOrFirstOne(GetOwner());
1620 for (col
= 0; col
< cols
; col
++)
1622 wxDataViewColumn
*column
= GetOwner()->GetColumnAt( col
);
1623 wxDataViewRenderer
*cell
= column
->GetRenderer();
1625 if (column
->IsHidden())
1626 continue; // skip it!
1628 width
= column
->GetWidth();
1630 if (column
== expander
)
1633 wxDataViewItem item
= GetItemByRow( row
);
1634 cell
->PrepareForItem(model
, item
, column
->GetModelColumn());
1636 wxRect
item_rect(x
, 0, width
, height
);
1637 item_rect
.Deflate(PADDING_RIGHTLEFT
, 0);
1639 // dc.SetClippingRegion( item_rect );
1640 cell
->WXCallRender(item_rect
, &dc
, 0);
1641 // dc.DestroyClippingRegion();
1649 #endif // wxUSE_DRAG_AND_DROP
1652 // Draw focus rect for individual cell. Unlike native focus rect, we render
1653 // this in foreground text color (typically white) to enhance contrast and
1655 static void DrawSelectedCellFocusRect(wxDC
& dc
, const wxRect
& rect
)
1657 // (This code is based on wxRendererGeneric::DrawFocusRect and modified.)
1659 // draw the pixels manually because the "dots" in wxPen with wxDOT style
1660 // may be short traits and not really dots
1662 // note that to behave in the same manner as DrawRect(), we must exclude
1663 // the bottom and right borders from the rectangle
1664 wxCoord x1
= rect
.GetLeft(),
1666 x2
= rect
.GetRight(),
1667 y2
= rect
.GetBottom();
1669 wxDCPenChanger
pen(dc
, wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
));
1672 for ( z
= x1
+ 1; z
< x2
; z
+= 2 )
1673 dc
.DrawPoint(z
, rect
.GetTop());
1675 wxCoord shift
= z
== x2
? 0 : 1;
1676 for ( z
= y1
+ shift
; z
< y2
; z
+= 2 )
1677 dc
.DrawPoint(x2
, z
);
1679 shift
= z
== y2
? 0 : 1;
1680 for ( z
= x2
- shift
; z
> x1
; z
-= 2 )
1681 dc
.DrawPoint(z
, y2
);
1683 shift
= z
== x1
? 0 : 1;
1684 for ( z
= y2
- shift
; z
> y1
; z
-= 2 )
1685 dc
.DrawPoint(x1
, z
);
1689 void wxDataViewMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1691 wxDataViewModel
*model
= GetModel();
1692 wxAutoBufferedPaintDC
dc( this );
1695 dc
.SetBrush(GetOwner()->GetBackgroundColour());
1696 dc
.SetPen( *wxTRANSPARENT_PEN
);
1697 dc
.DrawRectangle(GetClientSize());
1702 // No items to draw.
1707 GetOwner()->PrepareDC( dc
);
1708 dc
.SetFont( GetFont() );
1710 wxRect update
= GetUpdateRegion().GetBox();
1711 m_owner
->CalcUnscrolledPosition( update
.x
, update
.y
, &update
.x
, &update
.y
);
1713 // compute which items needs to be redrawn
1714 unsigned int item_start
= GetLineAt( wxMax(0,update
.y
) );
1715 unsigned int item_count
=
1716 wxMin( (int)( GetLineAt( wxMax(0,update
.y
+update
.height
) ) - item_start
+ 1),
1717 (int)(GetRowCount( ) - item_start
));
1718 unsigned int item_last
= item_start
+ item_count
;
1720 // Send the event to wxDataViewCtrl itself.
1721 wxWindow
* const parent
= GetParent();
1722 wxDataViewEvent
cache_event(wxEVT_COMMAND_DATAVIEW_CACHE_HINT
, parent
->GetId());
1723 cache_event
.SetEventObject(parent
);
1724 cache_event
.SetCache(item_start
, item_last
- 1);
1725 parent
->ProcessWindowEvent(cache_event
);
1727 // compute which columns needs to be redrawn
1728 unsigned int cols
= GetOwner()->GetColumnCount();
1731 // we assume that we have at least one column below and painting an
1732 // empty control is unnecessary anyhow
1736 unsigned int col_start
= 0;
1737 unsigned int x_start
;
1738 for (x_start
= 0; col_start
< cols
; col_start
++)
1740 wxDataViewColumn
*col
= GetOwner()->GetColumnAt(col_start
);
1741 if (col
->IsHidden())
1742 continue; // skip it!
1744 unsigned int w
= col
->GetWidth();
1745 if (x_start
+w
>= (unsigned int)update
.x
)
1751 unsigned int col_last
= col_start
;
1752 unsigned int x_last
= x_start
;
1753 for (; col_last
< cols
; col_last
++)
1755 wxDataViewColumn
*col
= GetOwner()->GetColumnAt(col_last
);
1756 if (col
->IsHidden())
1757 continue; // skip it!
1759 if (x_last
> (unsigned int)update
.GetRight())
1762 x_last
+= col
->GetWidth();
1765 // Draw background of alternate rows specially if required
1766 if ( m_owner
->HasFlag(wxDV_ROW_LINES
) )
1768 wxColour altRowColour
= m_owner
->m_alternateRowColour
;
1769 if ( !altRowColour
.IsOk() )
1771 // Determine the alternate rows colour automatically from the
1772 // background colour.
1773 const wxColour bgColour
= m_owner
->GetBackgroundColour();
1775 // Depending on the background, alternate row color
1776 // will be 3% more dark or 50% brighter.
1777 int alpha
= bgColour
.GetRGB() > 0x808080 ? 97 : 150;
1778 altRowColour
= bgColour
.ChangeLightness(alpha
);
1781 dc
.SetPen(*wxTRANSPARENT_PEN
);
1782 dc
.SetBrush(wxBrush(altRowColour
));
1784 for (unsigned int item
= item_start
; item
< item_last
; item
++)
1788 dc
.DrawRectangle(x_start
,
1790 GetClientSize().GetWidth(),
1791 GetLineHeight(item
));
1796 // Draw horizontal rules if required
1797 if ( m_owner
->HasFlag(wxDV_HORIZ_RULES
) )
1799 dc
.SetPen(m_penRule
);
1800 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1802 for (unsigned int i
= item_start
; i
<= item_last
; i
++)
1804 int y
= GetLineStart( i
);
1805 dc
.DrawLine(x_start
, y
, x_last
, y
);
1809 // Draw vertical rules if required
1810 if ( m_owner
->HasFlag(wxDV_VERT_RULES
) )
1812 dc
.SetPen(m_penRule
);
1813 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1815 // NB: Vertical rules are drawn in the last pixel of a column so that
1816 // they align perfectly with native MSW wxHeaderCtrl as well as for
1817 // consistency with MSW native list control. There's no vertical
1818 // rule at the most-left side of the control.
1820 int x
= x_start
- 1;
1821 for (unsigned int i
= col_start
; i
< col_last
; i
++)
1823 wxDataViewColumn
*col
= GetOwner()->GetColumnAt(i
);
1824 if (col
->IsHidden())
1825 continue; // skip it
1827 x
+= col
->GetWidth();
1829 dc
.DrawLine(x
, GetLineStart( item_start
),
1830 x
, GetLineStart( item_last
) );
1834 // redraw the background for the items which are selected/current
1835 for (unsigned int item
= item_start
; item
< item_last
; item
++)
1837 bool selected
= m_selection
.Index( item
) != wxNOT_FOUND
;
1839 if (selected
|| item
== m_currentRow
)
1841 wxRect
rect( x_start
, GetLineStart( item
),
1842 x_last
- x_start
, GetLineHeight( item
) );
1844 // draw selection and whole-item focus:
1847 int flags
= wxCONTROL_SELECTED
;
1849 flags
|= wxCONTROL_FOCUSED
;
1851 wxRendererNative::Get().DrawItemSelectionRect
1860 // draw keyboard focus rect if applicable
1861 if ( item
== m_currentRow
&& m_hasFocus
)
1863 bool renderColumnFocus
= false;
1865 if ( m_useCellFocus
&& m_currentCol
&& m_currentColSetByKeyboard
)
1867 renderColumnFocus
= true;
1869 // If this is container node without columns, render full-row focus:
1872 wxDataViewTreeNode
*node
= GetTreeNodeByRow(item
);
1873 if ( node
->HasChildren() && !model
->HasContainerColumns(node
->GetItem()) )
1874 renderColumnFocus
= false;
1878 if ( renderColumnFocus
)
1880 for ( unsigned int i
= col_start
; i
< col_last
; i
++ )
1882 wxDataViewColumn
*col
= GetOwner()->GetColumnAt(i
);
1883 if ( col
->IsHidden() )
1886 rect
.width
= col
->GetWidth();
1888 if ( col
== m_currentCol
)
1890 // make the rect more visible by adding a small
1891 // margin around it:
1896 // DrawFocusRect() uses XOR and is all but
1897 // invisible against dark-blue background. Use
1898 // the same color used for selected text.
1899 DrawSelectedCellFocusRect(dc
, rect
);
1903 wxRendererNative::Get().DrawFocusRect
1914 rect
.x
+= rect
.width
;
1919 // render focus rectangle for the whole row
1920 wxRendererNative::Get().DrawFocusRect
1925 selected
? (int)wxCONTROL_SELECTED
: 0
1932 #if wxUSE_DRAG_AND_DROP
1935 wxRect
rect( x_start
, GetLineStart( m_dropHintLine
),
1936 x_last
- x_start
, GetLineHeight( m_dropHintLine
) );
1937 dc
.SetPen( *wxBLACK_PEN
);
1938 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
1939 dc
.DrawRectangle( rect
);
1941 #endif // wxUSE_DRAG_AND_DROP
1943 wxDataViewColumn
* const
1944 expander
= GetExpanderColumnOrFirstOne(GetOwner());
1946 // redraw all cells for all rows which must be repainted and all columns
1948 cell_rect
.x
= x_start
;
1949 for (unsigned int i
= col_start
; i
< col_last
; i
++)
1951 wxDataViewColumn
*col
= GetOwner()->GetColumnAt( i
);
1952 wxDataViewRenderer
*cell
= col
->GetRenderer();
1953 cell_rect
.width
= col
->GetWidth();
1955 if ( col
->IsHidden() || cell_rect
.width
<= 0 )
1956 continue; // skip it!
1958 for (unsigned int item
= item_start
; item
< item_last
; item
++)
1960 // get the cell value and set it into the renderer
1961 wxDataViewTreeNode
*node
= NULL
;
1962 wxDataViewItem dataitem
;
1964 if (!IsVirtualList())
1966 node
= GetTreeNodeByRow(item
);
1970 dataitem
= node
->GetItem();
1972 // Skip all columns of "container" rows except the expander
1973 // column itself unless HasContainerColumns() overrides this.
1974 if ( col
!= expander
&&
1975 model
->IsContainer(dataitem
) &&
1976 !model
->HasContainerColumns(dataitem
) )
1981 dataitem
= wxDataViewItem( wxUIntToPtr(item
+1) );
1984 cell
->PrepareForItem(model
, dataitem
, col
->GetModelColumn());
1987 cell_rect
.y
= GetLineStart( item
);
1988 cell_rect
.height
= GetLineHeight( item
);
1990 // draw the background
1991 bool selected
= m_selection
.Index( item
) != wxNOT_FOUND
;
1993 DrawCellBackground( cell
, dc
, cell_rect
);
1995 // deal with the expander
1997 if ((!IsList()) && (col
== expander
))
1999 // Calculate the indent first
2000 indent
= GetOwner()->GetIndent() * node
->GetIndentLevel();
2002 // we reserve m_lineHeight of horizontal space for the expander
2003 // but leave EXPANDER_MARGIN around the expander itself
2004 int exp_x
= cell_rect
.x
+ indent
+ EXPANDER_MARGIN
;
2006 indent
+= m_lineHeight
;
2008 // draw expander if needed and visible
2009 if ( node
->HasChildren() && exp_x
< cell_rect
.GetRight() )
2011 dc
.SetPen( m_penExpander
);
2012 dc
.SetBrush( wxNullBrush
);
2014 int exp_size
= m_lineHeight
- 2*EXPANDER_MARGIN
;
2015 int exp_y
= cell_rect
.y
+ (cell_rect
.height
- exp_size
)/2
2016 + EXPANDER_MARGIN
- EXPANDER_OFFSET
;
2018 const wxRect
rect(exp_x
, exp_y
, exp_size
, exp_size
);
2021 if ( m_underMouse
== node
)
2022 flag
|= wxCONTROL_CURRENT
;
2023 if ( node
->IsOpen() )
2024 flag
|= wxCONTROL_EXPANDED
;
2026 // ensure that we don't overflow the cell (which might
2027 // happen if the column is very narrow)
2028 wxDCClipper
clip(dc
, cell_rect
);
2030 wxRendererNative::Get().DrawTreeItemButton( this, dc
, rect
, flag
);
2033 // force the expander column to left-center align
2034 cell
->SetAlignment( wxALIGN_CENTER_VERTICAL
);
2037 wxRect item_rect
= cell_rect
;
2038 item_rect
.Deflate(PADDING_RIGHTLEFT
, 0);
2040 // account for the tree indent (harmless if we're not indented)
2041 item_rect
.x
+= indent
;
2042 item_rect
.width
-= indent
;
2044 if ( item_rect
.width
<= 0 )
2048 if (m_hasFocus
&& selected
)
2049 state
|= wxDATAVIEW_CELL_SELECTED
;
2051 // TODO: it would be much more efficient to create a clipping
2052 // region for the entire column being rendered (in the OnPaint
2053 // of wxDataViewMainWindow) instead of a single clip region for
2054 // each cell. However it would mean that each renderer should
2055 // respect the given wxRect's top & bottom coords, eventually
2056 // violating only the left & right coords - however the user can
2057 // make its own renderer and thus we cannot be sure of that.
2058 wxDCClipper
clip(dc
, item_rect
);
2060 cell
->WXCallRender(item_rect
, &dc
, state
);
2063 cell_rect
.x
+= cell_rect
.width
;
2068 void wxDataViewMainWindow::DrawCellBackground( wxDataViewRenderer
* cell
, wxDC
& dc
, const wxRect
& rect
)
2070 wxRect
rectBg( rect
);
2072 // don't overlap the horizontal rules
2073 if ( m_owner
->HasFlag(wxDV_HORIZ_RULES
) )
2079 // don't overlap the vertical rules
2080 if ( m_owner
->HasFlag(wxDV_VERT_RULES
) )
2086 cell
->RenderBackground(&dc
, rectBg
);
2089 void wxDataViewMainWindow::OnRenameTimer()
2091 // We have to call this here because changes may just have
2092 // been made and no screen update taken place.
2095 // TODO: use wxTheApp->SafeYieldFor(NULL, wxEVT_CATEGORY_UI) instead
2096 // (needs to be tested!)
2100 wxDataViewItem item
= GetItemByRow( m_currentRow
);
2102 StartEditing( item
, m_currentCol
);
2106 wxDataViewMainWindow::StartEditing(const wxDataViewItem
& item
,
2107 const wxDataViewColumn
* col
)
2109 wxDataViewRenderer
* renderer
= col
->GetRenderer();
2110 if ( !IsCellEditableInMode(item
, col
, wxDATAVIEW_CELL_EDITABLE
) )
2113 const wxRect itemRect
= GetItemRect(item
, col
);
2114 if ( renderer
->StartEditing(item
, itemRect
) )
2116 // Save the renderer to be able to finish/cancel editing it later and
2117 // save the control to be able to detect if we're still editing it.
2118 m_editorRenderer
= renderer
;
2119 m_editorCtrl
= renderer
->GetEditorCtrl();
2123 //-----------------------------------------------------------------------------
2124 // Helper class for do operation on the tree node
2125 //-----------------------------------------------------------------------------
2130 virtual ~DoJob() { }
2132 // The return value control how the tree-walker tranverse the tree
2135 DONE
, // Job done, stop traversing and return
2136 SKIP_SUBTREE
, // Ignore the current node's subtree and continue
2137 CONTINUE
// Job not done, continue
2140 virtual int operator() ( wxDataViewTreeNode
* node
) = 0;
2143 bool Walker( wxDataViewTreeNode
* node
, DoJob
& func
)
2145 wxCHECK_MSG( node
, false, "can't walk NULL node" );
2147 switch( func( node
) )
2151 case DoJob::SKIP_SUBTREE
:
2153 case DoJob::CONTINUE
:
2157 if ( node
->HasChildren() )
2159 const wxDataViewTreeNodes
& nodes
= node
->GetChildNodes();
2161 for ( wxDataViewTreeNodes::const_iterator i
= nodes
.begin();
2165 if ( Walker(*i
, func
) )
2173 bool wxDataViewMainWindow::ItemAdded(const wxDataViewItem
& parent
, const wxDataViewItem
& item
)
2175 if (IsVirtualList())
2177 wxDataViewVirtualListModel
*list_model
=
2178 (wxDataViewVirtualListModel
*) GetModel();
2179 m_count
= list_model
->GetCount();
2185 wxDataViewTreeNode
*parentNode
= FindNode(parent
);
2190 wxDataViewItemArray modelSiblings
;
2191 GetModel()->GetChildren(parent
, modelSiblings
);
2192 const int modelSiblingsSize
= modelSiblings
.size();
2194 int posInModel
= modelSiblings
.Index(item
, /*fromEnd=*/true);
2195 wxCHECK_MSG( posInModel
!= wxNOT_FOUND
, false, "adding non-existent item?" );
2197 wxDataViewTreeNode
*itemNode
= new wxDataViewTreeNode(parentNode
, item
);
2198 itemNode
->SetHasChildren(GetModel()->IsContainer(item
));
2200 parentNode
->SetHasChildren(true);
2202 const wxDataViewTreeNodes
& nodeSiblings
= parentNode
->GetChildNodes();
2203 const int nodeSiblingsSize
= nodeSiblings
.size();
2207 if ( posInModel
== modelSiblingsSize
- 1 )
2209 nodePos
= nodeSiblingsSize
;
2211 else if ( modelSiblingsSize
== nodeSiblingsSize
+ 1 )
2213 // This is the simple case when our node tree already matches the
2214 // model and only this one item is missing.
2215 nodePos
= posInModel
;
2219 // It's possible that a larger discrepancy between the model and
2220 // our realization exists. This can happen e.g. when adding a bunch
2221 // of items to the model and then calling ItemsAdded() just once
2222 // afterwards. In this case, we must find the right position by
2223 // looking at sibling items.
2225 // append to the end if we won't find a better position:
2226 nodePos
= nodeSiblingsSize
;
2228 for ( int nextItemPos
= posInModel
+ 1;
2229 nextItemPos
< modelSiblingsSize
;
2232 int nextNodePos
= parentNode
->FindChildByItem(modelSiblings
[nextItemPos
]);
2233 if ( nextNodePos
!= wxNOT_FOUND
)
2235 nodePos
= nextNodePos
;
2241 parentNode
->ChangeSubTreeCount(+1);
2242 parentNode
->InsertChild(itemNode
, nodePos
);
2247 GetOwner()->InvalidateColBestWidths();
2253 bool wxDataViewMainWindow::ItemDeleted(const wxDataViewItem
& parent
,
2254 const wxDataViewItem
& item
)
2256 if (IsVirtualList())
2258 wxDataViewVirtualListModel
*list_model
=
2259 (wxDataViewVirtualListModel
*) GetModel();
2260 m_count
= list_model
->GetCount();
2262 if ( !m_selection
.empty() )
2264 const int row
= GetRowByItem(item
);
2266 int rowIndexInSelection
= wxNOT_FOUND
;
2268 const size_t selCount
= m_selection
.size();
2269 for ( size_t i
= 0; i
< selCount
; i
++ )
2271 if ( m_selection
[i
] == (unsigned)row
)
2272 rowIndexInSelection
= i
;
2273 else if ( m_selection
[i
] > (unsigned)row
)
2277 if ( rowIndexInSelection
!= wxNOT_FOUND
)
2278 m_selection
.RemoveAt(rowIndexInSelection
);
2282 else // general case
2284 wxDataViewTreeNode
*parentNode
= FindNode(parent
);
2286 // Notice that it is possible that the item being deleted is not in the
2287 // tree at all, for example we could be deleting a never shown (because
2288 // collapsed) item in a tree model. So it's not an error if we don't know
2289 // about this item, just return without doing anything then.
2293 wxCHECK_MSG( parentNode
->HasChildren(), false, "parent node doesn't have children?" );
2294 const wxDataViewTreeNodes
& parentsChildren
= parentNode
->GetChildNodes();
2296 // We can't use FindNode() to find 'item', because it was already
2297 // removed from the model by the time ItemDeleted() is called, so we
2298 // have to do it manually. We keep track of its position as well for
2300 int itemPosInNode
= 0;
2301 wxDataViewTreeNode
*itemNode
= NULL
;
2302 for ( wxDataViewTreeNodes::const_iterator i
= parentsChildren
.begin();
2303 i
!= parentsChildren
.end();
2304 ++i
, ++itemPosInNode
)
2306 if( (*i
)->GetItem() == item
)
2313 // If the parent wasn't expanded, it's possible that we didn't have a
2314 // node corresponding to 'item' and so there's nothing left to do.
2317 // If this was the last child to be removed, it's possible the parent
2318 // node became a leaf. Let's ask the model about it.
2319 if ( parentNode
->GetChildNodes().empty() )
2320 parentNode
->SetHasChildren(GetModel()->IsContainer(parent
));
2325 // Delete the item from wxDataViewTreeNode representation:
2326 const int itemsDeleted
= 1 + itemNode
->GetSubTreeCount();
2328 parentNode
->RemoveChild(itemNode
);
2330 parentNode
->ChangeSubTreeCount(-itemsDeleted
);
2332 // Make the row number invalid and get a new valid one when user call GetRowCount
2335 // If this was the last child to be removed, it's possible the parent
2336 // node became a leaf. Let's ask the model about it.
2337 if ( parentNode
->GetChildNodes().empty() )
2338 parentNode
->SetHasChildren(GetModel()->IsContainer(parent
));
2340 // Update selection by removing 'item' and its entire children tree from the selection.
2341 if ( !m_selection
.empty() )
2343 // we can't call GetRowByItem() on 'item', as it's already deleted, so compute it from
2344 // the parent ('parentNode') and position in its list of children
2346 if ( itemPosInNode
== 0 )
2348 // 1st child, row number is that of the parent parentNode + 1
2349 itemRow
= GetRowByItem(parentNode
->GetItem()) + 1;
2353 // row number is that of the sibling above 'item' + its subtree if any + 1
2354 const wxDataViewTreeNode
*siblingNode
= parentNode
->GetChildNodes()[itemPosInNode
- 1];
2356 itemRow
= GetRowByItem(siblingNode
->GetItem()) +
2357 siblingNode
->GetSubTreeCount() +
2361 wxDataViewSelection
newsel(wxDataViewSelectionCmp
);
2363 const size_t numSelections
= m_selection
.size();
2364 for ( size_t i
= 0; i
< numSelections
; ++i
)
2366 const int s
= m_selection
[i
];
2368 newsel
.push_back(s
);
2369 else if ( s
>= itemRow
+ itemsDeleted
)
2370 newsel
.push_back(s
- itemsDeleted
);
2371 // else: deleted item, remove from selection
2374 m_selection
= newsel
;
2378 // Change the current row to the last row if the current exceed the max row number
2379 if( m_currentRow
> GetRowCount() )
2380 ChangeCurrentRow(m_count
- 1);
2382 GetOwner()->InvalidateColBestWidths();
2388 bool wxDataViewMainWindow::ItemChanged(const wxDataViewItem
& item
)
2393 GetOwner()->InvalidateColBestWidths();
2396 wxWindow
*parent
= GetParent();
2397 wxDataViewEvent
le(wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED
, parent
->GetId());
2398 le
.SetEventObject(parent
);
2399 le
.SetModel(GetModel());
2401 parent
->ProcessWindowEvent(le
);
2406 bool wxDataViewMainWindow::ValueChanged( const wxDataViewItem
& item
, unsigned int model_column
)
2408 int view_column
= -1;
2409 unsigned int n_col
= m_owner
->GetColumnCount();
2410 for (unsigned i
= 0; i
< n_col
; i
++)
2412 wxDataViewColumn
*column
= m_owner
->GetColumn( i
);
2413 if (column
->GetModelColumn() == model_column
)
2415 view_column
= (int) i
;
2419 if (view_column
== -1)
2422 // NOTE: to be valid, we cannot use e.g. INT_MAX - 1
2423 /*#define MAX_VIRTUAL_WIDTH 100000
2425 wxRect rect( 0, row*m_lineHeight, MAX_VIRTUAL_WIDTH, m_lineHeight );
2426 m_owner->CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y );
2427 Refresh( true, &rect );
2434 GetOwner()->InvalidateColBestWidth(view_column
);
2437 wxWindow
*parent
= GetParent();
2438 wxDataViewEvent
le(wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED
, parent
->GetId());
2439 le
.SetEventObject(parent
);
2440 le
.SetModel(GetModel());
2442 le
.SetColumn(view_column
);
2443 le
.SetDataViewColumn(GetOwner()->GetColumn(view_column
));
2444 parent
->ProcessWindowEvent(le
);
2449 bool wxDataViewMainWindow::Cleared()
2452 m_selection
.Clear();
2455 BuildTree( GetModel() );
2457 GetOwner()->InvalidateColBestWidths();
2463 void wxDataViewMainWindow::UpdateDisplay()
2466 m_underMouse
= NULL
;
2469 void wxDataViewMainWindow::OnInternalIdle()
2471 wxWindow::OnInternalIdle();
2475 RecalculateDisplay();
2480 void wxDataViewMainWindow::RecalculateDisplay()
2482 wxDataViewModel
*model
= GetModel();
2489 int width
= GetEndOfLastCol();
2490 int height
= GetLineStart( GetRowCount() );
2492 SetVirtualSize( width
, height
);
2493 GetOwner()->SetScrollRate( 10, m_lineHeight
);
2498 void wxDataViewMainWindow::ScrollWindow( int dx
, int dy
, const wxRect
*rect
)
2500 m_underMouse
= NULL
;
2502 wxWindow::ScrollWindow( dx
, dy
, rect
);
2504 if (GetOwner()->m_headerArea
)
2505 GetOwner()->m_headerArea
->ScrollWindow( dx
, 0 );
2508 void wxDataViewMainWindow::ScrollTo( int rows
, int column
)
2510 m_underMouse
= NULL
;
2513 m_owner
->GetScrollPixelsPerUnit( &x
, &y
);
2514 int sy
= GetLineStart( rows
)/y
;
2518 wxRect rect
= GetClientRect();
2522 m_owner
->CalcUnscrolledPosition( rect
.x
, rect
.y
, &xx
, &yy
);
2523 for (x_start
= 0; colnum
< column
; colnum
++)
2525 wxDataViewColumn
*col
= GetOwner()->GetColumnAt(colnum
);
2526 if (col
->IsHidden())
2527 continue; // skip it!
2529 w
= col
->GetWidth();
2533 int x_end
= x_start
+ w
;
2534 xe
= xx
+ rect
.width
;
2537 sx
= ( xx
+ x_end
- xe
)/x
;
2544 m_owner
->Scroll( sx
, sy
);
2547 int wxDataViewMainWindow::GetCountPerPage() const
2549 wxSize size
= GetClientSize();
2550 return size
.y
/ m_lineHeight
;
2553 int wxDataViewMainWindow::GetEndOfLastCol() const
2557 for (i
= 0; i
< GetOwner()->GetColumnCount(); i
++)
2559 const wxDataViewColumn
*c
=
2560 const_cast<wxDataViewCtrl
*>(GetOwner())->GetColumnAt( i
);
2563 width
+= c
->GetWidth();
2568 unsigned int wxDataViewMainWindow::GetFirstVisibleRow() const
2572 m_owner
->CalcUnscrolledPosition( x
, y
, &x
, &y
);
2574 return GetLineAt( y
);
2577 unsigned int wxDataViewMainWindow::GetLastVisibleRow()
2579 wxSize client_size
= GetClientSize();
2580 m_owner
->CalcUnscrolledPosition( client_size
.x
, client_size
.y
,
2581 &client_size
.x
, &client_size
.y
);
2583 // we should deal with the pixel here
2584 unsigned int row
= GetLineAt(client_size
.y
) - 1;
2586 return wxMin( GetRowCount()-1, row
);
2589 unsigned int wxDataViewMainWindow::GetRowCount() const
2591 if ( m_count
== -1 )
2593 wxDataViewMainWindow
* const
2594 self
= const_cast<wxDataViewMainWindow
*>(this);
2595 self
->m_count
= RecalculateCount();
2596 self
->UpdateDisplay();
2601 void wxDataViewMainWindow::ChangeCurrentRow( unsigned int row
)
2608 void wxDataViewMainWindow::SelectAllRows( bool on
)
2615 m_selection
.Clear();
2616 for (unsigned int i
= 0; i
< GetRowCount(); i
++)
2617 m_selection
.Add( i
);
2622 unsigned int first_visible
= GetFirstVisibleRow();
2623 unsigned int last_visible
= GetLastVisibleRow();
2625 for (i
= 0; i
< m_selection
.GetCount(); i
++)
2627 unsigned int row
= m_selection
[i
];
2628 if ((row
>= first_visible
) && (row
<= last_visible
))
2631 m_selection
.Clear();
2635 void wxDataViewMainWindow::SelectRow( unsigned int row
, bool on
)
2637 if (m_selection
.Index( row
) == wxNOT_FOUND
)
2641 m_selection
.Add( row
);
2649 m_selection
.Remove( row
);
2655 void wxDataViewMainWindow::SelectRows( unsigned int from
, unsigned int to
, bool on
)
2659 unsigned int tmp
= from
;
2665 for (i
= from
; i
<= to
; i
++)
2667 if (m_selection
.Index( i
) == wxNOT_FOUND
)
2670 m_selection
.Add( i
);
2675 m_selection
.Remove( i
);
2678 RefreshRows( from
, to
);
2681 void wxDataViewMainWindow::Select( const wxArrayInt
& aSelections
)
2683 for (size_t i
=0; i
< aSelections
.GetCount(); i
++)
2685 int n
= aSelections
[i
];
2687 m_selection
.Add( n
);
2692 void wxDataViewMainWindow::ReverseRowSelection( unsigned int row
)
2694 if (m_selection
.Index( row
) == wxNOT_FOUND
)
2695 m_selection
.Add( row
);
2697 m_selection
.Remove( row
);
2701 bool wxDataViewMainWindow::IsRowSelected( unsigned int row
)
2703 return (m_selection
.Index( row
) != wxNOT_FOUND
);
2706 void wxDataViewMainWindow::SendSelectionChangedEvent( const wxDataViewItem
& item
)
2708 wxWindow
*parent
= GetParent();
2709 wxDataViewEvent
le(wxEVT_COMMAND_DATAVIEW_SELECTION_CHANGED
, parent
->GetId());
2711 le
.SetEventObject(parent
);
2712 le
.SetModel(GetModel());
2715 parent
->ProcessWindowEvent(le
);
2718 void wxDataViewMainWindow::RefreshRow( unsigned int row
)
2720 wxRect
rect( 0, GetLineStart( row
), GetEndOfLastCol(), GetLineHeight( row
) );
2721 m_owner
->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2723 wxSize client_size
= GetClientSize();
2724 wxRect
client_rect( 0, 0, client_size
.x
, client_size
.y
);
2725 wxRect intersect_rect
= client_rect
.Intersect( rect
);
2726 if (intersect_rect
.width
> 0)
2727 Refresh( true, &intersect_rect
);
2730 void wxDataViewMainWindow::RefreshRows( unsigned int from
, unsigned int to
)
2734 unsigned int tmp
= to
;
2739 wxRect
rect( 0, GetLineStart( from
), GetEndOfLastCol(), GetLineStart( (to
-from
+1) ) );
2740 m_owner
->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2742 wxSize client_size
= GetClientSize();
2743 wxRect
client_rect( 0, 0, client_size
.x
, client_size
.y
);
2744 wxRect intersect_rect
= client_rect
.Intersect( rect
);
2745 if (intersect_rect
.width
> 0)
2746 Refresh( true, &intersect_rect
);
2749 void wxDataViewMainWindow::RefreshRowsAfter( unsigned int firstRow
)
2751 wxSize client_size
= GetClientSize();
2752 int start
= GetLineStart( firstRow
);
2753 m_owner
->CalcScrolledPosition( start
, 0, &start
, NULL
);
2754 if (start
> client_size
.y
) return;
2756 wxRect
rect( 0, start
, client_size
.x
, client_size
.y
- start
);
2758 Refresh( true, &rect
);
2761 wxRect
wxDataViewMainWindow::GetLineRect( unsigned int row
) const
2765 rect
.y
= GetLineStart( row
);
2766 rect
.width
= GetEndOfLastCol();
2767 rect
.height
= GetLineHeight( row
);
2772 int wxDataViewMainWindow::GetLineStart( unsigned int row
) const
2774 const wxDataViewModel
*model
= GetModel();
2776 if (GetOwner()->GetWindowStyle() & wxDV_VARIABLE_LINE_HEIGHT
)
2778 // TODO make more efficient
2783 for (r
= 0; r
< row
; r
++)
2785 const wxDataViewTreeNode
* node
= GetTreeNodeByRow(r
);
2786 if (!node
) return start
;
2788 wxDataViewItem item
= node
->GetItem();
2790 unsigned int cols
= GetOwner()->GetColumnCount();
2792 int height
= m_lineHeight
;
2793 for (col
= 0; col
< cols
; col
++)
2795 const wxDataViewColumn
*column
= GetOwner()->GetColumn(col
);
2796 if (column
->IsHidden())
2797 continue; // skip it!
2800 model
->IsContainer(item
) &&
2801 !model
->HasContainerColumns(item
))
2802 continue; // skip it!
2804 wxDataViewRenderer
*renderer
=
2805 const_cast<wxDataViewRenderer
*>(column
->GetRenderer());
2806 renderer
->PrepareForItem(model
, item
, column
->GetModelColumn());
2808 height
= wxMax( height
, renderer
->GetSize().y
);
2818 return row
* m_lineHeight
;
2822 int wxDataViewMainWindow::GetLineAt( unsigned int y
) const
2824 const wxDataViewModel
*model
= GetModel();
2826 // check for the easy case first
2827 if ( !GetOwner()->HasFlag(wxDV_VARIABLE_LINE_HEIGHT
) )
2828 return y
/ m_lineHeight
;
2830 // TODO make more efficient
2831 unsigned int row
= 0;
2832 unsigned int yy
= 0;
2835 const wxDataViewTreeNode
* node
= GetTreeNodeByRow(row
);
2838 // not really correct...
2839 return row
+ ((y
-yy
) / m_lineHeight
);
2842 wxDataViewItem item
= node
->GetItem();
2844 unsigned int cols
= GetOwner()->GetColumnCount();
2846 int height
= m_lineHeight
;
2847 for (col
= 0; col
< cols
; col
++)
2849 const wxDataViewColumn
*column
= GetOwner()->GetColumn(col
);
2850 if (column
->IsHidden())
2851 continue; // skip it!
2854 model
->IsContainer(item
) &&
2855 !model
->HasContainerColumns(item
))
2856 continue; // skip it!
2858 wxDataViewRenderer
*renderer
=
2859 const_cast<wxDataViewRenderer
*>(column
->GetRenderer());
2860 renderer
->PrepareForItem(model
, item
, column
->GetModelColumn());
2862 height
= wxMax( height
, renderer
->GetSize().y
);
2873 int wxDataViewMainWindow::GetLineHeight( unsigned int row
) const
2875 const wxDataViewModel
*model
= GetModel();
2877 if (GetOwner()->GetWindowStyle() & wxDV_VARIABLE_LINE_HEIGHT
)
2879 wxASSERT( !IsVirtualList() );
2881 const wxDataViewTreeNode
* node
= GetTreeNodeByRow(row
);
2882 // wxASSERT( node );
2883 if (!node
) return m_lineHeight
;
2885 wxDataViewItem item
= node
->GetItem();
2887 int height
= m_lineHeight
;
2889 unsigned int cols
= GetOwner()->GetColumnCount();
2891 for (col
= 0; col
< cols
; col
++)
2893 const wxDataViewColumn
*column
= GetOwner()->GetColumn(col
);
2894 if (column
->IsHidden())
2895 continue; // skip it!
2898 model
->IsContainer(item
) &&
2899 !model
->HasContainerColumns(item
))
2900 continue; // skip it!
2902 wxDataViewRenderer
*renderer
=
2903 const_cast<wxDataViewRenderer
*>(column
->GetRenderer());
2904 renderer
->PrepareForItem(model
, item
, column
->GetModelColumn());
2906 height
= wxMax( height
, renderer
->GetSize().y
);
2913 return m_lineHeight
;
2918 class RowToTreeNodeJob
: public DoJob
2921 RowToTreeNodeJob( unsigned int row
, int current
, wxDataViewTreeNode
* node
)
2924 this->current
= current
;
2929 virtual int operator() ( wxDataViewTreeNode
* node
)
2932 if( current
== static_cast<int>(row
))
2938 if( node
->GetSubTreeCount() + current
< static_cast<int>(row
) )
2940 current
+= node
->GetSubTreeCount();
2941 return DoJob::SKIP_SUBTREE
;
2947 // If the current node has only leaf children, we can find the
2948 // desired node directly. This can speed up finding the node
2949 // in some cases, and will have a very good effect for list views.
2950 if ( node
->HasChildren() &&
2951 (int)node
->GetChildNodes().size() == node
->GetSubTreeCount() )
2953 const int index
= static_cast<int>(row
) - current
- 1;
2954 ret
= node
->GetChildNodes()[index
];
2958 return DoJob::CONTINUE
;
2962 wxDataViewTreeNode
* GetResult() const
2968 wxDataViewTreeNode
* ret
;
2969 wxDataViewTreeNode
* parent
;
2972 wxDataViewTreeNode
* wxDataViewMainWindow::GetTreeNodeByRow(unsigned int row
) const
2974 wxASSERT( !IsVirtualList() );
2976 RowToTreeNodeJob
job( row
, -2, m_root
);
2977 Walker( m_root
, job
);
2978 return job
.GetResult();
2981 wxDataViewItem
wxDataViewMainWindow::GetItemByRow(unsigned int row
) const
2983 wxDataViewItem item
;
2984 if (IsVirtualList())
2986 if ( row
< GetRowCount() )
2987 item
= wxDataViewItem(wxUIntToPtr(row
+1));
2991 wxDataViewTreeNode
*node
= GetTreeNodeByRow(row
);
2993 item
= node
->GetItem();
3000 wxDataViewMainWindow::SendExpanderEvent(wxEventType type
,
3001 const wxDataViewItem
& item
)
3003 wxWindow
*parent
= GetParent();
3004 wxDataViewEvent
le(type
, parent
->GetId());
3006 le
.SetEventObject(parent
);
3007 le
.SetModel(GetModel());
3010 return !parent
->ProcessWindowEvent(le
) || le
.IsAllowed();
3013 bool wxDataViewMainWindow::IsExpanded( unsigned int row
) const
3018 wxDataViewTreeNode
* node
= GetTreeNodeByRow(row
);
3022 if (!node
->HasChildren())
3025 return node
->IsOpen();
3028 bool wxDataViewMainWindow::HasChildren( unsigned int row
) const
3033 wxDataViewTreeNode
* node
= GetTreeNodeByRow(row
);
3037 if (!node
->HasChildren())
3043 void wxDataViewMainWindow::Expand( unsigned int row
)
3048 wxDataViewTreeNode
* node
= GetTreeNodeByRow(row
);
3052 if (!node
->HasChildren())
3055 if (!node
->IsOpen())
3057 if ( !SendExpanderEvent(wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDING
, node
->GetItem()) )
3059 // Vetoed by the event handler.
3065 // build the children of current node
3066 if( node
->GetChildNodes().empty() )
3069 ::BuildTreeHelper(GetModel(), node
->GetItem(), node
);
3072 // By expanding the node all row indices that are currently in the selection list
3073 // and are greater than our node have become invalid. So we have to correct that now.
3074 const unsigned rowAdjustment
= node
->GetSubTreeCount();
3075 for(unsigned i
=0; i
<m_selection
.size(); ++i
)
3077 const unsigned testRow
= m_selection
[i
];
3078 // all rows above us are not affected, so skip them
3082 m_selection
[i
] += rowAdjustment
;
3085 if(m_currentRow
> row
)
3086 ChangeCurrentRow(m_currentRow
+ rowAdjustment
);
3090 // Send the expanded event
3091 SendExpanderEvent(wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDED
,node
->GetItem());
3095 void wxDataViewMainWindow::Collapse(unsigned int row
)
3100 wxDataViewTreeNode
*node
= GetTreeNodeByRow(row
);
3104 if (!node
->HasChildren())
3109 if ( !SendExpanderEvent(wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSING
,node
->GetItem()) )
3111 // Vetoed by the event handler.
3115 // Find out if there are selected items below the current node.
3116 bool selectCollapsingRow
= false;
3117 const unsigned rowAdjustment
= node
->GetSubTreeCount();
3118 unsigned maxRowToBeTested
= row
+ rowAdjustment
;
3119 for(unsigned i
=0; i
<m_selection
.size(); ++i
)
3121 const unsigned testRow
= m_selection
[i
];
3122 if(testRow
> row
&& testRow
<= maxRowToBeTested
)
3124 selectCollapsingRow
= true;
3125 // get out as soon as we have found a node that is selected
3132 // If the node to be closed has selected items the user won't see those any longer.
3133 // We select the collapsing node in this case.
3134 if(selectCollapsingRow
)
3136 SelectAllRows(false);
3137 ChangeCurrentRow(row
);
3138 SelectRow(row
, true);
3139 SendSelectionChangedEvent(GetItemByRow(row
));
3143 // if there were no selected items below our node we still need to "fix" the
3144 // selection list to adjust for the changing of the row indices.
3145 // We actually do the opposite of what we are doing in Expand().
3146 for(unsigned i
=0; i
<m_selection
.size(); ++i
)
3148 const unsigned testRow
= m_selection
[i
];
3149 // all rows above us are not affected, so skip them
3153 m_selection
[i
] -= rowAdjustment
;
3156 // if the "current row" is being collapsed away we change it to the current row ;-)
3157 if(m_currentRow
> row
&& m_currentRow
<= maxRowToBeTested
)
3158 ChangeCurrentRow(row
);
3159 else if(m_currentRow
> row
)
3160 ChangeCurrentRow(m_currentRow
- rowAdjustment
);
3165 SendExpanderEvent(wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSED
,node
->GetItem());
3169 wxDataViewTreeNode
* wxDataViewMainWindow::FindNode( const wxDataViewItem
& item
)
3171 const wxDataViewModel
* model
= GetModel();
3178 // Compose the parent-chain for the item we are looking for
3179 wxVector
<wxDataViewItem
> parentChain
;
3180 wxDataViewItem
it( item
);
3183 parentChain
.push_back(it
);
3184 it
= model
->GetParent(it
);
3187 // Find the item along the parent-chain.
3188 // This algorithm is designed to speed up the node-finding method
3189 wxDataViewTreeNode
* node
= m_root
;
3190 for( unsigned iter
= parentChain
.size()-1; ; --iter
)
3192 if( node
->HasChildren() )
3194 if( node
->GetChildNodes().empty() )
3196 // Even though the item is a container, it doesn't have any
3197 // child nodes in the control's representation yet. We have
3198 // to realize its subtree now.
3200 ::BuildTreeHelper(model
, node
->GetItem(), node
);
3203 const wxDataViewTreeNodes
& nodes
= node
->GetChildNodes();
3206 for (unsigned i
= 0; i
< nodes
.GetCount(); ++i
)
3208 wxDataViewTreeNode
* currentNode
= nodes
[i
];
3209 if (currentNode
->GetItem() == parentChain
[iter
])
3211 if (currentNode
->GetItem() == item
)
3231 void wxDataViewMainWindow::HitTest( const wxPoint
& point
, wxDataViewItem
& item
,
3232 wxDataViewColumn
* &column
)
3234 wxDataViewColumn
*col
= NULL
;
3235 unsigned int cols
= GetOwner()->GetColumnCount();
3236 unsigned int colnum
= 0;
3238 m_owner
->CalcUnscrolledPosition( point
.x
, point
.y
, &x
, &y
);
3239 for (unsigned x_start
= 0; colnum
< cols
; colnum
++)
3241 col
= GetOwner()->GetColumnAt(colnum
);
3242 if (col
->IsHidden())
3243 continue; // skip it!
3245 unsigned int w
= col
->GetWidth();
3246 if (x_start
+w
>= (unsigned int)x
)
3253 item
= GetItemByRow( GetLineAt( y
) );
3256 wxRect
wxDataViewMainWindow::GetItemRect( const wxDataViewItem
& item
,
3257 const wxDataViewColumn
* column
)
3262 unsigned int cols
= GetOwner()->GetColumnCount();
3263 // If column is null the loop will compute the combined width of all columns.
3264 // Otherwise, it will compute the x position of the column we are looking for.
3265 for (unsigned int i
= 0; i
< cols
; i
++)
3267 wxDataViewColumn
* col
= GetOwner()->GetColumnAt( i
);
3272 if (col
->IsHidden())
3273 continue; // skip it!
3275 xpos
+= col
->GetWidth();
3276 width
+= col
->GetWidth();
3281 // If we have a column, we need can get its width directly.
3282 if(column
->IsHidden())
3285 width
= column
->GetWidth();
3290 // If we have no column, we reset the x position back to zero.
3294 // we have to take an expander column into account and compute its indentation
3295 // to get the correct x position where the actual text is
3297 int row
= GetRowByItem(item
);
3299 (column
== 0 || GetExpanderColumnOrFirstOne(GetOwner()) == column
) )
3301 wxDataViewTreeNode
* node
= GetTreeNodeByRow(row
);
3302 indent
= GetOwner()->GetIndent() * node
->GetIndentLevel();
3303 indent
= indent
+ m_lineHeight
; // use m_lineHeight as the width of the expander
3306 wxRect
itemRect( xpos
+ indent
,
3307 GetLineStart( row
),
3309 GetLineHeight( row
) );
3311 GetOwner()->CalcScrolledPosition( itemRect
.x
, itemRect
.y
,
3312 &itemRect
.x
, &itemRect
.y
);
3317 int wxDataViewMainWindow::RecalculateCount() const
3319 if (IsVirtualList())
3321 wxDataViewVirtualListModel
*list_model
=
3322 (wxDataViewVirtualListModel
*) GetModel();
3324 return list_model
->GetCount();
3328 return m_root
->GetSubTreeCount();
3332 class ItemToRowJob
: public DoJob
3335 ItemToRowJob(const wxDataViewItem
& item_
, wxVector
<wxDataViewItem
>::reverse_iterator iter
)
3342 // Maybe binary search will help to speed up this process
3343 virtual int operator() ( wxDataViewTreeNode
* node
)
3346 if( node
->GetItem() == item
)
3351 if( node
->GetItem() == *m_iter
)
3354 return DoJob::CONTINUE
;
3358 ret
+= node
->GetSubTreeCount();
3359 return DoJob::SKIP_SUBTREE
;
3364 // the row number is begin from zero
3365 int GetResult() const
3369 wxVector
<wxDataViewItem
>::reverse_iterator m_iter
;
3370 wxDataViewItem item
;
3375 int wxDataViewMainWindow::GetRowByItem(const wxDataViewItem
& item
) const
3377 const wxDataViewModel
* model
= GetModel();
3381 if (IsVirtualList())
3383 return wxPtrToUInt( item
.GetID() ) -1;
3390 // Compose the parent-chain of the item we are looking for
3391 wxVector
<wxDataViewItem
> parentChain
;
3392 wxDataViewItem
it( item
);
3395 parentChain
.push_back(it
);
3396 it
= model
->GetParent(it
);
3399 // add an 'invalid' item to represent our 'invisible' root node
3400 parentChain
.push_back(wxDataViewItem());
3402 // the parent chain was created by adding the deepest parent first.
3403 // so if we want to start at the root node, we have to iterate backwards through the vector
3404 ItemToRowJob
job( item
, parentChain
.rbegin() );
3405 Walker( m_root
, job
);
3406 return job
.GetResult();
3410 static void BuildTreeHelper( const wxDataViewModel
* model
, const wxDataViewItem
& item
,
3411 wxDataViewTreeNode
* node
)
3413 if( !model
->IsContainer( item
) )
3416 wxDataViewItemArray children
;
3417 unsigned int num
= model
->GetChildren( item
, children
);
3419 for ( unsigned int index
= 0; index
< num
; index
++ )
3421 wxDataViewTreeNode
*n
= new wxDataViewTreeNode(node
, children
[index
]);
3423 if( model
->IsContainer(children
[index
]) )
3424 n
->SetHasChildren( true );
3426 node
->InsertChild(n
, index
);
3429 wxASSERT( node
->IsOpen() );
3430 node
->ChangeSubTreeCount(+num
);
3433 void wxDataViewMainWindow::BuildTree(wxDataViewModel
* model
)
3437 if (GetModel()->IsVirtualListModel())
3443 m_root
= wxDataViewTreeNode::CreateRootNode();
3445 // First we define a invalid item to fetch the top-level elements
3446 wxDataViewItem item
;
3448 BuildTreeHelper( model
, item
, m_root
);
3452 void wxDataViewMainWindow::DestroyTree()
3454 if (!IsVirtualList())
3462 wxDataViewMainWindow::FindColumnForEditing(const wxDataViewItem
& item
, wxDataViewCellMode mode
)
3464 // Edit the current column editable in 'mode'. If no column is focused
3465 // (typically because the user has full row selected), try to find the
3466 // first editable column (this would typically be a checkbox for
3467 // wxDATAVIEW_CELL_ACTIVATABLE and we don't want to force the user to set
3468 // focus on the checkbox column; or on the only editable text column).
3470 wxDataViewColumn
*candidate
= m_currentCol
;
3473 !IsCellEditableInMode(item
, candidate
, mode
) &&
3474 !m_currentColSetByKeyboard
)
3476 // If current column was set by mouse to something not editable (in
3477 // 'mode') and the user pressed Space/F2 to edit it, treat the
3478 // situation as if there was whole-row focus, because that's what is
3479 // visually indicated and the mouse click could very well be targeted
3480 // on the row rather than on an individual cell.
3482 // But if it was done by keyboard, respect that even if the column
3483 // isn't editable, because focus is visually on that column and editing
3484 // something else would be surprising.
3490 const unsigned cols
= GetOwner()->GetColumnCount();
3491 for ( unsigned i
= 0; i
< cols
; i
++ )
3493 wxDataViewColumn
*c
= GetOwner()->GetColumnAt(i
);
3494 if ( c
->IsHidden() )
3497 if ( IsCellEditableInMode(item
, c
, mode
) )
3505 // If on container item without columns, only the expander column
3506 // may be directly editable:
3508 GetOwner()->GetExpanderColumn() != candidate
&&
3509 GetModel()->IsContainer(item
) &&
3510 !GetModel()->HasContainerColumns(item
) )
3512 candidate
= GetOwner()->GetExpanderColumn();
3518 if ( !IsCellEditableInMode(item
, candidate
, mode
) )
3524 bool wxDataViewMainWindow::IsCellEditableInMode(const wxDataViewItem
& item
,
3525 const wxDataViewColumn
*col
,
3526 wxDataViewCellMode mode
) const
3528 if ( col
->GetRenderer()->GetMode() != mode
)
3531 if ( !GetModel()->IsEnabled(item
, col
->GetModelColumn()) )
3537 void wxDataViewMainWindow::OnCharHook(wxKeyEvent
& event
)
3541 // Handle any keys special for the in-place editor and return without
3542 // calling Skip() below.
3543 switch ( event
.GetKeyCode() )
3546 m_editorRenderer
->CancelEditing();
3550 m_editorRenderer
->FinishEditing();
3558 void wxDataViewMainWindow::OnChar( wxKeyEvent
&event
)
3560 wxWindow
* const parent
= GetParent();
3562 // propagate the char event upwards
3563 wxKeyEvent
eventForParent(event
);
3564 eventForParent
.SetEventObject(parent
);
3565 if ( parent
->ProcessWindowEvent(eventForParent
) )
3568 if ( parent
->HandleAsNavigationKey(event
) )
3571 // no item -> nothing to do
3572 if (!HasCurrentRow())
3578 // don't use m_linesPerPage directly as it might not be computed yet
3579 const int pageSize
= GetCountPerPage();
3580 wxCHECK_RET( pageSize
, wxT("should have non zero page size") );
3582 switch ( event
.GetKeyCode() )
3585 if ( event
.HasModifiers() )
3592 // Enter activates the item, i.e. sends wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED to
3593 // it. Only if that event is not handled do we activate column renderer (which
3594 // is normally done by Space) or even inline editing.
3596 const wxDataViewItem item
= GetItemByRow(m_currentRow
);
3598 wxDataViewEvent
le(wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED
,
3601 le
.SetEventObject(parent
);
3602 le
.SetModel(GetModel());
3604 if ( parent
->ProcessWindowEvent(le
) )
3606 // else: fall through to WXK_SPACE handling
3610 if ( event
.HasModifiers() )
3617 // Space toggles activatable items or -- if not activatable --
3618 // starts inline editing (this is normally done using F2 on
3619 // Windows, but Space is common everywhere else, so use it too
3620 // for greater cross-platform compatibility).
3622 const wxDataViewItem item
= GetItemByRow(m_currentRow
);
3624 // Activate the current activatable column. If not column is focused (typically
3625 // because the user has full row selected), try to find the first activatable
3626 // column (this would typically be a checkbox and we don't want to force the user
3627 // to set focus on the checkbox column).
3628 wxDataViewColumn
*activatableCol
= FindColumnForEditing(item
, wxDATAVIEW_CELL_ACTIVATABLE
);
3630 if ( activatableCol
)
3632 const unsigned colIdx
= activatableCol
->GetModelColumn();
3633 const wxRect cell_rect
= GetOwner()->GetItemRect(item
, activatableCol
);
3635 wxDataViewRenderer
*cell
= activatableCol
->GetRenderer();
3636 cell
->PrepareForItem(GetModel(), item
, colIdx
);
3637 cell
->WXActivateCell(cell_rect
, GetModel(), item
, colIdx
, NULL
);
3641 // else: fall through to WXK_F2 handling
3645 if ( event
.HasModifiers() )
3652 if( !m_selection
.empty() )
3654 // Mimic Windows 7 behavior: edit the item that has focus
3655 // if it is selected and the first selected item if focus
3656 // is out of selection.
3658 if ( m_selection
.Index(m_currentRow
) != wxNOT_FOUND
)
3661 sel
= m_selection
[0];
3664 const wxDataViewItem item
= GetItemByRow(sel
);
3666 // Edit the current column. If no column is focused
3667 // (typically because the user has full row selected), try
3668 // to find the first editable column.
3669 wxDataViewColumn
*editableCol
= FindColumnForEditing(item
, wxDATAVIEW_CELL_EDITABLE
);
3672 GetOwner()->EditItem(item
, editableCol
);
3678 if ( m_currentRow
> 0 )
3679 OnVerticalNavigation( m_currentRow
- 1, event
);
3683 if ( m_currentRow
+ 1 < GetRowCount() )
3684 OnVerticalNavigation( m_currentRow
+ 1, event
);
3686 // Add the process for tree expanding/collapsing
3698 OnVerticalNavigation( GetRowCount() - 1, event
);
3703 OnVerticalNavigation( 0, event
);
3708 int steps
= pageSize
- 1;
3709 int index
= m_currentRow
- steps
;
3713 OnVerticalNavigation( index
, event
);
3719 int steps
= pageSize
- 1;
3720 unsigned int index
= m_currentRow
+ steps
;
3721 unsigned int count
= GetRowCount();
3722 if ( index
>= count
)
3725 OnVerticalNavigation( index
, event
);
3734 void wxDataViewMainWindow::OnVerticalNavigation(unsigned int newCurrent
, const wxKeyEvent
& event
)
3736 wxCHECK_RET( newCurrent
< GetRowCount(),
3737 wxT("invalid item index in OnVerticalNavigation()") );
3739 // if there is no selection, we cannot move it anywhere
3740 if (!HasCurrentRow())
3743 unsigned int oldCurrent
= m_currentRow
;
3745 // in single selection we just ignore Shift as we can't select several
3747 if ( event
.ShiftDown() && !IsSingleSel() )
3749 RefreshRow( oldCurrent
);
3751 ChangeCurrentRow( newCurrent
);
3753 // select all the items between the old and the new one
3754 if ( oldCurrent
> newCurrent
)
3756 newCurrent
= oldCurrent
;
3757 oldCurrent
= m_currentRow
;
3760 SelectRows( oldCurrent
, newCurrent
, true );
3761 if (oldCurrent
!=newCurrent
)
3762 SendSelectionChangedEvent(GetItemByRow(m_selection
[0]));
3766 RefreshRow( oldCurrent
);
3768 // all previously selected items are unselected unless ctrl is held
3769 if ( !event
.ControlDown() )
3770 SelectAllRows(false);
3772 ChangeCurrentRow( newCurrent
);
3774 if ( !event
.ControlDown() )
3776 SelectRow( m_currentRow
, true );
3777 SendSelectionChangedEvent(GetItemByRow(m_currentRow
));
3780 RefreshRow( m_currentRow
);
3783 GetOwner()->EnsureVisible( m_currentRow
, -1 );
3786 void wxDataViewMainWindow::OnLeftKey()
3790 TryAdvanceCurrentColumn(NULL
, /*forward=*/false);
3794 wxDataViewTreeNode
* node
= GetTreeNodeByRow(m_currentRow
);
3796 if ( TryAdvanceCurrentColumn(node
, /*forward=*/false) )
3799 // Because TryAdvanceCurrentColumn() return false, we are at the first
3800 // column or using whole-row selection. In this situation, we can use
3801 // the standard TreeView handling of the left key.
3802 if (node
->HasChildren() && node
->IsOpen())
3804 Collapse(m_currentRow
);
3808 // if the node is already closed, we move the selection to its parent
3809 wxDataViewTreeNode
*parent_node
= node
->GetParent();
3813 int parent
= GetRowByItem( parent_node
->GetItem() );
3816 unsigned int row
= m_currentRow
;
3817 SelectRow( row
, false);
3818 SelectRow( parent
, true );
3819 ChangeCurrentRow( parent
);
3820 GetOwner()->EnsureVisible( parent
, -1 );
3821 SendSelectionChangedEvent( parent_node
->GetItem() );
3828 void wxDataViewMainWindow::OnRightKey()
3832 TryAdvanceCurrentColumn(NULL
, /*forward=*/true);
3836 wxDataViewTreeNode
* node
= GetTreeNodeByRow(m_currentRow
);
3838 if ( node
->HasChildren() )
3840 if ( !node
->IsOpen() )
3842 Expand( m_currentRow
);
3846 // if the node is already open, we move the selection to the first child
3847 unsigned int row
= m_currentRow
;
3848 SelectRow( row
, false );
3849 SelectRow( row
+ 1, true );
3850 ChangeCurrentRow( row
+ 1 );
3851 GetOwner()->EnsureVisible( row
+ 1, -1 );
3852 SendSelectionChangedEvent( GetItemByRow(row
+1) );
3857 TryAdvanceCurrentColumn(node
, /*forward=*/true);
3862 bool wxDataViewMainWindow::TryAdvanceCurrentColumn(wxDataViewTreeNode
*node
, bool forward
)
3864 if ( GetOwner()->GetColumnCount() == 0 )
3867 if ( !m_useCellFocus
)
3872 // navigation shouldn't work in branch nodes without other columns:
3873 if ( node
->HasChildren() && !GetModel()->HasContainerColumns(node
->GetItem()) )
3877 if ( m_currentCol
== NULL
|| !m_currentColSetByKeyboard
)
3881 m_currentCol
= GetOwner()->GetColumnAt(1);
3882 m_currentColSetByKeyboard
= true;
3883 RefreshRow(m_currentRow
);
3890 int idx
= GetOwner()->GetColumnIndex(m_currentCol
) + (forward
? +1 : -1);
3892 if ( idx
>= (int)GetOwner()->GetColumnCount() )
3895 GetOwner()->EnsureVisible(m_currentRow
, idx
);
3899 // We are going to the left of the second column. Reset to whole-row
3900 // focus (which means first column would be edited).
3901 m_currentCol
= NULL
;
3902 RefreshRow(m_currentRow
);
3906 m_currentCol
= GetOwner()->GetColumnAt(idx
);
3907 m_currentColSetByKeyboard
= true;
3908 RefreshRow(m_currentRow
);
3912 void wxDataViewMainWindow::OnMouse( wxMouseEvent
&event
)
3914 if (event
.GetEventType() == wxEVT_MOUSEWHEEL
)
3916 // let the base handle mouse wheel events.
3921 // set the focus to ourself if any of the mouse buttons are pressed
3922 if(event
.ButtonDown() && !HasFocus())
3925 int x
= event
.GetX();
3926 int y
= event
.GetY();
3927 m_owner
->CalcUnscrolledPosition( x
, y
, &x
, &y
);
3928 wxDataViewColumn
*col
= NULL
;
3931 unsigned int cols
= GetOwner()->GetColumnCount();
3933 for (i
= 0; i
< cols
; i
++)
3935 wxDataViewColumn
*c
= GetOwner()->GetColumnAt( i
);
3937 continue; // skip it!
3939 if (x
< xpos
+ c
->GetWidth())
3944 xpos
+= c
->GetWidth();
3947 wxDataViewModel
* const model
= GetModel();
3949 const unsigned int current
= GetLineAt( y
);
3950 const wxDataViewItem item
= GetItemByRow(current
);
3952 // Handle right clicking here, before everything else as context menu
3953 // events should be sent even when we click outside of any item, unlike all
3955 if (event
.RightUp())
3957 wxWindow
*parent
= GetParent();
3958 wxDataViewEvent
le(wxEVT_COMMAND_DATAVIEW_ITEM_CONTEXT_MENU
, parent
->GetId());
3959 le
.SetEventObject(parent
);
3962 if ( item
.IsOk() && col
)
3965 le
.SetColumn( col
->GetModelColumn() );
3966 le
.SetDataViewColumn( col
);
3969 model
->GetValue( value
, item
, col
->GetModelColumn() );
3973 parent
->ProcessWindowEvent(le
);
3983 wxDataViewRenderer
*cell
= col
->GetRenderer();
3984 if ((current
>= GetRowCount()) || (x
> GetEndOfLastCol()))
3986 // Unselect all if below the last row ?
3991 wxDataViewColumn
* const
3992 expander
= GetExpanderColumnOrFirstOne(GetOwner());
3994 // Test whether the mouse is hovering over the expander (a.k.a tree "+"
3995 // button) and also determine the offset of the real cell start, skipping
3996 // the indentation and the expander itself.
3997 bool hoverOverExpander
= false;
3999 if ((!IsList()) && (expander
== col
))
4001 wxDataViewTreeNode
* node
= GetTreeNodeByRow(current
);
4003 int indent
= node
->GetIndentLevel();
4004 itemOffset
= GetOwner()->GetIndent()*indent
;
4006 if ( node
->HasChildren() )
4008 // we make the rectangle we are looking in a bit bigger than the actual
4009 // visual expander so the user can hit that little thing reliably
4010 wxRect
rect(itemOffset
,
4011 GetLineStart( current
) + (GetLineHeight(current
) - m_lineHeight
)/2,
4012 m_lineHeight
, m_lineHeight
);
4014 if( rect
.Contains(x
, y
) )
4016 // So the mouse is over the expander
4017 hoverOverExpander
= true;
4018 if (m_underMouse
&& m_underMouse
!= node
)
4020 // wxLogMessage("Undo the row: %d", GetRowByItem(m_underMouse->GetItem()));
4021 RefreshRow(GetRowByItem(m_underMouse
->GetItem()));
4023 if (m_underMouse
!= node
)
4025 // wxLogMessage("Do the row: %d", current);
4026 RefreshRow(current
);
4028 m_underMouse
= node
;
4032 // Account for the expander as well, even if this item doesn't have it,
4033 // its parent does so it still counts for the offset.
4034 itemOffset
+= m_lineHeight
;
4036 if (!hoverOverExpander
)
4038 if (m_underMouse
!= NULL
)
4040 // wxLogMessage("Undo the row: %d", GetRowByItem(m_underMouse->GetItem()));
4041 RefreshRow(GetRowByItem(m_underMouse
->GetItem()));
4042 m_underMouse
= NULL
;
4046 #if wxUSE_DRAG_AND_DROP
4047 if (event
.Dragging())
4049 if (m_dragCount
== 0)
4051 // we have to report the raw, physical coords as we want to be
4052 // able to call HitTest(event.m_pointDrag) from the user code to
4053 // get the item being dragged
4054 m_dragStart
= event
.GetPosition();
4059 if (m_dragCount
!= 3)
4062 if (event
.LeftIsDown())
4064 m_owner
->CalcUnscrolledPosition( m_dragStart
.x
, m_dragStart
.y
,
4065 &m_dragStart
.x
, &m_dragStart
.y
);
4066 unsigned int drag_item_row
= GetLineAt( m_dragStart
.y
);
4067 wxDataViewItem itemDragged
= GetItemByRow( drag_item_row
);
4069 // Notify cell about drag
4070 wxDataViewEvent
event( wxEVT_COMMAND_DATAVIEW_ITEM_BEGIN_DRAG
, m_owner
->GetId() );
4071 event
.SetEventObject( m_owner
);
4072 event
.SetItem( itemDragged
);
4073 event
.SetModel( model
);
4074 if (!m_owner
->HandleWindowEvent( event
))
4077 if (!event
.IsAllowed())
4080 wxDataObject
*obj
= event
.GetDataObject();
4084 wxDataViewDropSource
drag( this, drag_item_row
);
4085 drag
.SetData( *obj
);
4086 /* wxDragResult res = */ drag
.DoDragDrop();
4095 #endif // wxUSE_DRAG_AND_DROP
4097 bool simulateClick
= false;
4099 if (event
.ButtonDClick())
4101 m_renameTimer
->Stop();
4102 m_lastOnSame
= false;
4105 bool ignore_other_columns
=
4106 ((expander
!= col
) &&
4107 (model
->IsContainer(item
)) &&
4108 (!model
->HasContainerColumns(item
)));
4110 if (event
.LeftDClick())
4112 if(hoverOverExpander
)
4114 // a double click on the expander will be converted into a "simulated" normal click
4115 simulateClick
= true;
4117 else if ( current
== m_lineLastClicked
)
4119 wxWindow
*parent
= GetParent();
4120 wxDataViewEvent
le(wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED
, parent
->GetId());
4122 le
.SetColumn( col
->GetModelColumn() );
4123 le
.SetDataViewColumn( col
);
4124 le
.SetEventObject(parent
);
4125 le
.SetModel(GetModel());
4127 parent
->ProcessWindowEvent(le
);
4132 // The first click was on another item, so don't interpret this as
4133 // a double click, but as a simple click instead
4134 simulateClick
= true;
4138 if (event
.LeftUp() && !hoverOverExpander
)
4140 if (m_lineSelectSingleOnUp
!= (unsigned int)-1)
4142 // select single line
4143 SelectAllRows( false );
4144 SelectRow( m_lineSelectSingleOnUp
, true );
4145 SendSelectionChangedEvent( GetItemByRow(m_lineSelectSingleOnUp
) );
4148 // If the user click the expander, we do not do editing even if the column
4149 // with expander are editable
4150 if (m_lastOnSame
&& !ignore_other_columns
)
4152 if ((col
== m_currentCol
) && (current
== m_currentRow
) &&
4153 IsCellEditableInMode(item
, col
, wxDATAVIEW_CELL_EDITABLE
) )
4155 m_renameTimer
->Start( 100, true );
4159 m_lastOnSame
= false;
4160 m_lineSelectSingleOnUp
= (unsigned int)-1;
4162 else if(!event
.LeftUp())
4164 // This is necessary, because after a DnD operation in
4165 // from and to ourself, the up event is swallowed by the
4166 // DnD code. So on next non-up event (which means here and
4167 // now) m_lineSelectSingleOnUp should be reset.
4168 m_lineSelectSingleOnUp
= (unsigned int)-1;
4171 if (event
.RightDown())
4173 m_lineBeforeLastClicked
= m_lineLastClicked
;
4174 m_lineLastClicked
= current
;
4176 // If the item is already selected, do not update the selection.
4177 // Multi-selections should not be cleared if a selected item is clicked.
4178 if (!IsRowSelected(current
))
4180 SelectAllRows(false);
4181 const unsigned oldCurrent
= m_currentRow
;
4182 ChangeCurrentRow(current
);
4183 SelectRow(m_currentRow
,true);
4184 RefreshRow(oldCurrent
);
4185 SendSelectionChangedEvent(GetItemByRow( m_currentRow
) );
4188 else if (event
.MiddleDown())
4192 if((event
.LeftDown() || simulateClick
) && hoverOverExpander
)
4194 wxDataViewTreeNode
* node
= GetTreeNodeByRow(current
);
4196 // hoverOverExpander being true tells us that our node must be
4197 // valid and have children.
4198 // So we don't need any extra checks.
4199 if( node
->IsOpen() )
4204 else if ((event
.LeftDown() || simulateClick
) && !hoverOverExpander
)
4206 m_lineBeforeLastClicked
= m_lineLastClicked
;
4207 m_lineLastClicked
= current
;
4209 unsigned int oldCurrentRow
= m_currentRow
;
4210 bool oldWasSelected
= IsRowSelected(m_currentRow
);
4212 bool cmdModifierDown
= event
.CmdDown();
4213 if ( IsSingleSel() || !(cmdModifierDown
|| event
.ShiftDown()) )
4215 if ( IsSingleSel() || !IsRowSelected(current
) )
4217 SelectAllRows( false );
4218 ChangeCurrentRow(current
);
4219 SelectRow(m_currentRow
,true);
4220 SendSelectionChangedEvent(GetItemByRow( m_currentRow
) );
4222 else // multi sel & current is highlighted & no mod keys
4224 m_lineSelectSingleOnUp
= current
;
4225 ChangeCurrentRow(current
); // change focus
4228 else // multi sel & either ctrl or shift is down
4230 if (cmdModifierDown
)
4232 ChangeCurrentRow(current
);
4233 ReverseRowSelection(m_currentRow
);
4234 SendSelectionChangedEvent(GetItemByRow(m_currentRow
));
4236 else if (event
.ShiftDown())
4238 ChangeCurrentRow(current
);
4240 unsigned int lineFrom
= oldCurrentRow
,
4243 if ( lineTo
< lineFrom
)
4246 lineFrom
= m_currentRow
;
4249 SelectRows(lineFrom
, lineTo
, true);
4250 SendSelectionChangedEvent(GetItemByRow(m_selection
[0]) );
4252 else // !ctrl, !shift
4254 // test in the enclosing if should make it impossible
4255 wxFAIL_MSG( wxT("how did we get here?") );
4259 if (m_currentRow
!= oldCurrentRow
)
4260 RefreshRow( oldCurrentRow
);
4262 wxDataViewColumn
*oldCurrentCol
= m_currentCol
;
4264 // Update selection here...
4266 m_currentColSetByKeyboard
= false;
4268 m_lastOnSame
= !simulateClick
&& ((col
== oldCurrentCol
) &&
4269 (current
== oldCurrentRow
)) && oldWasSelected
;
4271 // Call ActivateCell() after everything else as under GTK+
4272 if ( IsCellEditableInMode(item
, col
, wxDATAVIEW_CELL_ACTIVATABLE
) )
4274 // notify cell about click
4275 cell
->PrepareForItem(model
, item
, col
->GetModelColumn());
4277 wxRect
cell_rect( xpos
+ itemOffset
,
4278 GetLineStart( current
),
4279 col
->GetWidth() - itemOffset
,
4280 GetLineHeight( current
) );
4282 // Report position relative to the cell's custom area, i.e.
4283 // no the entire space as given by the control but the one
4284 // used by the renderer after calculation of alignment etc.
4286 // adjust the rectangle ourselves to account for the alignment
4287 wxRect rectItem
= cell_rect
;
4288 const int align
= cell
->GetAlignment();
4289 if ( align
!= wxDVR_DEFAULT_ALIGNMENT
)
4291 const wxSize size
= cell
->GetSize();
4293 if ( size
.x
>= 0 && size
.x
< cell_rect
.width
)
4295 if ( align
& wxALIGN_CENTER_HORIZONTAL
)
4296 rectItem
.x
+= (cell_rect
.width
- size
.x
)/2;
4297 else if ( align
& wxALIGN_RIGHT
)
4298 rectItem
.x
+= cell_rect
.width
- size
.x
;
4299 // else: wxALIGN_LEFT is the default
4302 if ( size
.y
>= 0 && size
.y
< cell_rect
.height
)
4304 if ( align
& wxALIGN_CENTER_VERTICAL
)
4305 rectItem
.y
+= (cell_rect
.height
- size
.y
)/2;
4306 else if ( align
& wxALIGN_BOTTOM
)
4307 rectItem
.y
+= cell_rect
.height
- size
.y
;
4308 // else: wxALIGN_TOP is the default
4312 wxMouseEvent
event2(event
);
4313 event2
.m_x
-= rectItem
.x
;
4314 event2
.m_y
-= rectItem
.y
;
4315 m_owner
->CalcUnscrolledPosition(event2
.m_x
, event2
.m_y
, &event2
.m_x
, &event2
.m_y
);
4317 /* ignore ret */ cell
->WXActivateCell
4322 col
->GetModelColumn(),
4329 void wxDataViewMainWindow::OnSetFocus( wxFocusEvent
&event
)
4333 if (HasCurrentRow())
4339 void wxDataViewMainWindow::OnKillFocus( wxFocusEvent
&event
)
4343 if (HasCurrentRow())
4349 void wxDataViewMainWindow::OnColumnsCountChanged()
4351 int editableCount
= 0;
4353 const unsigned cols
= GetOwner()->GetColumnCount();
4354 for ( unsigned i
= 0; i
< cols
; i
++ )
4356 wxDataViewColumn
*c
= GetOwner()->GetColumnAt(i
);
4357 if ( c
->IsHidden() )
4359 if ( c
->GetRenderer()->GetMode() != wxDATAVIEW_CELL_INERT
)
4363 m_useCellFocus
= (editableCount
> 1);
4368 //-----------------------------------------------------------------------------
4370 //-----------------------------------------------------------------------------
4372 WX_DEFINE_LIST(wxDataViewColumnList
)
4374 IMPLEMENT_DYNAMIC_CLASS(wxDataViewCtrl
, wxDataViewCtrlBase
)
4375 BEGIN_EVENT_TABLE(wxDataViewCtrl
, wxDataViewCtrlBase
)
4376 EVT_SIZE(wxDataViewCtrl::OnSize
)
4379 wxDataViewCtrl::~wxDataViewCtrl()
4382 GetModel()->RemoveNotifier( m_notifier
);
4385 m_colsBestWidths
.clear();
4388 void wxDataViewCtrl::Init()
4390 m_cols
.DeleteContents(true);
4393 // No sorting column at start
4394 m_sortingColumnIdx
= wxNOT_FOUND
;
4396 m_headerArea
= NULL
;
4398 m_colsDirty
= false;
4401 bool wxDataViewCtrl::Create(wxWindow
*parent
,
4406 const wxValidator
& validator
,
4407 const wxString
& name
)
4409 // if ( (style & wxBORDER_MASK) == 0)
4410 // style |= wxBORDER_SUNKEN;
4414 if (!wxControl::Create( parent
, id
, pos
, size
,
4415 style
| wxScrolledWindowStyle
, validator
, name
))
4418 SetInitialSize(size
);
4421 MacSetClipChildren( true );
4424 m_clientArea
= new wxDataViewMainWindow( this, wxID_ANY
);
4426 // We use the cursor keys for moving the selection, not scrolling, so call
4427 // this method to ensure wxScrollHelperEvtHandler doesn't catch all
4428 // keyboard events forwarded to us from wxListMainWindow.
4429 DisableKeyboardScrolling();
4431 if (HasFlag(wxDV_NO_HEADER
))
4432 m_headerArea
= NULL
;
4434 m_headerArea
= new wxDataViewHeaderWindow(this);
4436 SetTargetWindow( m_clientArea
);
4438 wxBoxSizer
*sizer
= new wxBoxSizer( wxVERTICAL
);
4440 sizer
->Add( m_headerArea
, 0, wxGROW
);
4441 sizer
->Add( m_clientArea
, 1, wxGROW
);
4447 wxBorder
wxDataViewCtrl::GetDefaultBorder() const
4449 return wxBORDER_THEME
;
4453 WXLRESULT
wxDataViewCtrl::MSWWindowProc(WXUINT nMsg
,
4457 WXLRESULT rc
= wxDataViewCtrlBase::MSWWindowProc(nMsg
, wParam
, lParam
);
4460 // we need to process arrows ourselves for scrolling
4461 if ( nMsg
== WM_GETDLGCODE
)
4463 rc
|= DLGC_WANTARROWS
;
4471 wxSize
wxDataViewCtrl::GetSizeAvailableForScrollTarget(const wxSize
& size
)
4473 wxSize newsize
= size
;
4474 if (!HasFlag(wxDV_NO_HEADER
) && (m_headerArea
))
4475 newsize
.y
-= m_headerArea
->GetSize().y
;
4480 void wxDataViewCtrl::OnSize( wxSizeEvent
&WXUNUSED(event
) )
4482 // We need to override OnSize so that our scrolled
4483 // window a) does call Layout() to use sizers for
4484 // positioning the controls but b) does not query
4485 // the sizer for their size and use that for setting
4486 // the scrollable area as set that ourselves by
4487 // calling SetScrollbar() further down.
4493 // We must redraw the headers if their height changed. Normally this
4494 // shouldn't happen as the control shouldn't let itself be resized beneath
4495 // its minimal height but avoid the display artefacts that appear if it
4496 // does happen, e.g. because there is really not enough vertical space.
4497 if ( !HasFlag(wxDV_NO_HEADER
) && m_headerArea
&&
4498 m_headerArea
->GetSize().y
<= m_headerArea
->GetBestSize(). y
)
4500 m_headerArea
->Refresh();
4504 void wxDataViewCtrl::SetFocus()
4507 m_clientArea
->SetFocus();
4510 bool wxDataViewCtrl::AssociateModel( wxDataViewModel
*model
)
4512 if (!wxDataViewCtrlBase::AssociateModel( model
))
4515 m_notifier
= new wxGenericDataViewModelNotifier( m_clientArea
);
4517 model
->AddNotifier( m_notifier
);
4519 m_clientArea
->DestroyTree();
4521 m_clientArea
->BuildTree(model
);
4523 m_clientArea
->UpdateDisplay();
4528 #if wxUSE_DRAG_AND_DROP
4530 bool wxDataViewCtrl::EnableDragSource( const wxDataFormat
&format
)
4532 return m_clientArea
->EnableDragSource( format
);
4535 bool wxDataViewCtrl::EnableDropTarget( const wxDataFormat
&format
)
4537 return m_clientArea
->EnableDropTarget( format
);
4540 #endif // wxUSE_DRAG_AND_DROP
4542 bool wxDataViewCtrl::AppendColumn( wxDataViewColumn
*col
)
4544 if (!wxDataViewCtrlBase::AppendColumn(col
))
4547 m_cols
.Append( col
);
4548 m_colsBestWidths
.push_back(0);
4549 OnColumnsCountChanged();
4553 bool wxDataViewCtrl::PrependColumn( wxDataViewColumn
*col
)
4555 if (!wxDataViewCtrlBase::PrependColumn(col
))
4558 m_cols
.Insert( col
);
4559 m_colsBestWidths
.insert(m_colsBestWidths
.begin(), 0);
4560 OnColumnsCountChanged();
4564 bool wxDataViewCtrl::InsertColumn( unsigned int pos
, wxDataViewColumn
*col
)
4566 if (!wxDataViewCtrlBase::InsertColumn(pos
,col
))
4569 m_cols
.Insert( pos
, col
);
4570 m_colsBestWidths
.insert(m_colsBestWidths
.begin() + pos
, 0);
4571 OnColumnsCountChanged();
4575 void wxDataViewCtrl::OnColumnChange(unsigned int idx
)
4578 m_headerArea
->UpdateColumn(idx
);
4580 m_clientArea
->UpdateDisplay();
4583 void wxDataViewCtrl::OnColumnsCountChanged()
4586 m_headerArea
->SetColumnCount(GetColumnCount());
4588 m_clientArea
->OnColumnsCountChanged();
4591 void wxDataViewCtrl::DoSetExpanderColumn()
4593 m_clientArea
->UpdateDisplay();
4596 void wxDataViewCtrl::DoSetIndent()
4598 m_clientArea
->UpdateDisplay();
4601 unsigned int wxDataViewCtrl::GetColumnCount() const
4603 return m_cols
.GetCount();
4606 bool wxDataViewCtrl::SetRowHeight( int lineHeight
)
4608 if ( !m_clientArea
)
4611 m_clientArea
->SetRowHeight(lineHeight
);
4616 wxDataViewColumn
* wxDataViewCtrl::GetColumn( unsigned int idx
) const
4621 wxDataViewColumn
*wxDataViewCtrl::GetColumnAt(unsigned int pos
) const
4623 // columns can't be reordered if there is no header window which allows
4625 const unsigned idx
= m_headerArea
? m_headerArea
->GetColumnsOrder()[pos
]
4628 return GetColumn(idx
);
4631 int wxDataViewCtrl::GetColumnIndex(const wxDataViewColumn
*column
) const
4633 const unsigned count
= m_cols
.size();
4634 for ( unsigned n
= 0; n
< count
; n
++ )
4636 if ( m_cols
[n
] == column
)
4643 unsigned int wxDataViewCtrl::GetBestColumnWidth(int idx
) const
4645 if ( m_colsBestWidths
[idx
] != 0 )
4646 return m_colsBestWidths
[idx
];
4648 const int count
= m_clientArea
->GetRowCount();
4649 wxDataViewColumn
*column
= GetColumn(idx
);
4650 wxDataViewRenderer
*renderer
=
4651 const_cast<wxDataViewRenderer
*>(column
->GetRenderer());
4653 class MaxWidthCalculator
4656 MaxWidthCalculator(const wxDataViewCtrl
*dvc
,
4657 wxDataViewMainWindow
*clientArea
,
4658 wxDataViewRenderer
*renderer
,
4659 const wxDataViewModel
*model
,
4664 m_clientArea(clientArea
),
4665 m_renderer(renderer
),
4668 m_expanderSize(expanderSize
)
4672 !clientArea
->IsList() &&
4674 GetExpanderColumnOrFirstOne(const_cast<wxDataViewCtrl
*>(dvc
)) == dvc
->GetColumnAt(column
));
4677 void UpdateWithWidth(int width
)
4679 m_width
= wxMax(m_width
, width
);
4682 void UpdateWithRow(int row
)
4685 wxDataViewItem item
;
4687 if ( m_isExpanderCol
)
4689 wxDataViewTreeNode
*node
= m_clientArea
->GetTreeNodeByRow(row
);
4690 item
= node
->GetItem();
4691 indent
= m_dvc
->GetIndent() * node
->GetIndentLevel() + m_expanderSize
;
4695 item
= m_clientArea
->GetItemByRow(row
);
4698 m_renderer
->PrepareForItem(m_model
, item
, m_column
);
4699 m_width
= wxMax(m_width
, m_renderer
->GetSize().x
+ indent
);
4702 int GetMaxWidth() const { return m_width
; }
4706 const wxDataViewCtrl
*m_dvc
;
4707 wxDataViewMainWindow
*m_clientArea
;
4708 wxDataViewRenderer
*m_renderer
;
4709 const wxDataViewModel
*m_model
;
4711 bool m_isExpanderCol
;
4715 MaxWidthCalculator
calculator(this, m_clientArea
, renderer
,
4716 GetModel(), column
->GetModelColumn(),
4717 m_clientArea
->GetRowHeight());
4720 calculator
.UpdateWithWidth(m_headerArea
->GetColumnTitleWidth(*column
));
4722 // The code below deserves some explanation. For very large controls, we
4723 // simply can't afford to calculate sizes for all items, it takes too
4724 // long. So the best we can do is to check the first and the last N/2
4725 // items in the control for some sufficiently large N and calculate best
4726 // sizes from that. That can result in the calculated best width being too
4727 // small for some outliers, but it's better to get slightly imperfect
4728 // result than to wait several seconds after every update. To avoid highly
4729 // visible miscalculations, we also include all currently visible items
4730 // no matter what. Finally, the value of N is determined dynamically by
4731 // measuring how much time we spent on the determining item widths so far.
4734 int top_part_end
= count
;
4735 static const long CALC_TIMEOUT
= 20/*ms*/;
4736 // don't call wxStopWatch::Time() too often
4737 static const unsigned CALC_CHECK_FREQ
= 100;
4740 // use some hard-coded limit, that's the best we can do without timer
4741 int top_part_end
= wxMin(500, count
);
4742 #endif // wxUSE_STOPWATCH/!wxUSE_STOPWATCH
4746 for ( row
= 0; row
< top_part_end
; row
++ )
4749 if ( row
% CALC_CHECK_FREQ
== CALC_CHECK_FREQ
-1 &&
4750 timer
.Time() > CALC_TIMEOUT
)
4752 #endif // wxUSE_STOPWATCH
4753 calculator
.UpdateWithRow(row
);
4756 // row is the first unmeasured item now; that's our value of N/2
4762 // add bottom N/2 items now:
4763 const int bottom_part_start
= wxMax(row
, count
- row
);
4764 for ( row
= bottom_part_start
; row
< count
; row
++ )
4766 calculator
.UpdateWithRow(row
);
4769 // finally, include currently visible items in the calculation:
4770 const wxPoint origin
= CalcUnscrolledPosition(wxPoint(0, 0));
4771 int first_visible
= m_clientArea
->GetLineAt(origin
.y
);
4772 int last_visible
= m_clientArea
->GetLineAt(origin
.y
+ GetClientSize().y
);
4774 first_visible
= wxMax(first_visible
, top_part_end
);
4775 last_visible
= wxMin(bottom_part_start
, last_visible
);
4777 for ( row
= first_visible
; row
< last_visible
; row
++ )
4779 calculator
.UpdateWithRow(row
);
4782 wxLogTrace("dataview",
4783 "determined best size from %d top, %d bottom plus %d more visible items out of %d total",
4785 count
- bottom_part_start
,
4786 wxMax(0, last_visible
- first_visible
),
4790 int max_width
= calculator
.GetMaxWidth();
4791 if ( max_width
> 0 )
4792 max_width
+= 2 * PADDING_RIGHTLEFT
;
4794 const_cast<wxDataViewCtrl
*>(this)->m_colsBestWidths
[idx
] = max_width
;
4798 void wxDataViewCtrl::ColumnMoved(wxDataViewColumn
* WXUNUSED(col
),
4799 unsigned int WXUNUSED(new_pos
))
4801 // do _not_ reorder m_cols elements here, they should always be in the
4802 // order in which columns were added, we only display the columns in
4804 m_clientArea
->UpdateDisplay();
4807 bool wxDataViewCtrl::DeleteColumn( wxDataViewColumn
*column
)
4809 wxDataViewColumnList::compatibility_iterator ret
= m_cols
.Find( column
);
4813 m_colsBestWidths
.erase(m_colsBestWidths
.begin() + GetColumnIndex(column
));
4816 if ( m_clientArea
->GetCurrentColumn() == column
)
4817 m_clientArea
->ClearCurrentColumn();
4819 OnColumnsCountChanged();
4824 bool wxDataViewCtrl::ClearColumns()
4826 SetExpanderColumn(NULL
);
4828 m_colsBestWidths
.clear();
4830 m_clientArea
->ClearCurrentColumn();
4832 OnColumnsCountChanged();
4837 void wxDataViewCtrl::InvalidateColBestWidth(int idx
)
4839 m_colsBestWidths
[idx
] = 0;
4843 void wxDataViewCtrl::InvalidateColBestWidths()
4845 m_colsBestWidths
.clear();
4846 m_colsBestWidths
.resize(m_cols
.size());
4850 void wxDataViewCtrl::UpdateColWidths()
4852 if ( !m_headerArea
)
4855 const unsigned len
= m_colsBestWidths
.size();
4856 for ( unsigned i
= 0; i
< len
; i
++ )
4858 if ( m_colsBestWidths
[i
] == 0 )
4859 m_headerArea
->UpdateColumn(i
);
4863 void wxDataViewCtrl::OnInternalIdle()
4865 wxDataViewCtrlBase::OnInternalIdle();
4869 m_colsDirty
= false;
4874 int wxDataViewCtrl::GetColumnPosition( const wxDataViewColumn
*column
) const
4876 unsigned int len
= GetColumnCount();
4877 for ( unsigned int i
= 0; i
< len
; i
++ )
4879 wxDataViewColumn
* col
= GetColumnAt(i
);
4887 wxDataViewColumn
*wxDataViewCtrl::GetSortingColumn() const
4889 return m_sortingColumnIdx
== wxNOT_FOUND
? NULL
4890 : GetColumn(m_sortingColumnIdx
);
4893 wxDataViewItem
wxDataViewCtrl::DoGetCurrentItem() const
4895 return GetItemByRow(m_clientArea
->GetCurrentRow());
4898 void wxDataViewCtrl::DoSetCurrentItem(const wxDataViewItem
& item
)
4900 const int row
= m_clientArea
->GetRowByItem(item
);
4902 const unsigned oldCurrent
= m_clientArea
->GetCurrentRow();
4903 if ( static_cast<unsigned>(row
) != oldCurrent
)
4905 m_clientArea
->ChangeCurrentRow(row
);
4906 m_clientArea
->RefreshRow(oldCurrent
);
4907 m_clientArea
->RefreshRow(row
);
4911 wxDataViewColumn
*wxDataViewCtrl::GetCurrentColumn() const
4913 return m_clientArea
->GetCurrentColumn();
4916 int wxDataViewCtrl::GetSelectedItemsCount() const
4918 return m_clientArea
->GetSelections().size();
4921 int wxDataViewCtrl::GetSelections( wxDataViewItemArray
& sel
) const
4924 const wxDataViewSelection
& selections
= m_clientArea
->GetSelections();
4926 const size_t len
= selections
.size();
4927 for ( size_t i
= 0; i
< len
; i
++ )
4929 wxDataViewItem item
= m_clientArea
->GetItemByRow(selections
[i
]);
4936 wxFAIL_MSG( "invalid item in selection - bad internal state" );
4943 void wxDataViewCtrl::SetSelections( const wxDataViewItemArray
& sel
)
4945 wxDataViewSelection
selection(wxDataViewSelectionCmp
);
4947 wxDataViewItem last_parent
;
4949 int len
= sel
.GetCount();
4950 for( int i
= 0; i
< len
; i
++ )
4952 wxDataViewItem item
= sel
[i
];
4953 wxDataViewItem parent
= GetModel()->GetParent( item
);
4956 if (parent
!= last_parent
)
4957 ExpandAncestors(item
);
4960 last_parent
= parent
;
4961 int row
= m_clientArea
->GetRowByItem( item
);
4963 selection
.Add( static_cast<unsigned int>(row
) );
4966 m_clientArea
->SetSelections( selection
);
4969 void wxDataViewCtrl::Select( const wxDataViewItem
& item
)
4971 ExpandAncestors( item
);
4973 int row
= m_clientArea
->GetRowByItem( item
);
4976 // Unselect all rows before select another in the single select mode
4977 if (m_clientArea
->IsSingleSel())
4978 m_clientArea
->SelectAllRows(false);
4980 m_clientArea
->SelectRow(row
, true);
4982 // Also set focus to the selected item
4983 m_clientArea
->ChangeCurrentRow( row
);
4987 void wxDataViewCtrl::Unselect( const wxDataViewItem
& item
)
4989 int row
= m_clientArea
->GetRowByItem( item
);
4991 m_clientArea
->SelectRow(row
, false);
4994 bool wxDataViewCtrl::IsSelected( const wxDataViewItem
& item
) const
4996 int row
= m_clientArea
->GetRowByItem( item
);
4999 return m_clientArea
->IsRowSelected(row
);
5004 void wxDataViewCtrl::SetAlternateRowColour(const wxColour
& colour
)
5006 m_alternateRowColour
= colour
;
5009 void wxDataViewCtrl::SelectAll()
5011 m_clientArea
->SelectAllRows(true);
5014 void wxDataViewCtrl::UnselectAll()
5016 m_clientArea
->SelectAllRows(false);
5019 void wxDataViewCtrl::EnsureVisible( int row
, int column
)
5023 if( row
> (int) m_clientArea
->GetRowCount() )
5024 row
= m_clientArea
->GetRowCount();
5026 int first
= m_clientArea
->GetFirstVisibleRow();
5027 int last
= m_clientArea
->GetLastVisibleRow();
5029 m_clientArea
->ScrollTo( row
, column
);
5030 else if( row
> last
)
5031 m_clientArea
->ScrollTo( row
- last
+ first
, column
);
5033 m_clientArea
->ScrollTo( first
, column
);
5036 void wxDataViewCtrl::EnsureVisible( const wxDataViewItem
& item
, const wxDataViewColumn
* column
)
5038 ExpandAncestors( item
);
5040 m_clientArea
->RecalculateDisplay();
5042 int row
= m_clientArea
->GetRowByItem(item
);
5045 if( column
== NULL
)
5046 EnsureVisible(row
, -1);
5048 EnsureVisible( row
, GetColumnIndex(column
) );
5053 void wxDataViewCtrl::HitTest( const wxPoint
& point
, wxDataViewItem
& item
,
5054 wxDataViewColumn
* &column
) const
5056 m_clientArea
->HitTest(point
, item
, column
);
5059 wxRect
wxDataViewCtrl::GetItemRect( const wxDataViewItem
& item
,
5060 const wxDataViewColumn
* column
) const
5062 return m_clientArea
->GetItemRect(item
, column
);
5065 wxDataViewItem
wxDataViewCtrl::GetItemByRow( unsigned int row
) const
5067 return m_clientArea
->GetItemByRow( row
);
5070 int wxDataViewCtrl::GetRowByItem( const wxDataViewItem
& item
) const
5072 return m_clientArea
->GetRowByItem( item
);
5075 void wxDataViewCtrl::Expand( const wxDataViewItem
& item
)
5077 ExpandAncestors( item
);
5079 int row
= m_clientArea
->GetRowByItem( item
);
5081 m_clientArea
->Expand(row
);
5084 void wxDataViewCtrl::Collapse( const wxDataViewItem
& item
)
5086 int row
= m_clientArea
->GetRowByItem( item
);
5088 m_clientArea
->Collapse(row
);
5091 bool wxDataViewCtrl::IsExpanded( const wxDataViewItem
& item
) const
5093 int row
= m_clientArea
->GetRowByItem( item
);
5095 return m_clientArea
->IsExpanded(row
);
5099 void wxDataViewCtrl::EditItem(const wxDataViewItem
& item
, const wxDataViewColumn
*column
)
5101 wxCHECK_RET( item
.IsOk(), "invalid item" );
5102 wxCHECK_RET( column
, "no column provided" );
5104 m_clientArea
->StartEditing(item
, column
);
5107 #endif // !wxUSE_GENERICDATAVIEWCTRL
5109 #endif // wxUSE_DATAVIEWCTRL