X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c7cf729fe461197f8e2022594cb5c050a6197c52..c11132ca80f6af13bf636abe53f77c8dfd7dab4e:/src/common/datavcmn.cpp diff --git a/src/common/datavcmn.cpp b/src/common/datavcmn.cpp index 9d2b2020a5..f8f5154fa2 100644 --- a/src/common/datavcmn.cpp +++ b/src/common/datavcmn.cpp @@ -26,76 +26,31 @@ const wxChar wxDataViewCtrlNameStr[] = wxT("dataviewCtrl"); -// --------------------------------------------------------- -// wxDataViewListModel -// --------------------------------------------------------- - -wxDataViewListModel::wxDataViewListModel() +bool operator == (const wxDataViewItem &left, const wxDataViewItem &right) { - m_notifiers.DeleteContents( true ); -} - -wxDataViewListModel::~wxDataViewListModel() -{ -} - -bool wxDataViewListModel::RowAppended() -{ - bool ret = true; - - wxList::compatibility_iterator node = m_notifiers.GetFirst(); - while (node) - { - wxDataViewListModelNotifier* notifier = (wxDataViewListModelNotifier*) node->GetData(); - if (!notifier->RowAppended()) - ret = false; - node = node->GetNext(); - } - - return ret; + return (left.GetID() == right.GetID() ); } -bool wxDataViewListModel::RowPrepended() -{ - bool ret = true; - wxList::compatibility_iterator node = m_notifiers.GetFirst(); - while (node) - { - wxDataViewListModelNotifier* notifier = (wxDataViewListModelNotifier*) node->GetData(); - if (!notifier->RowPrepended()) - ret = false; - node = node->GetNext(); - } - - return ret; -} +// --------------------------------------------------------- +// wxDataViewModel +// --------------------------------------------------------- -bool wxDataViewListModel::RowInserted( unsigned int before ) +wxDataViewModel::wxDataViewModel() { - bool ret = true; - - wxList::compatibility_iterator node = m_notifiers.GetFirst(); - while (node) - { - wxDataViewListModelNotifier* notifier = (wxDataViewListModelNotifier*) node->GetData(); - if (!notifier->RowInserted(before)) - ret = false; - node = node->GetNext(); - } - - return ret; + m_notifiers.DeleteContents( true ); + m_cmpFunc = NULL; } -bool wxDataViewListModel::RowDeleted( unsigned int row ) +bool wxDataViewModel::ItemAdded( const wxDataViewItem &parent, const wxDataViewItem &item ) { bool ret = true; wxList::compatibility_iterator node = m_notifiers.GetFirst(); while (node) { - wxDataViewListModelNotifier* notifier = (wxDataViewListModelNotifier*) node->GetData(); - if (!notifier->RowDeleted( row )) + wxDataViewModelNotifier* notifier = (wxDataViewModelNotifier*) node->GetData(); + if (!notifier->ItemAdded( parent, item )) ret = false; node = node->GetNext(); } @@ -103,15 +58,15 @@ bool wxDataViewListModel::RowDeleted( unsigned int row ) return ret; } -bool wxDataViewListModel::RowChanged( unsigned int row ) +bool wxDataViewModel::ItemDeleted( const wxDataViewItem &item ) { bool ret = true; wxList::compatibility_iterator node = m_notifiers.GetFirst(); while (node) { - wxDataViewListModelNotifier* notifier = (wxDataViewListModelNotifier*) node->GetData(); - if (!notifier->RowChanged( row )) + wxDataViewModelNotifier* notifier = (wxDataViewModelNotifier*) node->GetData(); + if (!notifier->ItemDeleted( item )) ret = false; node = node->GetNext(); } @@ -119,15 +74,15 @@ bool wxDataViewListModel::RowChanged( unsigned int row ) return ret; } -bool wxDataViewListModel::ValueChanged( unsigned int col, unsigned int row ) +bool wxDataViewModel::ItemChanged( const wxDataViewItem &item ) { bool ret = true; wxList::compatibility_iterator node = m_notifiers.GetFirst(); while (node) { - wxDataViewListModelNotifier* notifier = (wxDataViewListModelNotifier*) node->GetData(); - if (!notifier->ValueChanged( col, row )) + wxDataViewModelNotifier* notifier = (wxDataViewModelNotifier*) node->GetData(); + if (!notifier->ItemChanged( item )) ret = false; node = node->GetNext(); } @@ -135,15 +90,15 @@ bool wxDataViewListModel::ValueChanged( unsigned int col, unsigned int row ) return ret; } -bool wxDataViewListModel::RowsReordered( unsigned int *new_order ) +bool wxDataViewModel::ValueChanged( const wxDataViewItem &item, unsigned int col ) { bool ret = true; wxList::compatibility_iterator node = m_notifiers.GetFirst(); while (node) { - wxDataViewListModelNotifier* notifier = (wxDataViewListModelNotifier*) node->GetData(); - if (!notifier->RowsReordered( new_order )) + wxDataViewModelNotifier* notifier = (wxDataViewModelNotifier*) node->GetData(); + if (!notifier->ValueChanged( item, col )) ret = false; node = node->GetNext(); } @@ -151,14 +106,14 @@ bool wxDataViewListModel::RowsReordered( unsigned int *new_order ) return ret; } -bool wxDataViewListModel::Cleared() +bool wxDataViewModel::Cleared() { bool ret = true; wxList::compatibility_iterator node = m_notifiers.GetFirst(); while (node) { - wxDataViewListModelNotifier* notifier = (wxDataViewListModelNotifier*) node->GetData(); + wxDataViewModelNotifier* notifier = (wxDataViewModelNotifier*) node->GetData(); if (!notifier->Cleared()) ret = false; node = node->GetNext(); @@ -167,556 +122,17 @@ bool wxDataViewListModel::Cleared() return ret; } -void wxDataViewListModel::AddNotifier( wxDataViewListModelNotifier *notifier ) +void wxDataViewModel::AddNotifier( wxDataViewModelNotifier *notifier ) { m_notifiers.Append( notifier ); notifier->SetOwner( this ); } -void wxDataViewListModel::RemoveNotifier( wxDataViewListModelNotifier *notifier ) +void wxDataViewModel::RemoveNotifier( wxDataViewModelNotifier *notifier ) { m_notifiers.DeleteObject( notifier ); } -// --------------------------------------------------------- -// wxDataViewSortedListModelNotifier -// --------------------------------------------------------- - -class wxDataViewSortedListModelNotifier: public wxDataViewListModelNotifier -{ -public: - wxDataViewSortedListModelNotifier( wxDataViewSortedListModel *model ) - { m_model = model; } - - virtual bool RowAppended() - { return m_model->ChildRowAppended(); } - - virtual bool RowPrepended() - { return m_model->ChildRowPrepended(); } - - virtual bool RowInserted( unsigned int before ) - { return m_model->ChildRowInserted( before ); } - - virtual bool RowDeleted( unsigned int row ) - { return m_model->ChildRowDeleted( row ); } - - virtual bool RowChanged( unsigned int row ) - { return m_model->ChildRowChanged( row ); } - - virtual bool ValueChanged( unsigned int col, unsigned int row ) - { return m_model->ChildValueChanged( col, row); } - - virtual bool RowsReordered( unsigned int *new_order ) - { return m_model->ChildRowsReordered( new_order ); } - - virtual bool Cleared() - { return m_model->ChildCleared(); } - - wxDataViewSortedListModel *m_model; -}; - -// --------------------------------------------------------- -// wxDataViewSortedListModel compare function -// --------------------------------------------------------- - -int wxCALLBACK wxDataViewListModelSortedDefaultCompare - (unsigned int row1, unsigned int row2, unsigned int col, wxDataViewListModel* model ) -{ - wxVariant value1,value2; - model->GetValue( value1, col, row1 ); - model->GetValue( value2, col, row2 ); - if (value1.GetType() == wxT("string")) - { - wxString str1 = value1.GetString(); - wxString str2 = value2.GetString(); - return str1.Cmp( str2 ); - } - if (value1.GetType() == wxT("long")) - { - long l1 = value1.GetLong(); - long l2 = value2.GetLong(); - return l1-l2; - } - if (value1.GetType() == wxT("double")) - { - double d1 = value1.GetDouble(); - double d2 = value2.GetDouble(); - if (d1 == d2) return 0; - if (d1 < d2) return 1; - return -1; - } - if (value1.GetType() == wxT("datetime")) - { - wxDateTime dt1 = value1.GetDateTime(); - wxDateTime dt2 = value2.GetDateTime(); - if (dt1.IsEqualTo(dt2)) return 0; - if (dt1.IsEarlierThan(dt2)) return 1; - return -1; - } - - return 0; -} - -int wxCALLBACK wxDataViewListModelSortedDefaultCompareDescending - (unsigned int row1, unsigned int row2, unsigned int col, wxDataViewListModel* model ) -{ - return wxDataViewListModelSortedDefaultCompare( row2, row1, col, model ); -} - -static wxDataViewListModelCompare s_CmpFunc; -static wxDataViewListModel *s_CmpModel; -static unsigned int s_CmpCol; - -int LINKAGEMODE wxDataViewIntermediateCmp( unsigned int row1, unsigned int row2 ) -{ - return s_CmpFunc( row1, row2, s_CmpCol, s_CmpModel ); -} - -// --------------------------------------------------------- -// wxDataViewSortedListModel -// --------------------------------------------------------- - -wxDataViewSortedListModel::wxDataViewSortedListModel( wxDataViewListModel *child ) : - m_array( wxDataViewIntermediateCmp ) -{ - m_child = child; - - m_ascending = true; - - m_notifierOnChild = new wxDataViewSortedListModelNotifier( this ); - m_child->AddNotifier( m_notifierOnChild ); - - m_child->IncRef(); - - Resort(); -} - -wxDataViewSortedListModel::~wxDataViewSortedListModel() -{ - DetachChild(); -} - -void wxDataViewSortedListModel::DetachChild() -{ - if (m_child) - { - m_child->RemoveNotifier( m_notifierOnChild ); - m_child->DecRef(); - } - - m_child = NULL; -} - -// FIXME -void wxDataViewSortedListModel::InitStatics() -{ - s_CmpCol = 0; - s_CmpModel = m_child; - if (m_ascending) - s_CmpFunc = wxDataViewListModelSortedDefaultCompare; - else - s_CmpFunc = wxDataViewListModelSortedDefaultCompareDescending; -} - -void wxDataViewSortedListModel::Resort() -{ - InitStatics(); - - if (!m_child) return; - - unsigned int n = m_child->GetRowCount(); - - unsigned int i; - if (n != m_array.GetCount()) - { - // probably sorted for the first time -> no reordered - // -- just create index and leave - m_array.Clear(); - for (i = 0; i < n; i++) - m_array.Add( i ); - return; - } - - unsigned int *old_array = new unsigned int[ n ]; - - for (i = 0; i < n; i++) - old_array[i] = m_array[ i ]; - - m_array.Clear(); - for (i = 0; i < n; i++) - m_array.Add( i ); - - unsigned int *order = new unsigned int[ n ]; - - for (i = 0; i < n; i++) - { - unsigned int new_value = m_array[i]; - - unsigned int old_pos; - for (old_pos = 0; old_pos < n; old_pos++) - if (old_array[old_pos] == new_value) - break; - order[i] = old_pos; - } - - delete [] old_array; - - wxDataViewListModel::RowsReordered( order ); - - delete [] order; -} - -#if 0 -static void Dump( wxDataViewListModel *model, unsigned int col ) -{ - unsigned int n = model->GetRowCount(); - unsigned int i; - for (i = 0; i < n; i++) - { - wxVariant variant; - model->GetValue( variant, col, i ); - wxString tmp; - tmp = variant.GetString(); - wxPrintf( wxT("%d: %s\n"), (int) i, tmp.c_str() ); - } -} -#endif - -bool wxDataViewSortedListModel::ChildRowAppended() -{ - // no need to fix up array - - unsigned int len = m_array.GetCount(); - - unsigned int pos = m_array.Add( len ); - - if (pos == 0) - return wxDataViewListModel::RowPrepended(); - - if (pos == len) - return wxDataViewListModel::RowAppended(); - - return wxDataViewListModel::RowInserted( pos ); -} - -bool wxDataViewSortedListModel::ChildRowPrepended() -{ - // fix up array - unsigned int i; - unsigned int len = m_array.GetCount(); - for (i = 0; i < len; i++) - { - unsigned int value = m_array[i]; - m_array[i] = value+1; - } - - unsigned int pos = m_array.Add( 0 ); - - if (pos == 0) - return wxDataViewListModel::RowPrepended(); - - if (pos == len) - return wxDataViewListModel::RowAppended(); - - return wxDataViewListModel::RowInserted( pos ); -} - -bool wxDataViewSortedListModel::ChildRowInserted( unsigned int before ) -{ - // fix up array - unsigned int i; - unsigned int len = m_array.GetCount(); - for (i = 0; i < len; i++) - { - unsigned int value = m_array[i]; - if (value >= before) - m_array[i] = value+1; - } - - unsigned int pos = m_array.Add( before ); - - if (pos == 0) - return wxDataViewListModel::RowPrepended(); - - if (pos == len) - return wxDataViewListModel::RowAppended(); - - return wxDataViewListModel::RowInserted( pos ); -} - -bool wxDataViewSortedListModel::ChildRowDeleted( unsigned int row ) -{ - unsigned int i; - unsigned int len = m_array.GetCount(); - int pos = -1; - for (i = 0; i < len; i++) - { - unsigned int value = m_array[i]; - if (value == row) - { - // delete later - pos = (int) i; - } - else - { - // Fix up array - if (value > row) - m_array[i] = value-1; - } - } - - if (pos == -1) - return false; // we should probably assert - - // remove - m_array.RemoveAt( (unsigned int) pos ); - - return wxDataViewListModel::RowDeleted( (unsigned int) pos); -} - -bool wxDataViewSortedListModel::ChildRowChanged( unsigned int row ) -{ - unsigned int i; - unsigned int len = m_array.GetCount(); - - // Remove and readd sorted. Find out at which - // position it was and where it ended. - unsigned int start_pos = 0,end_pos = 0; - for (i = 0; i < len; i++) - if (m_array[i] == row) - { - start_pos = i; - break; - } - m_array.RemoveAt( start_pos ); - m_array.Add( row ); - - for (i = 0; i < len; i++) - if (m_array[i] == row) - { - end_pos = i; - break; - } - - if (end_pos == start_pos) - return wxDataViewListModel::RowChanged( start_pos ); - - // Create an array where order[old] -> new_pos, so that - // if nothing changed order[0] -> 0 etc. - unsigned int *order = new unsigned int[ len ]; - // Fill up initial values. - for (i = 0; i < len; i++) - order[i] = i; - - if (start_pos < end_pos) - { - for (i = start_pos; i < end_pos; i++) - order[i] = order[i+1]; - order[end_pos] = start_pos; - } - else - { - for (i = end_pos; i > start_pos; i--) - order[i] = order[i-1]; - order[start_pos] = end_pos; - } - - wxDataViewListModel::RowsReordered( order ); - - delete [] order; - - return true; -} - -bool wxDataViewSortedListModel::ChildValueChanged( unsigned int col, unsigned int row ) -{ - unsigned int i; - unsigned int len = m_array.GetCount(); - - // Remove and readd sorted. Find out at which - // position it was and where it ended. - unsigned int start_pos = 0,end_pos = 0; - for (i = 0; i < len; i++) - if (m_array[i] == row) - { - start_pos = i; - break; - } - m_array.RemoveAt( start_pos ); - m_array.Add( row ); - - for (i = 0; i < len; i++) - if (m_array[i] == row) - { - end_pos = i; - break; - } - - if (end_pos == start_pos) - return wxDataViewListModel::ValueChanged( col, start_pos ); - - // Create an array where order[old] -> new_pos, so that - // if nothing changed order[0] -> 0 etc. - unsigned int *order = new unsigned int[ len ]; - // Fill up initial values. - for (i = 0; i < len; i++) - order[i] = i; - - if (start_pos < end_pos) - { - for (i = start_pos; i < end_pos; i++) - order[i] = order[i+1]; - order[end_pos] = start_pos; - } - else - { - for (i = end_pos; i > start_pos; i--) - order[i] = order[i-1]; - order[start_pos] = end_pos; - } - - wxDataViewListModel::RowsReordered( order ); - - delete [] order; - - return true; -} - -bool wxDataViewSortedListModel::ChildRowsReordered( unsigned int *WXUNUSED(new_order) ) -{ - // Nothing needs to be done. If the sort criteria - // of this list don't change, the order of the - // items of the child list isn't relevant. - return true; -} - -bool wxDataViewSortedListModel::ChildCleared() -{ - return wxDataViewListModel::Cleared(); -} - -unsigned int wxDataViewSortedListModel::GetRowCount() const -{ - if (!m_child) return 0; - - return m_child->GetRowCount(); -} - -unsigned int wxDataViewSortedListModel::GetColumnCount() const -{ - if (!m_child) return 0; - - return m_child->GetColumnCount(); -} - -wxString wxDataViewSortedListModel::GetColumnType( unsigned int col ) const -{ - return m_child->GetColumnType( col ); -} - -#include "wx/crt.h" - -void wxDataViewSortedListModel::GetValue( wxVariant &variant, unsigned int col, unsigned int row ) const -{ - unsigned int child_row = m_array[row]; - m_child->GetValue( variant, col, child_row ); -} - -bool wxDataViewSortedListModel::SetValue( const wxVariant &variant, unsigned int col, unsigned int row ) -{ - unsigned int child_row = m_array[row]; - bool ret = m_child->SetValue( variant, col, child_row ); - - // Do nothing here as the change in the - // child model will be reported back. - - return ret; -} - -bool wxDataViewSortedListModel::RowAppended() -{ - // you can only append - bool ret = m_child->RowAppended(); - - // Do nothing here as the change in the - // child model will be reported back. - - return ret; -} - -bool wxDataViewSortedListModel::RowPrepended() -{ - // you can only append - bool ret = m_child->RowAppended(); - - // Do nothing here as the change in the - // child model will be reported back. - - return ret; -} - -bool wxDataViewSortedListModel::RowInserted( unsigned int WXUNUSED(before) ) -{ - // you can only append - bool ret = m_child->RowAppended(); - - // Do nothing here as the change in the - // child model will be reported back. - - return ret; -} - -bool wxDataViewSortedListModel::RowDeleted( unsigned int row ) -{ - unsigned int child_row = m_array[row]; - - bool ret = m_child->RowDeleted( child_row ); - - // Do nothing here as the change in the - // child model will be reported back. - - return ret; -} - -bool wxDataViewSortedListModel::RowChanged( unsigned int row ) -{ - unsigned int child_row = m_array[row]; - bool ret = m_child->RowChanged( child_row ); - - // Do nothing here as the change in the - // child model will be reported back. - - return ret; -} - -bool wxDataViewSortedListModel::ValueChanged( unsigned int col, unsigned int row ) -{ - unsigned int child_row = m_array[row]; - bool ret = m_child->ValueChanged( col, child_row ); - - // Do nothing here as the change in the - // child model will be reported back. - - return ret; -} - -bool wxDataViewSortedListModel::RowsReordered( unsigned int *WXUNUSED(new_order) ) -{ - // We sort them ourselves. - - return false; -} - -bool wxDataViewSortedListModel::Cleared() -{ - bool ret = m_child->Cleared(); - - // Do nothing here as the change in the - // child model will be reported back. - - return ret; -} - // --------------------------------------------------------- // wxDataViewRendererBase // --------------------------------------------------------- @@ -729,7 +145,6 @@ wxDataViewRendererBase::wxDataViewRendererBase( const wxString &varianttype, { m_variantType = varianttype; m_editorCtrl = NULL; - m_row = (unsigned int) -1; } const wxDataViewCtrl* wxDataViewRendererBase::GetView() const @@ -737,13 +152,13 @@ const wxDataViewCtrl* wxDataViewRendererBase::GetView() const return wx_const_cast(wxDataViewRendererBase*, this)->GetOwner()->GetOwner(); } -bool wxDataViewRendererBase::StartEditing( unsigned int row, wxRect labelRect ) +bool wxDataViewRendererBase::StartEditing( const wxDataViewItem &item, wxRect labelRect ) { - m_row = row; // remember for later + m_item = item; // remember for later unsigned int col = GetOwner()->GetModelColumn(); wxVariant value; - GetOwner()->GetOwner()->GetModel()->GetValue( value, col, row ); + GetOwner()->GetOwner()->GetModel()->GetValue( value, item, col ); m_editorCtrl = CreateEditorCtrl( GetOwner()->GetOwner()->GetMainWindow(), labelRect, value ); @@ -783,8 +198,8 @@ bool wxDataViewRendererBase::FinishEditing() return false; unsigned int col = GetOwner()->GetModelColumn(); - GetOwner()->GetOwner()->GetModel()->SetValue( value, col, m_row ); - GetOwner()->GetOwner()->GetModel()->ValueChanged( col, m_row ); + GetOwner()->GetOwner()->GetModel()->SetValue( value, m_item, col ); + GetOwner()->GetOwner()->GetModel()->ValueChanged( m_item, col ); // m_editorCtrl->PopEventHandler( true ); @@ -917,38 +332,35 @@ void wxDataViewColumnBase::SetFlags(int flags) } // --------------------------------------------------------- -// wxDataViewEventListModelNotifier +// wxDataViewEventModelNotifier // --------------------------------------------------------- -class WXDLLIMPEXP_ADV wxDataViewEventListModelNotifier: public wxDataViewListModelNotifier +class WXDLLIMPEXP_ADV wxDataViewEventModelNotifier: public wxDataViewModelNotifier { public: - wxDataViewEventListModelNotifier( wxDataViewCtrl *ctrl ) { m_ctrl = ctrl; } + wxDataViewEventModelNotifier( wxDataViewCtrl *ctrl ) { m_ctrl = ctrl; } - bool SendEvent( wxEventType event_type, unsigned int row = 0, unsigned int col = 0 ) + bool SendEvent( wxEventType event_type, const wxDataViewItem &item, unsigned int col = 0 ) { wxDataViewEvent event( event_type, m_ctrl->GetId() ); event.SetEventObject( m_ctrl ); event.SetModel( m_ctrl->GetModel() ); - event.SetRow( row ); + event.SetItem( item ); event.SetColumn( col ); m_ctrl->GetEventHandler()->ProcessEvent( event ); return true; } - virtual bool RowAppended() { return SendEvent( wxEVT_COMMAND_DATAVIEW_MODEL_ROW_APPENDED ); } - virtual bool RowPrepended() { return SendEvent( wxEVT_COMMAND_DATAVIEW_MODEL_ROW_PREPENDED ); } - virtual bool RowInserted( unsigned int before ) - { return SendEvent( wxEVT_COMMAND_DATAVIEW_MODEL_ROW_INSERTED, before ); } - virtual bool RowDeleted( unsigned int row ) - { return SendEvent( wxEVT_COMMAND_DATAVIEW_MODEL_ROW_DELETED, row ); } - virtual bool RowChanged( unsigned int row ) - { return SendEvent( wxEVT_COMMAND_DATAVIEW_MODEL_ROW_CHANGED, row ); } - virtual bool ValueChanged( unsigned int col, unsigned int row ) - { return SendEvent( wxEVT_COMMAND_DATAVIEW_MODEL_VALUE_CHANGED, row, col ); } - virtual bool RowsReordered( unsigned int *new_order ) - { return SendEvent( wxEVT_COMMAND_DATAVIEW_MODEL_ROWS_REORDERED ); } - virtual bool Cleared() { return SendEvent( wxEVT_COMMAND_DATAVIEW_MODEL_CLEARED ); } + virtual bool ItemAdded( const wxDataViewItem &parent, const wxDataViewItem &item ) + { return SendEvent( wxEVT_COMMAND_DATAVIEW_MODEL_ITEM_ADDED, item ); } + virtual bool ItemDeleted( const wxDataViewItem &item ) + { return SendEvent( wxEVT_COMMAND_DATAVIEW_MODEL_ITEM_DELETED, item ); } + virtual bool ItemChanged( const wxDataViewItem &item ) + { return SendEvent( wxEVT_COMMAND_DATAVIEW_MODEL_ITEM_CHANGED, item ); } + virtual bool ValueChanged( const wxDataViewItem &item, unsigned int col ) + { return SendEvent( wxEVT_COMMAND_DATAVIEW_MODEL_VALUE_CHANGED, item, col ); } + virtual bool Cleared() + { return SendEvent( wxEVT_COMMAND_DATAVIEW_MODEL_CLEARED, wxDataViewItem(0) ); } private: wxDataViewCtrl *m_ctrl; @@ -966,6 +378,8 @@ wxDataViewCtrlBase::wxDataViewCtrlBase() m_model = NULL; m_cols.DeleteContents( true ); m_eventNotifier = NULL; + m_expander_column = 0; + m_indent = 8; } wxDataViewCtrlBase::~wxDataViewCtrlBase() @@ -986,7 +400,7 @@ wxDataViewCtrlBase::~wxDataViewCtrlBase() } } -bool wxDataViewCtrlBase::AssociateModel( wxDataViewListModel *model ) +bool wxDataViewCtrlBase::AssociateModel( wxDataViewModel *model ) { if (m_model) { @@ -1002,14 +416,14 @@ bool wxDataViewCtrlBase::AssociateModel( wxDataViewListModel *model ) if (m_model) { m_model->IncRef(); - m_eventNotifier = new wxDataViewEventListModelNotifier( (wxDataViewCtrl*) this ); + m_eventNotifier = new wxDataViewEventModelNotifier( (wxDataViewCtrl*) this ); m_model->AddNotifier( m_eventNotifier ); } return true; } -wxDataViewListModel* wxDataViewCtrlBase::GetModel() +wxDataViewModel* wxDataViewCtrlBase::GetModel() { return m_model; } @@ -1127,18 +541,16 @@ wxDataViewColumn* wxDataViewCtrlBase::GetColumn( unsigned int pos ) IMPLEMENT_DYNAMIC_CLASS(wxDataViewEvent,wxNotifyEvent) -DEFINE_EVENT_TYPE(wxEVT_COMMAND_DATAVIEW_ROW_SELECTED) -DEFINE_EVENT_TYPE(wxEVT_COMMAND_DATAVIEW_ROW_ACTIVATED) +DEFINE_EVENT_TYPE(wxEVT_COMMAND_DATAVIEW_ITEM_SELECTED) +DEFINE_EVENT_TYPE(wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED) DEFINE_EVENT_TYPE(wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICK) DEFINE_EVENT_TYPE(wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK) +DEFINE_EVENT_TYPE(wxEVT_COMMAND_DATAVIEW_COLUMN_SORTED) -DEFINE_EVENT_TYPE(wxEVT_COMMAND_DATAVIEW_MODEL_ROW_APPENDED) -DEFINE_EVENT_TYPE(wxEVT_COMMAND_DATAVIEW_MODEL_ROW_PREPENDED) -DEFINE_EVENT_TYPE(wxEVT_COMMAND_DATAVIEW_MODEL_ROW_INSERTED) -DEFINE_EVENT_TYPE(wxEVT_COMMAND_DATAVIEW_MODEL_ROW_DELETED) -DEFINE_EVENT_TYPE(wxEVT_COMMAND_DATAVIEW_MODEL_ROW_CHANGED) +DEFINE_EVENT_TYPE(wxEVT_COMMAND_DATAVIEW_MODEL_ITEM_ADDED) +DEFINE_EVENT_TYPE(wxEVT_COMMAND_DATAVIEW_MODEL_ITEM_DELETED) +DEFINE_EVENT_TYPE(wxEVT_COMMAND_DATAVIEW_MODEL_ITEM_CHANGED) DEFINE_EVENT_TYPE(wxEVT_COMMAND_DATAVIEW_MODEL_VALUE_CHANGED) -DEFINE_EVENT_TYPE(wxEVT_COMMAND_DATAVIEW_MODEL_ROWS_REORDERED) DEFINE_EVENT_TYPE(wxEVT_COMMAND_DATAVIEW_MODEL_CLEARED) #endif