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();
180 void SelectAllRows( bool on
);
181 void SelectRow( size_t row
, bool on
);
182 void SelectRows( size_t from
, size_t to
, bool on
);
183 void ReverseRowSelection( size_t row
);
184 bool IsRowSelected( size_t row
);
186 void RefreshRow( size_t row
);
187 void RefreshRows( size_t from
, size_t to
);
188 void RefreshRowsAfter( size_t firstRow
);
191 wxDataViewCtrl
*m_owner
;
195 wxDataViewColumn
*m_currentCol
;
197 wxDataViewSelection m_selection
;
199 wxDataViewRenameTimer
*m_renameTimer
;
200 wxDataViewTextCtrlWrapper
*m_textctrlWrapper
;
203 wxBrush
*m_highlightBrush
,
204 *m_highlightUnfocusedBrush
;
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();
645 // the width of the rect to draw: make it smaller to fit entirely
646 // inside the column rect
655 wxRendererNative::Get().DrawHeaderButton
659 wxRect(xpos
+1, 1, cw
-1, ch
-1),
660 m_parent
->IsEnabled() ? 0
661 : (int)wxCONTROL_DISABLED
664 dc
.DrawText( col
->GetTitle(), xpos
+3, 3 );
670 void wxDataViewHeaderWindow::OnMouse( wxMouseEvent
&WXUNUSED(event
) )
674 void wxDataViewHeaderWindow::OnSetFocus( wxFocusEvent
&event
)
676 GetParent()->SetFocus();
680 //-----------------------------------------------------------------------------
681 // wxDataViewRenameTimer
682 //-----------------------------------------------------------------------------
684 wxDataViewRenameTimer::wxDataViewRenameTimer( wxDataViewMainWindow
*owner
)
689 void wxDataViewRenameTimer::Notify()
691 m_owner
->OnRenameTimer();
694 //-----------------------------------------------------------------------------
695 // wxDataViewTextCtrlWrapper: wraps a wxTextCtrl for inline editing
696 //-----------------------------------------------------------------------------
698 BEGIN_EVENT_TABLE(wxDataViewTextCtrlWrapper
, wxEvtHandler
)
699 EVT_CHAR (wxDataViewTextCtrlWrapper::OnChar
)
700 EVT_KEY_UP (wxDataViewTextCtrlWrapper::OnKeyUp
)
701 EVT_KILL_FOCUS (wxDataViewTextCtrlWrapper::OnKillFocus
)
704 wxDataViewTextCtrlWrapper::wxDataViewTextCtrlWrapper(
705 wxDataViewMainWindow
*owner
,
707 wxDataViewListModel
*model
,
708 size_t col
, size_t row
,
718 m_aboutToFinish
= false;
721 model
->GetValue( value
, col
, row
);
722 m_startValue
= value
.GetString();
724 m_owner
->GetOwner()->CalcScrolledPosition(
725 rectLabel
.x
, rectLabel
.y
, &rectLabel
.x
, &rectLabel
.y
);
727 m_text
->Create( owner
, wxID_ANY
, m_startValue
,
728 wxPoint(rectLabel
.x
-2,rectLabel
.y
-2),
729 wxSize(rectLabel
.width
+7,rectLabel
.height
+4) );
732 m_text
->PushEventHandler(this);
735 void wxDataViewTextCtrlWrapper::AcceptChangesAndFinish()
737 m_aboutToFinish
= true;
739 // Notify the owner about the changes
742 // Even if vetoed, close the control (consistent with MSW)
746 void wxDataViewTextCtrlWrapper::OnChar( wxKeyEvent
&event
)
748 switch ( event
.m_keyCode
)
751 AcceptChangesAndFinish();
755 // m_owner->OnRenameCancelled( m_itemEdited );
764 void wxDataViewTextCtrlWrapper::OnKeyUp( wxKeyEvent
&event
)
772 // auto-grow the textctrl
773 wxSize parentSize
= m_owner
->GetSize();
774 wxPoint myPos
= m_text
->GetPosition();
775 wxSize mySize
= m_text
->GetSize();
777 m_text
->GetTextExtent(m_text
->GetValue() + _T("MM"), &sx
, &sy
);
778 if (myPos
.x
+ sx
> parentSize
.x
)
779 sx
= parentSize
.x
- myPos
.x
;
782 m_text
->SetSize(sx
, wxDefaultCoord
);
787 void wxDataViewTextCtrlWrapper::OnKillFocus( wxFocusEvent
&event
)
789 if ( !m_finished
&& !m_aboutToFinish
)
792 //if ( !AcceptChanges() )
793 // m_owner->OnRenameCancelled( m_itemEdited );
798 // We must let the native text control handle focus
802 bool wxDataViewTextCtrlWrapper::AcceptChanges()
804 const wxString value
= m_text
->GetValue();
806 if ( value
== m_startValue
)
807 // nothing changed, always accept
810 // if ( !m_owner->OnRenameAccept(m_itemEdited, value) )
811 // vetoed by the user
814 // accepted, do rename the item
817 m_model
->SetValue( variant
, m_col
, m_row
);
818 m_model
->ValueChanged( m_col
, m_row
);
823 void wxDataViewTextCtrlWrapper::Finish()
829 m_text
->RemoveEventHandler(this);
830 m_owner
->FinishEditing(m_text
);
833 wxPendingDelete
.Append( this );
837 //-----------------------------------------------------------------------------
838 // wxDataViewMainWindow
839 //-----------------------------------------------------------------------------
841 int LINKAGEMODE
wxDataViewSelectionCmp( size_t row1
, size_t row2
)
843 if (row1
> row2
) return 1;
844 if (row1
== row2
) return 0;
849 IMPLEMENT_ABSTRACT_CLASS(wxDataViewMainWindow
, wxWindow
)
851 BEGIN_EVENT_TABLE(wxDataViewMainWindow
,wxWindow
)
852 EVT_PAINT (wxDataViewMainWindow::OnPaint
)
853 EVT_MOUSE_EVENTS (wxDataViewMainWindow::OnMouse
)
854 EVT_SET_FOCUS (wxDataViewMainWindow::OnSetFocus
)
855 EVT_KILL_FOCUS (wxDataViewMainWindow::OnKillFocus
)
856 EVT_CHAR (wxDataViewMainWindow::OnChar
)
859 wxDataViewMainWindow::wxDataViewMainWindow( wxDataViewCtrl
*parent
, wxWindowID id
,
860 const wxPoint
&pos
, const wxSize
&size
, const wxString
&name
) :
861 wxWindow( parent
, id
, pos
, size
, 0, name
),
862 m_selection( wxDataViewSelectionCmp
)
867 m_lastOnSame
= false;
868 m_renameTimer
= new wxDataViewRenameTimer( this );
869 m_textctrlWrapper
= NULL
;
871 // TODO: user better initial values/nothing selected
875 // TODO: we need to calculate this smartly
879 m_dragStart
= wxPoint(0,0);
880 m_lineLastClicked
= (size_t) -1;
881 m_lineBeforeLastClicked
= (size_t) -1;
882 m_lineSelectSingleOnUp
= (size_t) -1;
884 m_highlightBrush
= new wxBrush
886 wxSystemSettings::GetColour
888 wxSYS_COLOUR_HIGHLIGHT
893 m_highlightUnfocusedBrush
= new wxBrush
895 wxSystemSettings::GetColour
897 wxSYS_COLOUR_BTNSHADOW
907 wxDataViewMainWindow::~wxDataViewMainWindow()
909 delete m_renameTimer
;
910 delete m_highlightBrush
;
911 delete m_highlightUnfocusedBrush
;
914 void wxDataViewMainWindow::OnRenameTimer()
916 // We have to call this here because changes may just have
917 // been made and no screen update taken place.
923 size_t cols
= GetOwner()->GetNumberOfColumns();
925 for (i
= 0; i
< cols
; i
++)
927 wxDataViewColumn
*c
= GetOwner()->GetColumn( i
);
928 if (c
== m_currentCol
)
930 xpos
+= c
->GetWidth();
932 wxRect
labelRect( xpos
, m_currentRow
* m_lineHeight
, m_currentCol
->GetWidth(), m_lineHeight
);
934 wxClassInfo
*textControlClass
= CLASSINFO(wxTextCtrl
);
936 wxTextCtrl
* const text
= (wxTextCtrl
*)textControlClass
->CreateObject();
937 m_textctrlWrapper
= new wxDataViewTextCtrlWrapper(this, text
, GetOwner()->GetModel(),
938 m_currentCol
->GetModelColumn(), m_currentRow
, labelRect
);
941 void wxDataViewMainWindow::FinishEditing( wxTextCtrl
*text
)
944 m_textctrlWrapper
= NULL
;
946 // SetFocusIgnoringChildren();
949 bool wxDataViewMainWindow::RowAppended()
954 bool wxDataViewMainWindow::RowPrepended()
959 bool wxDataViewMainWindow::RowInserted( size_t WXUNUSED(before
) )
964 bool wxDataViewMainWindow::RowDeleted( size_t WXUNUSED(row
) )
969 bool wxDataViewMainWindow::RowChanged( size_t WXUNUSED(row
) )
974 bool wxDataViewMainWindow::ValueChanged( size_t WXUNUSED(col
), size_t row
)
976 wxRect
rect( 0, row
*m_lineHeight
, 10000, m_lineHeight
);
977 m_owner
->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
978 Refresh( true, &rect
);
983 bool wxDataViewMainWindow::RowsReordered( size_t *WXUNUSED(new_order
) )
990 bool wxDataViewMainWindow::Cleared()
995 void wxDataViewMainWindow::UpdateDisplay()
1000 void wxDataViewMainWindow::OnInternalIdle()
1002 wxWindow::OnInternalIdle();
1006 RecalculateDisplay();
1011 void wxDataViewMainWindow::RecalculateDisplay()
1013 wxDataViewListModel
*model
= GetOwner()->GetModel();
1021 size_t cols
= GetOwner()->GetNumberOfColumns();
1023 for (i
= 0; i
< cols
; i
++)
1025 wxDataViewColumn
*col
= GetOwner()->GetColumn( i
);
1026 width
+= col
->GetWidth();
1029 int height
= model
->GetNumberOfRows() * m_lineHeight
;
1031 SetVirtualSize( width
, height
);
1032 GetOwner()->SetScrollRate( 10, m_lineHeight
);
1037 void wxDataViewMainWindow::ScrollWindow( int dx
, int dy
, const wxRect
*rect
)
1039 wxWindow::ScrollWindow( dx
, dy
, rect
);
1040 GetOwner()->m_headerArea
->ScrollWindow( dx
, 0 );
1043 void wxDataViewMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1045 wxPaintDC
dc( this );
1047 GetOwner()->PrepareDC( dc
);
1049 dc
.SetFont( GetFont() );
1051 wxRect update
= GetUpdateRegion().GetBox();
1052 m_owner
->CalcUnscrolledPosition( update
.x
, update
.y
, &update
.x
, &update
.y
);
1054 wxDataViewListModel
*model
= GetOwner()->GetModel();
1056 size_t item_start
= wxMax( 0, (update
.y
/ m_lineHeight
) );
1057 size_t item_count
= wxMin( (int)(((update
.y
+ update
.height
) / m_lineHeight
) - item_start
+ 1),
1058 (int)(model
->GetNumberOfRows()-item_start
) );
1062 dc
.SetBrush( *m_highlightBrush
);
1064 dc
.SetBrush( *m_highlightUnfocusedBrush
);
1065 dc
.SetPen( *wxTRANSPARENT_PEN
);
1068 for (item
= item_start
; item
< item_start
+item_count
; item
++)
1070 if (m_selection
.Index( item
) != wxNOT_FOUND
)
1072 wxRect
rect( 0, item
*m_lineHeight
+1, GetEndOfLastCol(), m_lineHeight
-2 );
1073 dc
.DrawRectangle( rect
);
1077 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
1078 dc
.SetPen( *wxBLACK_PEN
);
1079 if (HasCurrentRow())
1081 wxRect
rect( 0, m_currentRow
*m_lineHeight
+1, GetEndOfLastCol(), m_lineHeight
-2 );
1082 dc
.DrawRectangle( rect
);
1087 cell_rect
.height
= m_lineHeight
;
1088 size_t cols
= GetOwner()->GetNumberOfColumns();
1090 for (i
= 0; i
< cols
; i
++)
1092 wxDataViewColumn
*col
= GetOwner()->GetColumn( i
);
1093 wxDataViewCell
*cell
= col
->GetCell();
1094 cell_rect
.width
= col
->GetWidth();
1096 for (item
= item_start
; item
< item_start
+item_count
; item
++)
1098 cell_rect
.y
= item
*m_lineHeight
;
1100 model
->GetValue( value
, col
->GetModelColumn(), item
);
1101 cell
->SetValue( value
);
1102 wxSize size
= cell
->GetSize();
1103 // cannot be bigger than allocated space
1104 size
.x
= wxMin( size
.x
, cell_rect
.width
);
1105 size
.y
= wxMin( size
.y
, cell_rect
.height
);
1106 // TODO: check for left/right/centre alignment here
1109 item_rect
.x
= cell_rect
.x
+ (cell_rect
.width
/ 2) - (size
.x
/ 2);
1110 item_rect
.y
= cell_rect
.y
+ (cell_rect
.height
/ 2) - (size
.y
/ 2);
1112 item_rect
.width
= size
.x
;
1113 item_rect
.height
= size
.y
;
1114 cell
->Render( item_rect
, &dc
, 0 );
1117 cell_rect
.x
+= cell_rect
.width
;
1121 int wxDataViewMainWindow::GetCountPerPage()
1123 wxSize size
= GetClientSize();
1124 return size
.y
/ m_lineHeight
;
1127 int wxDataViewMainWindow::GetEndOfLastCol()
1131 for (i
= 0; i
< GetOwner()->GetNumberOfColumns(); i
++)
1133 wxDataViewColumn
*c
= GetOwner()->GetColumn( i
);
1134 width
+= c
->GetWidth();
1139 int wxDataViewMainWindow::GetRowCount()
1141 return GetOwner()->GetModel()->GetNumberOfRows();
1144 void wxDataViewMainWindow::ChangeCurrentRow( size_t row
)
1151 void wxDataViewMainWindow::SelectAllRows( bool on
)
1153 m_selection
.Clear();
1157 for (i
= 0; i
< m_selection
.GetCount(); i
++)
1158 m_selection
.Add( i
);
1163 void wxDataViewMainWindow::SelectRow( size_t row
, bool on
)
1165 if (m_selection
.Index( row
) == wxNOT_FOUND
)
1169 m_selection
.Add( row
);
1177 m_selection
.Remove( row
);
1183 void wxDataViewMainWindow::SelectRows( size_t from
, size_t to
, bool on
)
1193 for (i
= from
; i
<= to
; i
++)
1195 if (m_selection
.Index( i
) == wxNOT_FOUND
)
1198 m_selection
.Add( i
);
1203 m_selection
.Remove( i
);
1206 RefreshRows( from
, to
);
1209 void wxDataViewMainWindow::ReverseRowSelection( size_t row
)
1211 if (m_selection
.Index( row
) == wxNOT_FOUND
)
1212 m_selection
.Add( row
);
1214 m_selection
.Remove( row
);
1218 bool wxDataViewMainWindow::IsRowSelected( size_t row
)
1220 return (m_selection
.Index( row
) != wxNOT_FOUND
);
1223 void wxDataViewMainWindow::RefreshRow( size_t row
)
1225 wxRect
rect( 0, row
*m_lineHeight
, GetEndOfLastCol(), m_lineHeight
);
1226 m_owner
->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
1228 wxSize client_size
= GetClientSize();
1229 wxRect
client_rect( 0, 0, client_size
.x
, client_size
.y
);
1230 wxRect intersect_rect
= client_rect
.Intersect( rect
);
1231 if (intersect_rect
.width
> 0)
1232 Refresh( true, &intersect_rect
);
1235 void wxDataViewMainWindow::RefreshRows( size_t from
, size_t to
)
1244 wxRect
rect( 0, from
*m_lineHeight
, GetEndOfLastCol(), (to
-from
+1) * m_lineHeight
);
1245 m_owner
->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
1247 wxSize client_size
= GetClientSize();
1248 wxRect
client_rect( 0, 0, client_size
.x
, client_size
.y
);
1249 wxRect intersect_rect
= client_rect
.Intersect( rect
);
1250 if (intersect_rect
.width
> 0)
1251 Refresh( true, &intersect_rect
);
1254 void wxDataViewMainWindow::RefreshRowsAfter( size_t firstRow
)
1256 size_t count
= GetRowCount();
1257 if (firstRow
> count
) return;
1259 wxRect
rect( 0, firstRow
*m_lineHeight
, GetEndOfLastCol(), count
* m_lineHeight
);
1260 m_owner
->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
1262 wxSize client_size
= GetClientSize();
1263 wxRect
client_rect( 0, 0, client_size
.x
, client_size
.y
);
1264 wxRect intersect_rect
= client_rect
.Intersect( rect
);
1265 if (intersect_rect
.width
> 0)
1266 Refresh( true, &intersect_rect
);
1269 void wxDataViewMainWindow::OnArrowChar(size_t newCurrent
, const wxKeyEvent
& event
)
1271 wxCHECK_RET( newCurrent
< (size_t)GetRowCount(),
1272 _T("invalid item index in OnArrowChar()") );
1274 // if there is no selection, we cannot move it anywhere
1275 if (!HasCurrentRow())
1278 size_t oldCurrent
= m_currentRow
;
1280 // in single selection we just ignore Shift as we can't select several
1282 if ( event
.ShiftDown() && !IsSingleSel() )
1284 RefreshRow( oldCurrent
);
1286 ChangeCurrentRow( newCurrent
);
1288 // select all the items between the old and the new one
1289 if ( oldCurrent
> newCurrent
)
1291 newCurrent
= oldCurrent
;
1292 oldCurrent
= m_currentRow
;
1295 SelectRows( oldCurrent
, newCurrent
, true );
1299 Refresh( oldCurrent
);
1301 // all previously selected items are unselected unless ctrl is held
1302 if ( !event
.ControlDown() )
1303 SelectAllRows(false);
1305 ChangeCurrentRow( newCurrent
);
1307 if ( !event
.ControlDown() )
1308 SelectRow( m_currentRow
, true );
1314 void wxDataViewMainWindow::OnChar( wxKeyEvent
&event
)
1316 if (event
.GetKeyCode() == WXK_TAB
)
1318 wxNavigationKeyEvent nevent
;
1319 nevent
.SetWindowChange( event
.ControlDown() );
1320 nevent
.SetDirection( !event
.ShiftDown() );
1321 nevent
.SetEventObject( GetParent()->GetParent() );
1322 nevent
.SetCurrentFocus( m_parent
);
1323 if (GetParent()->GetParent()->GetEventHandler()->ProcessEvent( nevent
))
1327 // no item -> nothing to do
1328 if (!HasCurrentRow())
1334 // don't use m_linesPerPage directly as it might not be computed yet
1335 const int pageSize
= GetCountPerPage();
1336 wxCHECK_RET( pageSize
, _T("should have non zero page size") );
1338 switch ( event
.GetKeyCode() )
1341 if ( m_currentRow
> 0 )
1342 OnArrowChar( m_currentRow
- 1, event
);
1346 if ( m_currentRow
< (size_t)GetRowCount() - 1 )
1347 OnArrowChar( m_currentRow
+ 1, event
);
1352 OnArrowChar( GetRowCount() - 1, event
);
1357 OnArrowChar( 0, event
);
1362 int steps
= pageSize
- 1;
1363 int index
= m_currentRow
- steps
;
1367 OnArrowChar( index
, event
);
1373 int steps
= pageSize
- 1;
1374 size_t index
= m_currentRow
+ steps
;
1375 size_t count
= GetRowCount();
1376 if ( index
>= count
)
1379 OnArrowChar( index
, event
);
1388 void wxDataViewMainWindow::OnMouse( wxMouseEvent
&event
)
1390 if (event
.GetEventType() == wxEVT_MOUSEWHEEL
)
1392 // let the base handle mouse wheel events.
1397 int x
= event
.GetX();
1398 int y
= event
.GetY();
1399 m_owner
->CalcUnscrolledPosition( x
, y
, &x
, &y
);
1401 wxDataViewColumn
*col
= NULL
;
1404 size_t cols
= GetOwner()->GetNumberOfColumns();
1406 for (i
= 0; i
< cols
; i
++)
1408 wxDataViewColumn
*c
= GetOwner()->GetColumn( i
);
1409 if (x
< xpos
+ c
->GetWidth())
1414 xpos
+= c
->GetWidth();
1418 wxDataViewCell
*cell
= col
->GetCell();
1420 size_t current
= y
/ m_lineHeight
;
1422 if ((current
> GetRowCount()) || (x
> GetEndOfLastCol()))
1424 // Unselect all if below the last row ?
1428 wxDataViewListModel
*model
= GetOwner()->GetModel();
1430 if (event
.Dragging())
1432 if (m_dragCount
== 0)
1434 // we have to report the raw, physical coords as we want to be
1435 // able to call HitTest(event.m_pointDrag) from the user code to
1436 // get the item being dragged
1437 m_dragStart
= event
.GetPosition();
1442 if (m_dragCount
!= 3)
1445 if (event
.LeftIsDown())
1447 // Notify cell about drag
1456 bool forceClick
= false;
1458 if (event
.ButtonDClick())
1460 m_renameTimer
->Stop();
1461 m_lastOnSame
= false;
1464 if (event
.LeftDClick())
1466 if ( current
== m_lineLastClicked
)
1468 if (cell
->GetMode() == wxDATAVIEW_CELL_ACTIVATABLE
)
1471 model
->GetValue( value
, col
->GetModelColumn(), current
);
1472 cell
->SetValue( value
);
1473 wxRect
cell_rect( xpos
, current
* m_lineHeight
, col
->GetWidth(), m_lineHeight
);
1474 cell
->Activate( cell_rect
, model
, col
->GetModelColumn(), current
);
1480 // The first click was on another item, so don't interpret this as
1481 // a double click, but as a simple click instead
1488 if (m_lineSelectSingleOnUp
!= (size_t)-1)
1490 // select single line
1491 SelectAllRows( false );
1492 SelectRow( m_lineSelectSingleOnUp
, true );
1497 if ((col
== m_currentCol
) & (current
== m_currentRow
) &&
1498 (cell
->GetMode() == wxDATAVIEW_CELL_EDITABLE
) )
1500 m_renameTimer
->Start( 100, true );
1504 m_lastOnSame
= false;
1505 m_lineSelectSingleOnUp
= (size_t)-1;
1509 // This is necessary, because after a DnD operation in
1510 // from and to ourself, the up event is swallowed by the
1511 // DnD code. So on next non-up event (which means here and
1512 // now) m_lineSelectSingleOnUp should be reset.
1513 m_lineSelectSingleOnUp
= (size_t)-1;
1516 if (event
.RightDown())
1518 m_lineBeforeLastClicked
= m_lineLastClicked
;
1519 m_lineLastClicked
= current
;
1521 // If the item is already selected, do not update the selection.
1522 // Multi-selections should not be cleared if a selected item is clicked.
1523 if (!IsRowSelected(current
))
1525 SelectAllRows(false);
1526 ChangeCurrentRow(current
);
1527 SelectRow(m_currentRow
,true);
1530 // notify cell about right click
1533 // Allow generation of context menu event
1536 else if (event
.MiddleDown())
1538 // notify cell about middle click
1541 if (event
.LeftDown() || forceClick
)
1543 m_lineBeforeLastClicked
= m_lineLastClicked
;
1544 m_lineLastClicked
= current
;
1546 size_t oldCurrent
= m_currentRow
;
1547 bool oldWasSelected
= IsRowSelected(m_currentRow
);
1549 bool cmdModifierDown
= event
.CmdDown();
1550 if ( IsSingleSel() || !(cmdModifierDown
|| event
.ShiftDown()) )
1552 if ( IsSingleSel() || !IsRowSelected(current
) )
1554 SelectAllRows( false );
1556 ChangeCurrentRow(current
);
1558 SelectRow(m_currentRow
,true);
1560 else // multi sel & current is highlighted & no mod keys
1562 m_lineSelectSingleOnUp
= current
;
1563 ChangeCurrentRow(current
); // change focus
1566 else // multi sel & either ctrl or shift is down
1568 if (cmdModifierDown
)
1570 ChangeCurrentRow(current
);
1572 ReverseRowSelection(m_currentRow
);
1574 else if (event
.ShiftDown())
1576 ChangeCurrentRow(current
);
1578 size_t lineFrom
= oldCurrent
,
1581 if ( lineTo
< lineFrom
)
1584 lineFrom
= m_currentRow
;
1587 SelectRows(lineFrom
, lineTo
, true);
1589 else // !ctrl, !shift
1591 // test in the enclosing if should make it impossible
1592 wxFAIL_MSG( _T("how did we get here?") );
1596 if (m_currentRow
!= oldCurrent
)
1597 RefreshRow( oldCurrent
);
1599 wxDataViewColumn
*oldCurrentCol
= m_currentCol
;
1600 size_t oldCurrentRow
= m_currentRow
;
1602 // Update selection here...
1604 m_currentRow
= current
;
1606 m_lastOnSame
= !forceClick
&& ((col
== oldCurrentCol
) && (current
== oldCurrentRow
)) && oldWasSelected
;
1610 void wxDataViewMainWindow::OnSetFocus( wxFocusEvent
&event
)
1614 if (HasCurrentRow())
1620 void wxDataViewMainWindow::OnKillFocus( wxFocusEvent
&event
)
1624 if (HasCurrentRow())
1630 //-----------------------------------------------------------------------------
1632 //-----------------------------------------------------------------------------
1634 IMPLEMENT_DYNAMIC_CLASS(wxDataViewCtrl
, wxDataViewCtrlBase
)
1636 BEGIN_EVENT_TABLE(wxDataViewCtrl
, wxDataViewCtrlBase
)
1637 EVT_SIZE(wxDataViewCtrl::OnSize
)
1640 wxDataViewCtrl::~wxDataViewCtrl()
1643 GetModel()->RemoveNotifier( m_notifier
);
1646 void wxDataViewCtrl::Init()
1651 bool wxDataViewCtrl::Create(wxWindow
*parent
, wxWindowID id
,
1652 const wxPoint
& pos
, const wxSize
& size
,
1653 long style
, const wxValidator
& validator
)
1655 if (!wxControl::Create( parent
, id
, pos
, size
, style
| wxScrolledWindowStyle
|wxSUNKEN_BORDER
, validator
))
1661 MacSetClipChildren( true ) ;
1664 m_clientArea
= new wxDataViewMainWindow( this, wxID_ANY
);
1665 m_headerArea
= new wxDataViewHeaderWindow( this, wxID_ANY
, wxDefaultPosition
, wxSize(wxDefaultCoord
,25) );
1667 SetTargetWindow( m_clientArea
);
1669 wxBoxSizer
*sizer
= new wxBoxSizer( wxVERTICAL
);
1670 sizer
->Add( m_headerArea
, 0, wxGROW
);
1671 sizer
->Add( m_clientArea
, 1, wxGROW
);
1678 WXLRESULT
wxDataViewCtrl::MSWWindowProc(WXUINT nMsg
,
1682 WXLRESULT rc
= wxDataViewCtrlBase::MSWWindowProc(nMsg
, wParam
, lParam
);
1685 // we need to process arrows ourselves for scrolling
1686 if ( nMsg
== WM_GETDLGCODE
)
1688 rc
|= DLGC_WANTARROWS
;
1696 void wxDataViewCtrl::OnSize( wxSizeEvent
&WXUNUSED(event
) )
1698 // We need to override OnSize so that our scrolled
1699 // window a) does call Layout() to use sizers for
1700 // positioning the controls but b) does not query
1701 // the sizer for their size and use that for setting
1702 // the scrollable area as set that ourselves by
1703 // calling SetScrollbar() further down.
1710 bool wxDataViewCtrl::AssociateModel( wxDataViewListModel
*model
)
1712 if (!wxDataViewCtrlBase::AssociateModel( model
))
1715 m_notifier
= new wxGenericDataViewListModelNotifier( m_clientArea
);
1717 model
->AddNotifier( m_notifier
);
1719 m_clientArea
->UpdateDisplay();
1724 bool wxDataViewCtrl::AppendColumn( wxDataViewColumn
*col
)
1726 if (!wxDataViewCtrlBase::AppendColumn(col
))
1729 m_clientArea
->UpdateDisplay();
1735 // !wxUSE_GENERICDATAVIEWCTRL
1738 // wxUSE_DATAVIEWCTRL