1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/datavgen.cpp
3 // Purpose: wxDataViewCtrl generic implementation
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
13 #if wxUSE_DATAVIEWCTRL
15 #include "wx/dataview.h"
17 #ifdef wxUSE_GENERICDATAVIEWCTRL
24 #include "wx/stockitem.h"
25 #include "wx/dcclient.h"
26 #include "wx/calctrl.h"
27 #include "wx/popupwin.h"
28 #include "wx/renderer.h"
30 #include "wx/settings.h"
33 #include "wx/msw/wrapwin.h"
36 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
42 //-----------------------------------------------------------------------------
43 // wxDataViewHeaderWindow
44 //-----------------------------------------------------------------------------
46 class wxDataViewHeaderWindow
: public wxWindow
49 wxDataViewHeaderWindow( wxDataViewCtrl
*parent
,
51 const wxPoint
&pos
= wxDefaultPosition
,
52 const wxSize
&size
= wxDefaultSize
,
53 const wxString
&name
= wxT("wxdataviewctrlheaderwindow") );
54 ~wxDataViewHeaderWindow();
56 void SetOwner( wxDataViewCtrl
* owner
) { m_owner
= owner
; }
57 wxDataViewCtrl
*GetOwner() { return m_owner
; }
59 void OnPaint( wxPaintEvent
&event
);
60 void OnMouse( wxMouseEvent
&event
);
61 void OnSetFocus( wxFocusEvent
&event
);
64 wxDataViewCtrl
*m_owner
;
65 wxCursor
*m_resizeCursor
;
68 DECLARE_DYNAMIC_CLASS(wxDataViewHeaderWindow
)
72 //-----------------------------------------------------------------------------
73 // wxDataViewRenameTimer
74 //-----------------------------------------------------------------------------
76 class wxDataViewRenameTimer
: public wxTimer
79 wxDataViewMainWindow
*m_owner
;
82 wxDataViewRenameTimer( wxDataViewMainWindow
*owner
);
86 //-----------------------------------------------------------------------------
87 // wxDataViewTextCtrlWrapper: wraps a wxTextCtrl for inline editing
88 //-----------------------------------------------------------------------------
90 class wxDataViewTextCtrlWrapper
: public wxEvtHandler
93 // NB: text must be a valid object but not Create()d yet
94 wxDataViewTextCtrlWrapper( wxDataViewMainWindow
*owner
,
96 wxDataViewListModel
*model
,
97 size_t col
, size_t row
,
100 wxTextCtrl
*GetText() const { return m_text
; }
102 void AcceptChangesAndFinish();
105 void OnChar( wxKeyEvent
&event
);
106 void OnKeyUp( wxKeyEvent
&event
);
107 void OnKillFocus( wxFocusEvent
&event
);
109 bool AcceptChanges();
113 wxDataViewMainWindow
*m_owner
;
115 wxString m_startValue
;
116 wxDataViewListModel
*m_model
;
120 bool m_aboutToFinish
;
122 DECLARE_EVENT_TABLE()
125 //-----------------------------------------------------------------------------
126 // wxDataViewMainWindow
127 //-----------------------------------------------------------------------------
129 WX_DEFINE_SORTED_ARRAY_SIZE_T( size_t, wxDataViewSelection
);
131 class wxDataViewMainWindow
: public wxWindow
134 wxDataViewMainWindow( wxDataViewCtrl
*parent
,
136 const wxPoint
&pos
= wxDefaultPosition
,
137 const wxSize
&size
= wxDefaultSize
,
138 const wxString
&name
= wxT("wxdataviewctrlmainwindow") );
139 ~wxDataViewMainWindow();
141 // notifications from wxDataViewListModel
144 bool RowInserted( size_t before
);
145 bool RowDeleted( size_t row
);
146 bool RowChanged( size_t row
);
147 bool ValueChanged( size_t col
, size_t row
);
148 bool RowsReordered( size_t *new_order
);
151 void SetOwner( wxDataViewCtrl
* owner
) { m_owner
= owner
; }
152 wxDataViewCtrl
*GetOwner() { return m_owner
; }
154 void OnPaint( wxPaintEvent
&event
);
155 void OnArrowChar(size_t newCurrent
, const wxKeyEvent
& event
);
156 void OnChar( wxKeyEvent
&event
);
157 void OnMouse( wxMouseEvent
&event
);
158 void OnSetFocus( wxFocusEvent
&event
);
159 void OnKillFocus( wxFocusEvent
&event
);
161 void UpdateDisplay();
162 void RecalculateDisplay();
163 void OnInternalIdle();
165 void OnRenameTimer();
166 void FinishEditing( wxTextCtrl
*text
);
168 void ScrollWindow( int dx
, int dy
, const wxRect
*rect
);
170 bool HasCurrentRow() { return m_currentRow
!= (size_t)-1; }
171 void ChangeCurrentRow( size_t row
);
173 bool IsSingleSel() const { return !GetParent()->HasFlag(wxDV_MULTIPLE
); };
174 bool IsEmpty() { return GetRowCount() == 0; }
176 int GetCountPerPage();
177 int GetEndOfLastCol();
178 size_t GetFirstVisibleRow();
179 size_t GetLastVisibleRow();
182 void SelectAllRows( bool on
);
183 void SelectRow( size_t row
, bool on
);
184 void SelectRows( size_t from
, size_t to
, bool on
);
185 void ReverseRowSelection( size_t row
);
186 bool IsRowSelected( size_t row
);
188 void RefreshRow( size_t row
);
189 void RefreshRows( size_t from
, size_t to
);
190 void RefreshRowsAfter( size_t firstRow
);
193 wxDataViewCtrl
*m_owner
;
197 wxDataViewColumn
*m_currentCol
;
199 wxDataViewSelection m_selection
;
201 wxDataViewRenameTimer
*m_renameTimer
;
202 wxDataViewTextCtrlWrapper
*m_textctrlWrapper
;
210 // for double click logic
211 size_t m_lineLastClicked
,
212 m_lineBeforeLastClicked
,
213 m_lineSelectSingleOnUp
;
216 DECLARE_DYNAMIC_CLASS(wxDataViewMainWindow
)
217 DECLARE_EVENT_TABLE()
220 // ---------------------------------------------------------
221 // wxGenericDataViewListModelNotifier
222 // ---------------------------------------------------------
224 class wxGenericDataViewListModelNotifier
: public wxDataViewListModelNotifier
227 wxGenericDataViewListModelNotifier( wxDataViewMainWindow
*mainWindow
)
228 { m_mainWindow
= mainWindow
; }
230 virtual bool RowAppended()
231 { return m_mainWindow
->RowAppended(); }
232 virtual bool RowPrepended()
233 { return m_mainWindow
->RowPrepended(); }
234 virtual bool RowInserted( size_t before
)
235 { return m_mainWindow
->RowInserted( before
); }
236 virtual bool RowDeleted( size_t row
)
237 { return m_mainWindow
->RowDeleted( row
); }
238 virtual bool RowChanged( size_t row
)
239 { return m_mainWindow
->RowChanged( row
); }
240 virtual bool ValueChanged( size_t col
, size_t row
)
241 { return m_mainWindow
->ValueChanged( col
, row
); }
242 virtual bool RowsReordered( size_t *new_order
)
243 { return m_mainWindow
->RowsReordered( new_order
); }
244 virtual bool Cleared()
245 { return m_mainWindow
->Cleared(); }
247 wxDataViewMainWindow
*m_mainWindow
;
250 // ---------------------------------------------------------
252 // ---------------------------------------------------------
254 IMPLEMENT_ABSTRACT_CLASS(wxDataViewCell
, wxDataViewCellBase
)
256 wxDataViewCell::wxDataViewCell( const wxString
&varianttype
, wxDataViewCellMode mode
) :
257 wxDataViewCellBase( varianttype
, mode
)
262 wxDataViewCell::~wxDataViewCell()
268 wxDC
*wxDataViewCell::GetDC()
272 if (GetOwner() == NULL
)
274 if (GetOwner()->GetOwner() == NULL
)
276 m_dc
= new wxClientDC( GetOwner()->GetOwner() );
282 // ---------------------------------------------------------
283 // wxDataViewCustomCell
284 // ---------------------------------------------------------
286 IMPLEMENT_ABSTRACT_CLASS(wxDataViewCustomCell
, wxDataViewCell
)
288 wxDataViewCustomCell::wxDataViewCustomCell( const wxString
&varianttype
,
289 wxDataViewCellMode mode
) :
290 wxDataViewCell( varianttype
, mode
)
294 // ---------------------------------------------------------
295 // wxDataViewTextCell
296 // ---------------------------------------------------------
298 IMPLEMENT_ABSTRACT_CLASS(wxDataViewTextCell
, wxDataViewCustomCell
)
300 wxDataViewTextCell::wxDataViewTextCell( const wxString
&varianttype
, wxDataViewCellMode mode
) :
301 wxDataViewCustomCell( varianttype
, mode
)
305 bool wxDataViewTextCell::SetValue( const wxVariant
&value
)
307 m_text
= value
.GetString();
312 bool wxDataViewTextCell::GetValue( wxVariant
& WXUNUSED(value
) )
317 bool wxDataViewTextCell::Render( wxRect cell
, wxDC
*dc
, int WXUNUSED(state
) )
319 dc
->DrawText( m_text
, cell
.x
, cell
.y
);
324 wxSize
wxDataViewTextCell::GetSize()
326 return wxSize(80,20);
329 // ---------------------------------------------------------
330 // wxDataViewToggleCell
331 // ---------------------------------------------------------
333 IMPLEMENT_ABSTRACT_CLASS(wxDataViewToggleCell
, wxDataViewCustomCell
)
335 wxDataViewToggleCell::wxDataViewToggleCell( const wxString
&varianttype
,
336 wxDataViewCellMode mode
) :
337 wxDataViewCustomCell( varianttype
, mode
)
342 bool wxDataViewToggleCell::SetValue( const wxVariant
&value
)
344 m_toggle
= value
.GetBool();
349 bool wxDataViewToggleCell::GetValue( wxVariant
&WXUNUSED(value
) )
354 bool wxDataViewToggleCell::Render( wxRect cell
, wxDC
*dc
, int WXUNUSED(state
) )
356 // User wxRenderer here
359 rect
.x
= cell
.x
+ cell
.width
/2 - 10;
361 rect
.y
= cell
.y
+ cell
.height
/2 - 10;
366 flags
|= wxCONTROL_CHECKED
;
367 if (GetMode() != wxDATAVIEW_CELL_ACTIVATABLE
)
368 flags
|= wxCONTROL_DISABLED
;
370 wxRendererNative::Get().DrawCheckButton(
371 GetOwner()->GetOwner(),
379 bool wxDataViewToggleCell::Activate( wxRect
WXUNUSED(cell
), wxDataViewListModel
*model
, size_t col
, size_t row
)
381 bool value
= !m_toggle
;
382 wxVariant variant
= value
;
383 model
->SetValue( variant
, col
, row
);
384 model
->ValueChanged( col
, row
);
388 wxSize
wxDataViewToggleCell::GetSize()
390 return wxSize(20,20);
393 // ---------------------------------------------------------
394 // wxDataViewProgressCell
395 // ---------------------------------------------------------
397 IMPLEMENT_ABSTRACT_CLASS(wxDataViewProgressCell
, wxDataViewCustomCell
)
399 wxDataViewProgressCell::wxDataViewProgressCell( const wxString
&label
,
400 const wxString
&varianttype
, wxDataViewCellMode mode
) :
401 wxDataViewCustomCell( varianttype
, mode
)
407 wxDataViewProgressCell::~wxDataViewProgressCell()
411 bool wxDataViewProgressCell::SetValue( const wxVariant
&value
)
413 m_value
= (long) value
;
415 if (m_value
< 0) m_value
= 0;
416 if (m_value
> 100) m_value
= 100;
421 bool wxDataViewProgressCell::Render( wxRect cell
, wxDC
*dc
, int WXUNUSED(state
) )
423 double pct
= (double)m_value
/ 100.0;
425 bar
.width
= (int)(cell
.width
* pct
);
426 dc
->SetPen( *wxTRANSPARENT_PEN
);
427 dc
->SetBrush( *wxBLUE_BRUSH
);
428 dc
->DrawRectangle( bar
);
430 dc
->SetBrush( *wxTRANSPARENT_BRUSH
);
431 dc
->SetPen( *wxBLACK_PEN
);
432 dc
->DrawRectangle( cell
);
437 wxSize
wxDataViewProgressCell::GetSize()
439 return wxSize(40,12);
442 // ---------------------------------------------------------
443 // wxDataViewDateCell
444 // ---------------------------------------------------------
446 class wxDataViewDateCellPopupTransient
: public wxPopupTransientWindow
449 wxDataViewDateCellPopupTransient( wxWindow
* parent
, wxDateTime
*value
,
450 wxDataViewListModel
*model
, size_t col
, size_t row
) :
451 wxPopupTransientWindow( parent
, wxBORDER_SIMPLE
)
456 m_cal
= new wxCalendarCtrl( this, wxID_ANY
, *value
);
457 wxBoxSizer
*sizer
= new wxBoxSizer( wxHORIZONTAL
);
458 sizer
->Add( m_cal
, 1, wxGROW
);
463 virtual void OnDismiss()
467 void OnCalendar( wxCalendarEvent
&event
);
469 wxCalendarCtrl
*m_cal
;
470 wxDataViewListModel
*m_model
;
475 DECLARE_EVENT_TABLE()
478 BEGIN_EVENT_TABLE(wxDataViewDateCellPopupTransient
,wxPopupTransientWindow
)
479 EVT_CALENDAR( wxID_ANY
, wxDataViewDateCellPopupTransient::OnCalendar
)
482 void wxDataViewDateCellPopupTransient::OnCalendar( wxCalendarEvent
&event
)
484 wxDateTime date
= event
.GetDate();
485 wxVariant value
= date
;
486 m_model
->SetValue( value
, m_col
, m_row
);
487 m_model
->ValueChanged( m_col
, m_row
);
491 IMPLEMENT_ABSTRACT_CLASS(wxDataViewDateCell
, wxDataViewCustomCell
)
493 wxDataViewDateCell::wxDataViewDateCell( const wxString
&varianttype
,
494 wxDataViewCellMode mode
) :
495 wxDataViewCustomCell( varianttype
, mode
)
499 bool wxDataViewDateCell::SetValue( const wxVariant
&value
)
501 m_date
= value
.GetDateTime();
506 bool wxDataViewDateCell::Render( wxRect cell
, wxDC
*dc
, int WXUNUSED(state
) )
508 dc
->SetFont( GetOwner()->GetOwner()->GetFont() );
509 wxString tmp
= m_date
.FormatDate();
510 dc
->DrawText( tmp
, cell
.x
, cell
.y
);
515 wxSize
wxDataViewDateCell::GetSize()
517 wxDataViewCtrl
* view
= GetOwner()->GetOwner();
518 wxString tmp
= m_date
.FormatDate();
520 view
->GetTextExtent( tmp
, &x
, &y
, &d
);
521 return wxSize(x
,y
+d
);
524 bool wxDataViewDateCell::Activate( wxRect
WXUNUSED(cell
), wxDataViewListModel
*model
, size_t col
, size_t row
)
527 model
->GetValue( variant
, col
, row
);
528 wxDateTime value
= variant
.GetDateTime();
530 wxDataViewDateCellPopupTransient
*popup
= new wxDataViewDateCellPopupTransient(
531 GetOwner()->GetOwner()->GetParent(), &value
, model
, col
, row
);
532 wxPoint pos
= wxGetMousePosition();
535 popup
->Popup( popup
->m_cal
);
540 // ---------------------------------------------------------
542 // ---------------------------------------------------------
544 IMPLEMENT_ABSTRACT_CLASS(wxDataViewColumn
, wxDataViewColumnBase
)
546 wxDataViewColumn::wxDataViewColumn( const wxString
&title
, wxDataViewCell
*cell
, size_t model_column
,
547 int fixed_width
, wxDataViewColumnSizing sizing
, int flags
) :
548 wxDataViewColumnBase( title
, cell
, model_column
, flags
)
552 m_width
= fixed_width
;
553 m_fixedWidth
= fixed_width
;
556 wxDataViewColumn::~wxDataViewColumn()
560 void wxDataViewColumn::SetTitle( const wxString
&title
)
562 wxDataViewColumnBase::SetTitle( title
);
566 int wxDataViewColumn::GetWidth()
571 void wxDataViewColumn::SetFixedWidth( int width
)
573 m_fixedWidth
= width
;
575 if (m_sizing
== wxDATAVIEW_COL_WIDTH_FIXED
)
582 int wxDataViewColumn::GetFixedWidth()
587 //-----------------------------------------------------------------------------
588 // wxDataViewHeaderWindow
589 //-----------------------------------------------------------------------------
591 IMPLEMENT_ABSTRACT_CLASS(wxDataViewHeaderWindow
, wxWindow
)
593 BEGIN_EVENT_TABLE(wxDataViewHeaderWindow
,wxWindow
)
594 EVT_PAINT (wxDataViewHeaderWindow::OnPaint
)
595 EVT_MOUSE_EVENTS (wxDataViewHeaderWindow::OnMouse
)
596 EVT_SET_FOCUS (wxDataViewHeaderWindow::OnSetFocus
)
599 wxDataViewHeaderWindow::wxDataViewHeaderWindow( wxDataViewCtrl
*parent
, wxWindowID id
,
600 const wxPoint
&pos
, const wxSize
&size
, const wxString
&name
) :
601 wxWindow( parent
, id
, pos
, size
, 0, name
)
605 m_resizeCursor
= new wxCursor( wxCURSOR_SIZEWE
);
607 wxVisualAttributes attr
= wxPanel::GetClassDefaultAttributes();
608 SetOwnForegroundColour( attr
.colFg
);
609 SetOwnBackgroundColour( attr
.colBg
);
611 SetOwnFont( attr
.font
);
614 wxDataViewHeaderWindow::~wxDataViewHeaderWindow()
616 delete m_resizeCursor
;
619 void wxDataViewHeaderWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
622 GetClientSize( &w
, &h
);
624 wxPaintDC
dc( this );
627 m_owner
->GetScrollPixelsPerUnit( &xpix
, NULL
);
630 m_owner
->GetViewStart( &x
, NULL
);
632 // account for the horz scrollbar offset
633 dc
.SetDeviceOrigin( -x
* xpix
, 0 );
635 dc
.SetFont( GetFont() );
637 size_t cols
= GetOwner()->GetNumberOfColumns();
640 for (i
= 0; i
< cols
; i
++)
642 wxDataViewColumn
*col
= GetOwner()->GetColumn( i
);
643 int width
= col
->GetWidth();
648 wxRendererNative::Get().DrawHeaderButton
652 wxRect(xpos
, 0, cw
, ch
-1),
653 m_parent
->IsEnabled() ? 0
654 : (int)wxCONTROL_DISABLED
657 dc
.DrawText( col
->GetTitle(), xpos
+3, 3 );
663 void wxDataViewHeaderWindow::OnMouse( wxMouseEvent
&WXUNUSED(event
) )
667 void wxDataViewHeaderWindow::OnSetFocus( wxFocusEvent
&event
)
669 GetParent()->SetFocus();
673 //-----------------------------------------------------------------------------
674 // wxDataViewRenameTimer
675 //-----------------------------------------------------------------------------
677 wxDataViewRenameTimer::wxDataViewRenameTimer( wxDataViewMainWindow
*owner
)
682 void wxDataViewRenameTimer::Notify()
684 m_owner
->OnRenameTimer();
687 //-----------------------------------------------------------------------------
688 // wxDataViewTextCtrlWrapper: wraps a wxTextCtrl for inline editing
689 //-----------------------------------------------------------------------------
691 BEGIN_EVENT_TABLE(wxDataViewTextCtrlWrapper
, wxEvtHandler
)
692 EVT_CHAR (wxDataViewTextCtrlWrapper::OnChar
)
693 EVT_KEY_UP (wxDataViewTextCtrlWrapper::OnKeyUp
)
694 EVT_KILL_FOCUS (wxDataViewTextCtrlWrapper::OnKillFocus
)
697 wxDataViewTextCtrlWrapper::wxDataViewTextCtrlWrapper(
698 wxDataViewMainWindow
*owner
,
700 wxDataViewListModel
*model
,
701 size_t col
, size_t row
,
711 m_aboutToFinish
= false;
714 model
->GetValue( value
, col
, row
);
715 m_startValue
= value
.GetString();
717 m_owner
->GetOwner()->CalcScrolledPosition(
718 rectLabel
.x
, rectLabel
.y
, &rectLabel
.x
, &rectLabel
.y
);
720 m_text
->Create( owner
, wxID_ANY
, m_startValue
,
721 wxPoint(rectLabel
.x
-2,rectLabel
.y
-2),
722 wxSize(rectLabel
.width
+7,rectLabel
.height
+4) );
725 m_text
->PushEventHandler(this);
728 void wxDataViewTextCtrlWrapper::AcceptChangesAndFinish()
730 m_aboutToFinish
= true;
732 // Notify the owner about the changes
735 // Even if vetoed, close the control (consistent with MSW)
739 void wxDataViewTextCtrlWrapper::OnChar( wxKeyEvent
&event
)
741 switch ( event
.m_keyCode
)
744 AcceptChangesAndFinish();
748 // m_owner->OnRenameCancelled( m_itemEdited );
757 void wxDataViewTextCtrlWrapper::OnKeyUp( wxKeyEvent
&event
)
765 // auto-grow the textctrl
766 wxSize parentSize
= m_owner
->GetSize();
767 wxPoint myPos
= m_text
->GetPosition();
768 wxSize mySize
= m_text
->GetSize();
770 m_text
->GetTextExtent(m_text
->GetValue() + _T("MM"), &sx
, &sy
);
771 if (myPos
.x
+ sx
> parentSize
.x
)
772 sx
= parentSize
.x
- myPos
.x
;
775 m_text
->SetSize(sx
, wxDefaultCoord
);
780 void wxDataViewTextCtrlWrapper::OnKillFocus( wxFocusEvent
&event
)
782 if ( !m_finished
&& !m_aboutToFinish
)
785 //if ( !AcceptChanges() )
786 // m_owner->OnRenameCancelled( m_itemEdited );
791 // We must let the native text control handle focus
795 bool wxDataViewTextCtrlWrapper::AcceptChanges()
797 const wxString value
= m_text
->GetValue();
799 if ( value
== m_startValue
)
800 // nothing changed, always accept
803 // if ( !m_owner->OnRenameAccept(m_itemEdited, value) )
804 // vetoed by the user
807 // accepted, do rename the item
810 m_model
->SetValue( variant
, m_col
, m_row
);
811 m_model
->ValueChanged( m_col
, m_row
);
816 void wxDataViewTextCtrlWrapper::Finish()
822 m_text
->RemoveEventHandler(this);
823 m_owner
->FinishEditing(m_text
);
826 wxPendingDelete
.Append( this );
830 //-----------------------------------------------------------------------------
831 // wxDataViewMainWindow
832 //-----------------------------------------------------------------------------
834 int LINKAGEMODE
wxDataViewSelectionCmp( size_t row1
, size_t row2
)
836 if (row1
> row2
) return 1;
837 if (row1
== row2
) return 0;
842 IMPLEMENT_ABSTRACT_CLASS(wxDataViewMainWindow
, wxWindow
)
844 BEGIN_EVENT_TABLE(wxDataViewMainWindow
,wxWindow
)
845 EVT_PAINT (wxDataViewMainWindow::OnPaint
)
846 EVT_MOUSE_EVENTS (wxDataViewMainWindow::OnMouse
)
847 EVT_SET_FOCUS (wxDataViewMainWindow::OnSetFocus
)
848 EVT_KILL_FOCUS (wxDataViewMainWindow::OnKillFocus
)
849 EVT_CHAR (wxDataViewMainWindow::OnChar
)
852 wxDataViewMainWindow::wxDataViewMainWindow( wxDataViewCtrl
*parent
, wxWindowID id
,
853 const wxPoint
&pos
, const wxSize
&size
, const wxString
&name
) :
854 wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
, name
),
855 m_selection( wxDataViewSelectionCmp
)
860 m_lastOnSame
= false;
861 m_renameTimer
= new wxDataViewRenameTimer( this );
862 m_textctrlWrapper
= NULL
;
864 // TODO: user better initial values/nothing selected
868 // TODO: we need to calculate this smartly
872 m_dragStart
= wxPoint(0,0);
873 m_lineLastClicked
= (size_t) -1;
874 m_lineBeforeLastClicked
= (size_t) -1;
875 m_lineSelectSingleOnUp
= (size_t) -1;
879 SetBackgroundColour( *wxWHITE
);
884 wxDataViewMainWindow::~wxDataViewMainWindow()
886 delete m_renameTimer
;
889 void wxDataViewMainWindow::OnRenameTimer()
891 // We have to call this here because changes may just have
892 // been made and no screen update taken place.
898 size_t cols
= GetOwner()->GetNumberOfColumns();
900 for (i
= 0; i
< cols
; i
++)
902 wxDataViewColumn
*c
= GetOwner()->GetColumn( i
);
903 if (c
== m_currentCol
)
905 xpos
+= c
->GetWidth();
907 wxRect
labelRect( xpos
, m_currentRow
* m_lineHeight
, m_currentCol
->GetWidth(), m_lineHeight
);
909 wxClassInfo
*textControlClass
= CLASSINFO(wxTextCtrl
);
911 wxTextCtrl
* const text
= (wxTextCtrl
*)textControlClass
->CreateObject();
912 m_textctrlWrapper
= new wxDataViewTextCtrlWrapper(this, text
, GetOwner()->GetModel(),
913 m_currentCol
->GetModelColumn(), m_currentRow
, labelRect
);
916 void wxDataViewMainWindow::FinishEditing( wxTextCtrl
*text
)
919 m_textctrlWrapper
= NULL
;
921 // SetFocusIgnoringChildren();
924 bool wxDataViewMainWindow::RowAppended()
929 bool wxDataViewMainWindow::RowPrepended()
934 bool wxDataViewMainWindow::RowInserted( size_t WXUNUSED(before
) )
939 bool wxDataViewMainWindow::RowDeleted( size_t WXUNUSED(row
) )
944 bool wxDataViewMainWindow::RowChanged( size_t WXUNUSED(row
) )
949 bool wxDataViewMainWindow::ValueChanged( size_t WXUNUSED(col
), size_t row
)
951 wxRect
rect( 0, row
*m_lineHeight
, 10000, m_lineHeight
);
952 m_owner
->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
953 Refresh( true, &rect
);
958 bool wxDataViewMainWindow::RowsReordered( size_t *WXUNUSED(new_order
) )
965 bool wxDataViewMainWindow::Cleared()
970 void wxDataViewMainWindow::UpdateDisplay()
975 void wxDataViewMainWindow::OnInternalIdle()
977 wxWindow::OnInternalIdle();
981 RecalculateDisplay();
986 void wxDataViewMainWindow::RecalculateDisplay()
988 wxDataViewListModel
*model
= GetOwner()->GetModel();
996 size_t cols
= GetOwner()->GetNumberOfColumns();
998 for (i
= 0; i
< cols
; i
++)
1000 wxDataViewColumn
*col
= GetOwner()->GetColumn( i
);
1001 width
+= col
->GetWidth();
1004 int height
= model
->GetNumberOfRows() * m_lineHeight
;
1006 SetVirtualSize( width
, height
);
1007 GetOwner()->SetScrollRate( 10, m_lineHeight
);
1012 void wxDataViewMainWindow::ScrollWindow( int dx
, int dy
, const wxRect
*rect
)
1014 wxWindow::ScrollWindow( dx
, dy
, rect
);
1015 GetOwner()->m_headerArea
->ScrollWindow( dx
, 0 );
1018 void wxDataViewMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1020 wxPaintDC
dc( this );
1022 GetOwner()->PrepareDC( dc
);
1024 dc
.SetFont( GetFont() );
1026 wxRect update
= GetUpdateRegion().GetBox();
1027 m_owner
->CalcUnscrolledPosition( update
.x
, update
.y
, &update
.x
, &update
.y
);
1029 wxDataViewListModel
*model
= GetOwner()->GetModel();
1031 size_t item_start
= wxMax( 0, (update
.y
/ m_lineHeight
) );
1032 size_t item_count
= wxMin( (int)(((update
.y
+ update
.height
) / m_lineHeight
) - item_start
+ 1),
1033 (int)(model
->GetNumberOfRows()-item_start
) );
1038 for (item
= item_start
; item
< item_start
+item_count
; item
++)
1040 if (m_selection
.Index( item
) != wxNOT_FOUND
)
1042 int flags
= wxCONTROL_SELECTED
;
1043 if (item
== m_currentRow
)
1044 flags
|= wxCONTROL_CURRENT
;
1046 flags
|= wxCONTROL_FOCUSED
;
1047 wxRect
rect( 0, item
*m_lineHeight
+1, GetEndOfLastCol(), m_lineHeight
-2 );
1048 wxRendererNative::Get().DrawItemSelectionRect
1058 if (item
== m_currentRow
)
1060 int flags
= wxCONTROL_CURRENT
;
1062 flags
|= wxCONTROL_FOCUSED
; // should have no effect
1063 wxRect
rect( 0, item
*m_lineHeight
+1, GetEndOfLastCol(), m_lineHeight
-2 );
1064 wxRendererNative::Get().DrawItemSelectionRect
1078 cell_rect
.height
= m_lineHeight
;
1079 size_t cols
= GetOwner()->GetNumberOfColumns();
1081 for (i
= 0; i
< cols
; i
++)
1083 wxDataViewColumn
*col
= GetOwner()->GetColumn( i
);
1084 wxDataViewCell
*cell
= col
->GetCell();
1085 cell_rect
.width
= col
->GetWidth();
1087 for (item
= item_start
; item
< item_start
+item_count
; item
++)
1089 cell_rect
.y
= item
*m_lineHeight
;
1091 model
->GetValue( value
, col
->GetModelColumn(), item
);
1092 cell
->SetValue( value
);
1093 wxSize size
= cell
->GetSize();
1094 // cannot be bigger than allocated space
1095 size
.x
= wxMin( size
.x
, cell_rect
.width
);
1096 size
.y
= wxMin( size
.y
, cell_rect
.height
);
1097 // TODO: check for left/right/centre alignment here
1100 item_rect
.x
= cell_rect
.x
+ (cell_rect
.width
/ 2) - (size
.x
/ 2);
1101 item_rect
.y
= cell_rect
.y
+ (cell_rect
.height
/ 2) - (size
.y
/ 2);
1103 item_rect
.width
= size
.x
;
1104 item_rect
.height
= size
.y
;
1105 cell
->Render( item_rect
, &dc
, 0 );
1108 cell_rect
.x
+= cell_rect
.width
;
1112 int wxDataViewMainWindow::GetCountPerPage()
1114 wxSize size
= GetClientSize();
1115 return size
.y
/ m_lineHeight
;
1118 int wxDataViewMainWindow::GetEndOfLastCol()
1122 for (i
= 0; i
< GetOwner()->GetNumberOfColumns(); i
++)
1124 wxDataViewColumn
*c
= GetOwner()->GetColumn( i
);
1125 width
+= c
->GetWidth();
1130 size_t wxDataViewMainWindow::GetFirstVisibleRow()
1134 m_owner
->CalcUnscrolledPosition( x
, y
, &x
, &y
);
1136 return y
/ m_lineHeight
;
1139 size_t wxDataViewMainWindow::GetLastVisibleRow()
1141 wxSize client_size
= GetClientSize();
1142 m_owner
->CalcUnscrolledPosition( client_size
.x
, client_size
.y
, &client_size
.x
, &client_size
.y
);
1144 return wxMin( GetRowCount()-1, (client_size
.y
/m_lineHeight
)+1 );
1147 int wxDataViewMainWindow::GetRowCount()
1149 return GetOwner()->GetModel()->GetNumberOfRows();
1152 void wxDataViewMainWindow::ChangeCurrentRow( size_t row
)
1159 void wxDataViewMainWindow::SelectAllRows( bool on
)
1161 if (GetRowCount() == 0) return;
1165 m_selection
.Clear();
1167 for (i
= 0; i
< GetRowCount(); i
++)
1168 m_selection
.Add( i
);
1173 size_t first_visible
= GetFirstVisibleRow();
1174 size_t last_visible
= GetLastVisibleRow();
1176 for (i
= 0; i
< m_selection
.GetCount(); i
++)
1178 size_t row
= m_selection
[i
];
1179 if ((row
>= first_visible
) && (row
<= last_visible
))
1182 m_selection
.Clear();
1186 void wxDataViewMainWindow::SelectRow( size_t row
, bool on
)
1188 if (m_selection
.Index( row
) == wxNOT_FOUND
)
1192 m_selection
.Add( row
);
1200 m_selection
.Remove( row
);
1206 void wxDataViewMainWindow::SelectRows( size_t from
, size_t to
, bool on
)
1216 for (i
= from
; i
<= to
; i
++)
1218 if (m_selection
.Index( i
) == wxNOT_FOUND
)
1221 m_selection
.Add( i
);
1226 m_selection
.Remove( i
);
1229 RefreshRows( from
, to
);
1232 void wxDataViewMainWindow::ReverseRowSelection( size_t row
)
1234 if (m_selection
.Index( row
) == wxNOT_FOUND
)
1235 m_selection
.Add( row
);
1237 m_selection
.Remove( row
);
1241 bool wxDataViewMainWindow::IsRowSelected( size_t row
)
1243 return (m_selection
.Index( row
) != wxNOT_FOUND
);
1246 void wxDataViewMainWindow::RefreshRow( size_t row
)
1248 wxRect
rect( 0, row
*m_lineHeight
, GetEndOfLastCol(), m_lineHeight
);
1249 m_owner
->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
1251 wxSize client_size
= GetClientSize();
1252 wxRect
client_rect( 0, 0, client_size
.x
, client_size
.y
);
1253 wxRect intersect_rect
= client_rect
.Intersect( rect
);
1254 if (intersect_rect
.width
> 0)
1255 Refresh( true, &intersect_rect
);
1258 void wxDataViewMainWindow::RefreshRows( size_t from
, size_t to
)
1267 wxRect
rect( 0, from
*m_lineHeight
, GetEndOfLastCol(), (to
-from
+1) * m_lineHeight
);
1268 m_owner
->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
1270 wxSize client_size
= GetClientSize();
1271 wxRect
client_rect( 0, 0, client_size
.x
, client_size
.y
);
1272 wxRect intersect_rect
= client_rect
.Intersect( rect
);
1273 if (intersect_rect
.width
> 0)
1274 Refresh( true, &intersect_rect
);
1277 void wxDataViewMainWindow::RefreshRowsAfter( size_t firstRow
)
1279 size_t count
= GetRowCount();
1280 if (firstRow
> count
) return;
1282 wxRect
rect( 0, firstRow
*m_lineHeight
, GetEndOfLastCol(), count
* m_lineHeight
);
1283 m_owner
->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
1285 wxSize client_size
= GetClientSize();
1286 wxRect
client_rect( 0, 0, client_size
.x
, client_size
.y
);
1287 wxRect intersect_rect
= client_rect
.Intersect( rect
);
1288 if (intersect_rect
.width
> 0)
1289 Refresh( true, &intersect_rect
);
1292 void wxDataViewMainWindow::OnArrowChar(size_t newCurrent
, const wxKeyEvent
& event
)
1294 wxCHECK_RET( newCurrent
< (size_t)GetRowCount(),
1295 _T("invalid item index in OnArrowChar()") );
1297 // if there is no selection, we cannot move it anywhere
1298 if (!HasCurrentRow())
1301 size_t oldCurrent
= m_currentRow
;
1303 // in single selection we just ignore Shift as we can't select several
1305 if ( event
.ShiftDown() && !IsSingleSel() )
1307 RefreshRow( oldCurrent
);
1309 ChangeCurrentRow( newCurrent
);
1311 // select all the items between the old and the new one
1312 if ( oldCurrent
> newCurrent
)
1314 newCurrent
= oldCurrent
;
1315 oldCurrent
= m_currentRow
;
1318 SelectRows( oldCurrent
, newCurrent
, true );
1322 RefreshRow( oldCurrent
);
1324 // all previously selected items are unselected unless ctrl is held
1325 if ( !event
.ControlDown() )
1326 SelectAllRows(false);
1328 ChangeCurrentRow( newCurrent
);
1330 if ( !event
.ControlDown() )
1331 SelectRow( m_currentRow
, true );
1333 RefreshRow( m_currentRow
);
1339 void wxDataViewMainWindow::OnChar( wxKeyEvent
&event
)
1341 if (event
.GetKeyCode() == WXK_TAB
)
1343 wxNavigationKeyEvent nevent
;
1344 nevent
.SetWindowChange( event
.ControlDown() );
1345 nevent
.SetDirection( !event
.ShiftDown() );
1346 nevent
.SetEventObject( GetParent()->GetParent() );
1347 nevent
.SetCurrentFocus( m_parent
);
1348 if (GetParent()->GetParent()->GetEventHandler()->ProcessEvent( nevent
))
1352 // no item -> nothing to do
1353 if (!HasCurrentRow())
1359 // don't use m_linesPerPage directly as it might not be computed yet
1360 const int pageSize
= GetCountPerPage();
1361 wxCHECK_RET( pageSize
, _T("should have non zero page size") );
1363 switch ( event
.GetKeyCode() )
1366 if ( m_currentRow
> 0 )
1367 OnArrowChar( m_currentRow
- 1, event
);
1371 if ( m_currentRow
< (size_t)GetRowCount() - 1 )
1372 OnArrowChar( m_currentRow
+ 1, event
);
1377 OnArrowChar( GetRowCount() - 1, event
);
1382 OnArrowChar( 0, event
);
1387 int steps
= pageSize
- 1;
1388 int index
= m_currentRow
- steps
;
1392 OnArrowChar( index
, event
);
1398 int steps
= pageSize
- 1;
1399 size_t index
= m_currentRow
+ steps
;
1400 size_t count
= GetRowCount();
1401 if ( index
>= count
)
1404 OnArrowChar( index
, event
);
1413 void wxDataViewMainWindow::OnMouse( wxMouseEvent
&event
)
1415 if (event
.GetEventType() == wxEVT_MOUSEWHEEL
)
1417 // let the base handle mouse wheel events.
1422 int x
= event
.GetX();
1423 int y
= event
.GetY();
1424 m_owner
->CalcUnscrolledPosition( x
, y
, &x
, &y
);
1426 wxDataViewColumn
*col
= NULL
;
1429 size_t cols
= GetOwner()->GetNumberOfColumns();
1431 for (i
= 0; i
< cols
; i
++)
1433 wxDataViewColumn
*c
= GetOwner()->GetColumn( i
);
1434 if (x
< xpos
+ c
->GetWidth())
1439 xpos
+= c
->GetWidth();
1443 wxDataViewCell
*cell
= col
->GetCell();
1445 size_t current
= y
/ m_lineHeight
;
1447 if ((current
> GetRowCount()) || (x
> GetEndOfLastCol()))
1449 // Unselect all if below the last row ?
1453 wxDataViewListModel
*model
= GetOwner()->GetModel();
1455 if (event
.Dragging())
1457 if (m_dragCount
== 0)
1459 // we have to report the raw, physical coords as we want to be
1460 // able to call HitTest(event.m_pointDrag) from the user code to
1461 // get the item being dragged
1462 m_dragStart
= event
.GetPosition();
1467 if (m_dragCount
!= 3)
1470 if (event
.LeftIsDown())
1472 // Notify cell about drag
1481 bool forceClick
= false;
1483 if (event
.ButtonDClick())
1485 m_renameTimer
->Stop();
1486 m_lastOnSame
= false;
1489 if (event
.LeftDClick())
1491 if ( current
== m_lineLastClicked
)
1493 if (cell
->GetMode() == wxDATAVIEW_CELL_ACTIVATABLE
)
1496 model
->GetValue( value
, col
->GetModelColumn(), current
);
1497 cell
->SetValue( value
);
1498 wxRect
cell_rect( xpos
, current
* m_lineHeight
, col
->GetWidth(), m_lineHeight
);
1499 cell
->Activate( cell_rect
, model
, col
->GetModelColumn(), current
);
1505 // The first click was on another item, so don't interpret this as
1506 // a double click, but as a simple click instead
1513 if (m_lineSelectSingleOnUp
!= (size_t)-1)
1515 // select single line
1516 SelectAllRows( false );
1517 SelectRow( m_lineSelectSingleOnUp
, true );
1522 if ((col
== m_currentCol
) & (current
== m_currentRow
) &&
1523 (cell
->GetMode() == wxDATAVIEW_CELL_EDITABLE
) )
1525 m_renameTimer
->Start( 100, true );
1529 m_lastOnSame
= false;
1530 m_lineSelectSingleOnUp
= (size_t)-1;
1534 // This is necessary, because after a DnD operation in
1535 // from and to ourself, the up event is swallowed by the
1536 // DnD code. So on next non-up event (which means here and
1537 // now) m_lineSelectSingleOnUp should be reset.
1538 m_lineSelectSingleOnUp
= (size_t)-1;
1541 if (event
.RightDown())
1543 m_lineBeforeLastClicked
= m_lineLastClicked
;
1544 m_lineLastClicked
= current
;
1546 // If the item is already selected, do not update the selection.
1547 // Multi-selections should not be cleared if a selected item is clicked.
1548 if (!IsRowSelected(current
))
1550 SelectAllRows(false);
1551 ChangeCurrentRow(current
);
1552 SelectRow(m_currentRow
,true);
1555 // notify cell about right click
1558 // Allow generation of context menu event
1561 else if (event
.MiddleDown())
1563 // notify cell about middle click
1566 if (event
.LeftDown() || forceClick
)
1572 m_lineBeforeLastClicked
= m_lineLastClicked
;
1573 m_lineLastClicked
= current
;
1575 size_t oldCurrentRow
= m_currentRow
;
1576 bool oldWasSelected
= IsRowSelected(m_currentRow
);
1578 bool cmdModifierDown
= event
.CmdDown();
1579 if ( IsSingleSel() || !(cmdModifierDown
|| event
.ShiftDown()) )
1581 if ( IsSingleSel() || !IsRowSelected(current
) )
1583 SelectAllRows( false );
1585 ChangeCurrentRow(current
);
1587 SelectRow(m_currentRow
,true);
1589 else // multi sel & current is highlighted & no mod keys
1591 m_lineSelectSingleOnUp
= current
;
1592 ChangeCurrentRow(current
); // change focus
1595 else // multi sel & either ctrl or shift is down
1597 if (cmdModifierDown
)
1599 ChangeCurrentRow(current
);
1601 ReverseRowSelection(m_currentRow
);
1603 else if (event
.ShiftDown())
1605 ChangeCurrentRow(current
);
1607 size_t lineFrom
= oldCurrentRow
,
1610 if ( lineTo
< lineFrom
)
1613 lineFrom
= m_currentRow
;
1616 SelectRows(lineFrom
, lineTo
, true);
1618 else // !ctrl, !shift
1620 // test in the enclosing if should make it impossible
1621 wxFAIL_MSG( _T("how did we get here?") );
1625 if (m_currentRow
!= oldCurrentRow
)
1626 RefreshRow( oldCurrentRow
);
1628 wxDataViewColumn
*oldCurrentCol
= m_currentCol
;
1630 // Update selection here...
1633 m_lastOnSame
= !forceClick
&& ((col
== oldCurrentCol
) && (current
== oldCurrentRow
)) && oldWasSelected
;
1637 void wxDataViewMainWindow::OnSetFocus( wxFocusEvent
&event
)
1641 if (HasCurrentRow())
1647 void wxDataViewMainWindow::OnKillFocus( wxFocusEvent
&event
)
1651 if (HasCurrentRow())
1657 //-----------------------------------------------------------------------------
1659 //-----------------------------------------------------------------------------
1661 IMPLEMENT_DYNAMIC_CLASS(wxDataViewCtrl
, wxDataViewCtrlBase
)
1663 BEGIN_EVENT_TABLE(wxDataViewCtrl
, wxDataViewCtrlBase
)
1664 EVT_SIZE(wxDataViewCtrl::OnSize
)
1667 wxDataViewCtrl::~wxDataViewCtrl()
1670 GetModel()->RemoveNotifier( m_notifier
);
1673 void wxDataViewCtrl::Init()
1678 bool wxDataViewCtrl::Create(wxWindow
*parent
, wxWindowID id
,
1679 const wxPoint
& pos
, const wxSize
& size
,
1680 long style
, const wxValidator
& validator
)
1682 if (!wxControl::Create( parent
, id
, pos
, size
, style
| wxScrolledWindowStyle
|wxSUNKEN_BORDER
, validator
))
1688 MacSetClipChildren( true ) ;
1691 m_clientArea
= new wxDataViewMainWindow( this, wxID_ANY
);
1693 m_headerArea
= new wxDataViewHeaderWindow( this, wxID_ANY
, wxDefaultPosition
, wxSize(wxDefaultCoord
,22) );
1695 m_headerArea
= new wxDataViewHeaderWindow( this, wxID_ANY
, wxDefaultPosition
, wxSize(wxDefaultCoord
,25) );
1698 SetTargetWindow( m_clientArea
);
1700 wxBoxSizer
*sizer
= new wxBoxSizer( wxVERTICAL
);
1701 sizer
->Add( m_headerArea
, 0, wxGROW
);
1702 sizer
->Add( m_clientArea
, 1, wxGROW
);
1709 WXLRESULT
wxDataViewCtrl::MSWWindowProc(WXUINT nMsg
,
1713 WXLRESULT rc
= wxDataViewCtrlBase::MSWWindowProc(nMsg
, wParam
, lParam
);
1716 // we need to process arrows ourselves for scrolling
1717 if ( nMsg
== WM_GETDLGCODE
)
1719 rc
|= DLGC_WANTARROWS
;
1727 void wxDataViewCtrl::OnSize( wxSizeEvent
&WXUNUSED(event
) )
1729 // We need to override OnSize so that our scrolled
1730 // window a) does call Layout() to use sizers for
1731 // positioning the controls but b) does not query
1732 // the sizer for their size and use that for setting
1733 // the scrollable area as set that ourselves by
1734 // calling SetScrollbar() further down.
1741 bool wxDataViewCtrl::AssociateModel( wxDataViewListModel
*model
)
1743 if (!wxDataViewCtrlBase::AssociateModel( model
))
1746 m_notifier
= new wxGenericDataViewListModelNotifier( m_clientArea
);
1748 model
->AddNotifier( m_notifier
);
1750 m_clientArea
->UpdateDisplay();
1755 bool wxDataViewCtrl::AppendColumn( wxDataViewColumn
*col
)
1757 if (!wxDataViewCtrlBase::AppendColumn(col
))
1760 m_clientArea
->UpdateDisplay();
1766 // !wxUSE_GENERICDATAVIEWCTRL
1769 // wxUSE_DATAVIEWCTRL