fix MSVC warnings about conversions between pointers and longs
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53722 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -260,38 +260,41 @@ int wxDataViewModel::Compare( const wxDataViewItem &item1, const wxDataViewItem
|
|||||||
wxString str1 = value1.GetString();
|
wxString str1 = value1.GetString();
|
||||||
wxString str2 = value2.GetString();
|
wxString str2 = value2.GetString();
|
||||||
int res = str1.Cmp( str2 );
|
int res = str1.Cmp( str2 );
|
||||||
if (res) return res;
|
if (res)
|
||||||
} else
|
return res;
|
||||||
if (value1.GetType() == wxT("long"))
|
}
|
||||||
|
else if (value1.GetType() == wxT("long"))
|
||||||
{
|
{
|
||||||
long l1 = value1.GetLong();
|
long l1 = value1.GetLong();
|
||||||
long l2 = value2.GetLong();
|
long l2 = value2.GetLong();
|
||||||
long res = l1-l2;
|
long res = l1-l2;
|
||||||
if (res) return res;
|
if (res)
|
||||||
} else
|
return res;
|
||||||
if (value1.GetType() == wxT("double"))
|
}
|
||||||
|
else if (value1.GetType() == wxT("double"))
|
||||||
{
|
{
|
||||||
double d1 = value1.GetDouble();
|
double d1 = value1.GetDouble();
|
||||||
double d2 = value2.GetDouble();
|
double d2 = value2.GetDouble();
|
||||||
if (d1 < d2) return 1;
|
if (d1 < d2)
|
||||||
if (d1 > d2) return -1;
|
return 1;
|
||||||
} else
|
if (d1 > d2)
|
||||||
if (value1.GetType() == wxT("datetime"))
|
return -1;
|
||||||
|
}
|
||||||
|
else if (value1.GetType() == wxT("datetime"))
|
||||||
{
|
{
|
||||||
wxDateTime dt1 = value1.GetDateTime();
|
wxDateTime dt1 = value1.GetDateTime();
|
||||||
wxDateTime dt2 = value2.GetDateTime();
|
wxDateTime dt2 = value2.GetDateTime();
|
||||||
if (dt1.IsEarlierThan(dt2)) return 1;
|
if (dt1.IsEarlierThan(dt2))
|
||||||
if (dt2.IsEarlierThan(dt1)) return -11;
|
return 1;
|
||||||
|
if (dt2.IsEarlierThan(dt1))
|
||||||
|
return -11;
|
||||||
}
|
}
|
||||||
|
|
||||||
// items must be different
|
// items must be different
|
||||||
unsigned long litem1 = (unsigned long) item1.GetID();
|
wxUIntPtr id1 = wxPtrToUInt(item1.GetID()),
|
||||||
unsigned long litem2 = (unsigned long) item2.GetID();
|
id2 = wxPtrToUInt(item2.GetID());
|
||||||
|
|
||||||
if (!ascending)
|
return ascending ? id1 - id2 : id2 - id1;
|
||||||
return litem2-litem2;
|
|
||||||
|
|
||||||
return litem1-litem2;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------
|
// ---------------------------------------------------------
|
||||||
@@ -308,11 +311,11 @@ wxDataViewIndexListModel::wxDataViewIndexListModel( unsigned int initial_size )
|
|||||||
{
|
{
|
||||||
// IDs are ordered until an item gets deleted or inserted
|
// IDs are ordered until an item gets deleted or inserted
|
||||||
m_ordered = true;
|
m_ordered = true;
|
||||||
|
|
||||||
// build initial index
|
// build initial index
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
for (i = 1; i < initial_size+1; i++)
|
for (i = 1; i < initial_size+1; i++)
|
||||||
m_hash.Add( (void*) i );
|
m_hash.Add( wxUIntToPtr(i) );
|
||||||
m_lastIndex = initial_size + 1;
|
m_lastIndex = initial_size + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -323,51 +326,51 @@ wxDataViewIndexListModel::~wxDataViewIndexListModel()
|
|||||||
void wxDataViewIndexListModel::Reset( unsigned int new_size )
|
void wxDataViewIndexListModel::Reset( unsigned int new_size )
|
||||||
{
|
{
|
||||||
m_hash.Clear();
|
m_hash.Clear();
|
||||||
|
|
||||||
// IDs are ordered until an item gets deleted or inserted
|
// IDs are ordered until an item gets deleted or inserted
|
||||||
m_ordered = true;
|
m_ordered = true;
|
||||||
|
|
||||||
// build initial index
|
// build initial index
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
for (i = 1; i < new_size+1; i++)
|
for (i = 1; i < new_size+1; i++)
|
||||||
m_hash.Add( (void*) i );
|
m_hash.Add( wxUIntToPtr(i) );
|
||||||
m_lastIndex = new_size + 1;
|
m_lastIndex = new_size + 1;
|
||||||
|
|
||||||
wxDataViewModel::Cleared();
|
wxDataViewModel::Cleared();
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxDataViewIndexListModel::RowPrepended()
|
void wxDataViewIndexListModel::RowPrepended()
|
||||||
{
|
{
|
||||||
m_ordered = false;
|
m_ordered = false;
|
||||||
|
|
||||||
unsigned int id = m_lastIndex++;
|
unsigned int id = m_lastIndex++;
|
||||||
m_hash.Insert( (void*) id, 0 );
|
m_hash.Insert( wxUIntToPtr(id), 0 );
|
||||||
wxDataViewItem item( (void*) id );
|
wxDataViewItem item( wxUIntToPtr(id) );
|
||||||
ItemAdded( wxDataViewItem(0), item );
|
ItemAdded( wxDataViewItem(0), item );
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxDataViewIndexListModel::RowInserted( unsigned int before )
|
void wxDataViewIndexListModel::RowInserted( unsigned int before )
|
||||||
{
|
{
|
||||||
m_ordered = false;
|
m_ordered = false;
|
||||||
|
|
||||||
unsigned int id = m_lastIndex++;
|
unsigned int id = m_lastIndex++;
|
||||||
m_hash.Insert( (void*) id, before );
|
m_hash.Insert( wxUIntToPtr(id), before );
|
||||||
wxDataViewItem item( (void*) id );
|
wxDataViewItem item( wxUIntToPtr(id) );
|
||||||
ItemAdded( wxDataViewItem(0), item );
|
ItemAdded( wxDataViewItem(0), item );
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxDataViewIndexListModel::RowAppended()
|
void wxDataViewIndexListModel::RowAppended()
|
||||||
{
|
{
|
||||||
unsigned int id = m_lastIndex++;
|
unsigned int id = m_lastIndex++;
|
||||||
m_hash.Add( (void*) id );
|
m_hash.Add( wxUIntToPtr(id) );
|
||||||
wxDataViewItem item( (void*) id );
|
wxDataViewItem item( wxUIntToPtr(id) );
|
||||||
ItemAdded( wxDataViewItem(0), item );
|
ItemAdded( wxDataViewItem(0), item );
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxDataViewIndexListModel::RowDeleted( unsigned int row )
|
void wxDataViewIndexListModel::RowDeleted( unsigned int row )
|
||||||
{
|
{
|
||||||
m_ordered = false;
|
m_ordered = false;
|
||||||
|
|
||||||
wxDataViewItem item( m_hash[row] );
|
wxDataViewItem item( m_hash[row] );
|
||||||
wxDataViewModel::ItemDeleted( wxDataViewItem(0), item );
|
wxDataViewModel::ItemDeleted( wxDataViewItem(0), item );
|
||||||
m_hash.RemoveAt( row );
|
m_hash.RemoveAt( row );
|
||||||
@@ -377,9 +380,9 @@ void wxDataViewIndexListModel::RowsDeleted( const wxArrayInt &rows )
|
|||||||
{
|
{
|
||||||
wxArrayInt sorted = rows;
|
wxArrayInt sorted = rows;
|
||||||
sorted.Sort( my_sort );
|
sorted.Sort( my_sort );
|
||||||
|
|
||||||
m_ordered = false;
|
m_ordered = false;
|
||||||
|
|
||||||
wxDataViewItemArray array;
|
wxDataViewItemArray array;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
for (i = 0; i < rows.GetCount(); i++)
|
for (i = 0; i < rows.GetCount(); i++)
|
||||||
@@ -388,7 +391,7 @@ void wxDataViewIndexListModel::RowsDeleted( const wxArrayInt &rows )
|
|||||||
array.Add( item );
|
array.Add( item );
|
||||||
}
|
}
|
||||||
wxDataViewModel::ItemsDeleted( wxDataViewItem(0), array );
|
wxDataViewModel::ItemsDeleted( wxDataViewItem(0), array );
|
||||||
|
|
||||||
for (i = 0; i < sorted.GetCount(); i++)
|
for (i = 0; i < sorted.GetCount(); i++)
|
||||||
m_hash.RemoveAt( sorted[i] );
|
m_hash.RemoveAt( sorted[i] );
|
||||||
}
|
}
|
||||||
@@ -410,7 +413,7 @@ unsigned int wxDataViewIndexListModel::GetRow( const wxDataViewItem &item ) cons
|
|||||||
unsigned int pos = wxPtrToUInt( item.GetID() );
|
unsigned int pos = wxPtrToUInt( item.GetID() );
|
||||||
return pos-1;
|
return pos-1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// assert for not found
|
// assert for not found
|
||||||
return (unsigned int) m_hash.Index( item.GetID() );
|
return (unsigned int) m_hash.Index( item.GetID() );
|
||||||
}
|
}
|
||||||
@@ -422,7 +425,7 @@ wxDataViewItem wxDataViewIndexListModel::GetItem( unsigned int row ) const
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool wxDataViewIndexListModel::HasDefaultCompare() const
|
bool wxDataViewIndexListModel::HasDefaultCompare() const
|
||||||
{
|
{
|
||||||
return !m_ordered;
|
return !m_ordered;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -435,13 +438,13 @@ int wxDataViewIndexListModel::Compare(const wxDataViewItem& item1,
|
|||||||
{
|
{
|
||||||
unsigned int pos1 = wxPtrToUInt(item1.GetID());
|
unsigned int pos1 = wxPtrToUInt(item1.GetID());
|
||||||
unsigned int pos2 = wxPtrToUInt(item2.GetID());
|
unsigned int pos2 = wxPtrToUInt(item2.GetID());
|
||||||
|
|
||||||
if (ascending)
|
if (ascending)
|
||||||
return pos1 - pos2;
|
return pos1 - pos2;
|
||||||
else
|
else
|
||||||
return pos2 - pos1;
|
return pos2 - pos1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ascending)
|
if (ascending)
|
||||||
return GetRow(item1) - GetRow(item2);
|
return GetRow(item1) - GetRow(item2);
|
||||||
|
|
||||||
@@ -485,7 +488,7 @@ unsigned int wxDataViewIndexListModel::GetChildren( const wxDataViewItem &item,
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
children = m_hash;
|
children = m_hash;
|
||||||
|
|
||||||
return m_hash.GetCount();
|
return m_hash.GetCount();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -507,34 +510,34 @@ wxDataViewVirtualListModel::~wxDataViewVirtualListModel()
|
|||||||
void wxDataViewVirtualListModel::Reset( unsigned int new_size )
|
void wxDataViewVirtualListModel::Reset( unsigned int new_size )
|
||||||
{
|
{
|
||||||
m_lastIndex = new_size-1;
|
m_lastIndex = new_size-1;
|
||||||
|
|
||||||
wxDataViewModel::Cleared();
|
wxDataViewModel::Cleared();
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxDataViewVirtualListModel::RowPrepended()
|
void wxDataViewVirtualListModel::RowPrepended()
|
||||||
{
|
{
|
||||||
m_lastIndex++;
|
m_lastIndex++;
|
||||||
wxDataViewItem item( (void*) 0 );
|
wxDataViewItem item( NULL );
|
||||||
ItemAdded( wxDataViewItem(0), item );
|
ItemAdded( wxDataViewItem(0), item );
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxDataViewVirtualListModel::RowInserted( unsigned int before )
|
void wxDataViewVirtualListModel::RowInserted( unsigned int before )
|
||||||
{
|
{
|
||||||
m_lastIndex++;
|
m_lastIndex++;
|
||||||
wxDataViewItem item( (void*) before );
|
wxDataViewItem item( wxUIntToPtr(before) );
|
||||||
ItemAdded( wxDataViewItem(0), item );
|
ItemAdded( wxDataViewItem(0), item );
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxDataViewVirtualListModel::RowAppended()
|
void wxDataViewVirtualListModel::RowAppended()
|
||||||
{
|
{
|
||||||
m_lastIndex++;
|
m_lastIndex++;
|
||||||
wxDataViewItem item( (void*) m_lastIndex );
|
wxDataViewItem item( wxUIntToPtr(m_lastIndex) );
|
||||||
ItemAdded( wxDataViewItem(0), item );
|
ItemAdded( wxDataViewItem(0), item );
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxDataViewVirtualListModel::RowDeleted( unsigned int row )
|
void wxDataViewVirtualListModel::RowDeleted( unsigned int row )
|
||||||
{
|
{
|
||||||
wxDataViewItem item( (void*) row );
|
wxDataViewItem item( wxUIntToPtr(row) );
|
||||||
wxDataViewModel::ItemDeleted( wxDataViewItem(0), item );
|
wxDataViewModel::ItemDeleted( wxDataViewItem(0), item );
|
||||||
m_lastIndex++;
|
m_lastIndex++;
|
||||||
}
|
}
|
||||||
@@ -543,16 +546,16 @@ void wxDataViewVirtualListModel::RowsDeleted( const wxArrayInt &rows )
|
|||||||
{
|
{
|
||||||
wxArrayInt sorted = rows;
|
wxArrayInt sorted = rows;
|
||||||
sorted.Sort( my_sort );
|
sorted.Sort( my_sort );
|
||||||
|
|
||||||
wxDataViewItemArray array;
|
wxDataViewItemArray array;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
for (i = 0; i < sorted.GetCount(); i++)
|
for (i = 0; i < sorted.GetCount(); i++)
|
||||||
{
|
{
|
||||||
wxDataViewItem item( (void*) sorted[i] );
|
wxDataViewItem item( wxUIntToPtr(sorted[i]) );
|
||||||
array.Add( item );
|
array.Add( item );
|
||||||
}
|
}
|
||||||
wxDataViewModel::ItemsDeleted( wxDataViewItem(0), array );
|
wxDataViewModel::ItemsDeleted( wxDataViewItem(0), array );
|
||||||
|
|
||||||
m_lastIndex -= rows.GetCount();
|
m_lastIndex -= rows.GetCount();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -573,11 +576,11 @@ unsigned int wxDataViewVirtualListModel::GetRow( const wxDataViewItem &item ) co
|
|||||||
|
|
||||||
wxDataViewItem wxDataViewVirtualListModel::GetItem( unsigned int row ) const
|
wxDataViewItem wxDataViewVirtualListModel::GetItem( unsigned int row ) const
|
||||||
{
|
{
|
||||||
return wxDataViewItem( (void*) row );
|
return wxDataViewItem( wxUIntToPtr(row) );
|
||||||
}
|
}
|
||||||
|
|
||||||
bool wxDataViewVirtualListModel::HasDefaultCompare() const
|
bool wxDataViewVirtualListModel::HasDefaultCompare() const
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -588,10 +591,10 @@ int wxDataViewVirtualListModel::Compare(const wxDataViewItem& item1,
|
|||||||
{
|
{
|
||||||
unsigned int pos1 = wxPtrToUInt(item1.GetID());
|
unsigned int pos1 = wxPtrToUInt(item1.GetID());
|
||||||
unsigned int pos2 = wxPtrToUInt(item2.GetID());
|
unsigned int pos2 = wxPtrToUInt(item2.GetID());
|
||||||
|
|
||||||
if (ascending)
|
if (ascending)
|
||||||
return pos1 - pos2;
|
return pos1 - pos2;
|
||||||
else
|
else
|
||||||
return pos2 - pos1;
|
return pos2 - pos1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -672,8 +675,8 @@ const wxDataViewCtrl* wxDataViewRendererBase::GetView() const
|
|||||||
}
|
}
|
||||||
|
|
||||||
class wxKillRef: public wxWindowRef
|
class wxKillRef: public wxWindowRef
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxKillRef( wxWindow *win ) : wxWindowRef( win ) { }
|
wxKillRef( wxWindow *win ) : wxWindowRef( win ) { }
|
||||||
virtual void OnObjectDestroy()
|
virtual void OnObjectDestroy()
|
||||||
{
|
{
|
||||||
@@ -718,7 +721,7 @@ bool wxDataViewRendererBase::StartEditing( const wxDataViewItem &item, wxRect la
|
|||||||
void wxDataViewRendererBase::CancelEditing()
|
void wxDataViewRendererBase::CancelEditing()
|
||||||
{
|
{
|
||||||
GetOwner()->GetOwner()->GetMainWindow()->SetFocus();
|
GetOwner()->GetOwner()->GetMainWindow()->SetFocus();
|
||||||
|
|
||||||
m_editorCtrl->Hide();
|
m_editorCtrl->Hide();
|
||||||
wxPendingDelete.Append( m_editorCtrl );
|
wxPendingDelete.Append( m_editorCtrl );
|
||||||
}
|
}
|
||||||
@@ -732,7 +735,7 @@ bool wxDataViewRendererBase::FinishEditing()
|
|||||||
|
|
||||||
m_editorCtrl->Hide();
|
m_editorCtrl->Hide();
|
||||||
wxPendingDelete.Append( m_editorCtrl );
|
wxPendingDelete.Append( m_editorCtrl );
|
||||||
|
|
||||||
if (!Validate(value))
|
if (!Validate(value))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
@@ -1264,7 +1267,7 @@ wxControl* wxDataViewSpinRenderer::CreateEditorCtrl( wxWindow *parent, wxRect la
|
|||||||
wxPoint pt = sc->GetPosition();
|
wxPoint pt = sc->GetPosition();
|
||||||
sc->SetSize( pt.x - 4, pt.y - 4, size.x, size.y );
|
sc->SetSize( pt.x - 4, pt.y - 4, size.x, size.y );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return sc;
|
return sc;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1599,7 +1602,7 @@ wxDataViewTreeStore::GetValue(wxVariant &variant,
|
|||||||
if (container->IsExpanded() && container->GetExpandedIcon().IsOk())
|
if (container->IsExpanded() && container->GetExpandedIcon().IsOk())
|
||||||
icon = container->GetExpandedIcon();
|
icon = container->GetExpandedIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
wxDataViewIconText data( node->GetText(), icon );
|
wxDataViewIconText data( node->GetText(), icon );
|
||||||
|
|
||||||
variant << data;
|
variant << data;
|
||||||
@@ -1730,15 +1733,15 @@ wxDataViewTreeCtrl::wxDataViewTreeCtrl()
|
|||||||
}
|
}
|
||||||
|
|
||||||
wxDataViewTreeCtrl::wxDataViewTreeCtrl( wxWindow *parent, wxWindowID id,
|
wxDataViewTreeCtrl::wxDataViewTreeCtrl( wxWindow *parent, wxWindowID id,
|
||||||
const wxPoint& pos, const wxSize& size, long style, const wxValidator& validator )
|
const wxPoint& pos, const wxSize& size, long style, const wxValidator& validator )
|
||||||
{
|
{
|
||||||
m_imageList = NULL;
|
m_imageList = NULL;
|
||||||
Create( parent, id, pos, size, style, validator );
|
Create( parent, id, pos, size, style, validator );
|
||||||
|
|
||||||
wxDataViewTreeStore *store = new wxDataViewTreeStore;
|
wxDataViewTreeStore *store = new wxDataViewTreeStore;
|
||||||
AssociateModel( store );
|
AssociateModel( store );
|
||||||
store->DecRef();
|
store->DecRef();
|
||||||
|
|
||||||
AppendIconTextColumn(wxString(),0,wxDATAVIEW_CELL_INERT,-1);
|
AppendIconTextColumn(wxString(),0,wxDATAVIEW_CELL_INERT,-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1759,16 +1762,16 @@ void wxDataViewTreeCtrl::SetImageList( wxImageList *imagelist )
|
|||||||
if (m_imageList)
|
if (m_imageList)
|
||||||
delete m_imageList;
|
delete m_imageList;
|
||||||
|
|
||||||
m_imageList = imagelist;
|
m_imageList = imagelist;
|
||||||
}
|
}
|
||||||
|
|
||||||
wxDataViewItem wxDataViewTreeCtrl::AppendItem( const wxDataViewItem& parent,
|
wxDataViewItem wxDataViewTreeCtrl::AppendItem( const wxDataViewItem& parent,
|
||||||
const wxString &text, int iconIndex, wxClientData *data )
|
const wxString &text, int iconIndex, wxClientData *data )
|
||||||
{
|
{
|
||||||
wxIcon icon = wxNullIcon;
|
wxIcon icon = wxNullIcon;
|
||||||
if (m_imageList && (iconIndex != -1))
|
if (m_imageList && (iconIndex != -1))
|
||||||
icon = m_imageList->GetIcon( iconIndex );
|
icon = m_imageList->GetIcon( iconIndex );
|
||||||
|
|
||||||
return GetStore()->AppendItem( parent, text, icon, data );
|
return GetStore()->AppendItem( parent, text, icon, data );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1778,7 +1781,7 @@ wxDataViewItem wxDataViewTreeCtrl::PrependItem( const wxDataViewItem& parent,
|
|||||||
wxIcon icon = wxNullIcon;
|
wxIcon icon = wxNullIcon;
|
||||||
if (m_imageList && (iconIndex != -1))
|
if (m_imageList && (iconIndex != -1))
|
||||||
icon = m_imageList->GetIcon( iconIndex );
|
icon = m_imageList->GetIcon( iconIndex );
|
||||||
|
|
||||||
return GetStore()->PrependItem( parent, text, icon, data );
|
return GetStore()->PrependItem( parent, text, icon, data );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1788,7 +1791,7 @@ wxDataViewItem wxDataViewTreeCtrl::InsertItem( const wxDataViewItem& parent, con
|
|||||||
wxIcon icon = wxNullIcon;
|
wxIcon icon = wxNullIcon;
|
||||||
if (m_imageList && (iconIndex != -1))
|
if (m_imageList && (iconIndex != -1))
|
||||||
icon = m_imageList->GetIcon( iconIndex );
|
icon = m_imageList->GetIcon( iconIndex );
|
||||||
|
|
||||||
return GetStore()->InsertItem( parent, previous, text, icon, data );
|
return GetStore()->InsertItem( parent, previous, text, icon, data );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1798,11 +1801,11 @@ wxDataViewItem wxDataViewTreeCtrl::PrependContainer( const wxDataViewItem& paren
|
|||||||
wxIcon icon = wxNullIcon;
|
wxIcon icon = wxNullIcon;
|
||||||
if (m_imageList && (iconIndex != -1))
|
if (m_imageList && (iconIndex != -1))
|
||||||
icon = m_imageList->GetIcon( iconIndex );
|
icon = m_imageList->GetIcon( iconIndex );
|
||||||
|
|
||||||
wxIcon expanded = wxNullIcon;
|
wxIcon expanded = wxNullIcon;
|
||||||
if (m_imageList && (expandedIndex != -1))
|
if (m_imageList && (expandedIndex != -1))
|
||||||
expanded = m_imageList->GetIcon( expandedIndex );
|
expanded = m_imageList->GetIcon( expandedIndex );
|
||||||
|
|
||||||
return GetStore()->PrependContainer( parent, text, icon, expanded, data );
|
return GetStore()->PrependContainer( parent, text, icon, expanded, data );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1812,11 +1815,11 @@ wxDataViewItem wxDataViewTreeCtrl::AppendContainer( const wxDataViewItem& parent
|
|||||||
wxIcon icon = wxNullIcon;
|
wxIcon icon = wxNullIcon;
|
||||||
if (m_imageList && (iconIndex != -1))
|
if (m_imageList && (iconIndex != -1))
|
||||||
icon = m_imageList->GetIcon( iconIndex );
|
icon = m_imageList->GetIcon( iconIndex );
|
||||||
|
|
||||||
wxIcon expanded = wxNullIcon;
|
wxIcon expanded = wxNullIcon;
|
||||||
if (m_imageList && (expandedIndex != -1))
|
if (m_imageList && (expandedIndex != -1))
|
||||||
expanded = m_imageList->GetIcon( expandedIndex );
|
expanded = m_imageList->GetIcon( expandedIndex );
|
||||||
|
|
||||||
return GetStore()->AppendContainer( parent, text, icon, expanded, data );
|
return GetStore()->AppendContainer( parent, text, icon, expanded, data );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1826,21 +1829,21 @@ wxDataViewItem wxDataViewTreeCtrl::InsertContainer( const wxDataViewItem& parent
|
|||||||
wxIcon icon = wxNullIcon;
|
wxIcon icon = wxNullIcon;
|
||||||
if (m_imageList && (iconIndex != -1))
|
if (m_imageList && (iconIndex != -1))
|
||||||
icon = m_imageList->GetIcon( iconIndex );
|
icon = m_imageList->GetIcon( iconIndex );
|
||||||
|
|
||||||
wxIcon expanded = wxNullIcon;
|
wxIcon expanded = wxNullIcon;
|
||||||
if (m_imageList && (expandedIndex != -1))
|
if (m_imageList && (expandedIndex != -1))
|
||||||
expanded = m_imageList->GetIcon( expandedIndex );
|
expanded = m_imageList->GetIcon( expandedIndex );
|
||||||
|
|
||||||
return GetStore()->InsertContainer( parent, previous, text, icon, expanded, data );
|
return GetStore()->InsertContainer( parent, previous, text, icon, expanded, data );
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxDataViewTreeCtrl::OnExpanded( wxDataViewEvent &event )
|
void wxDataViewTreeCtrl::OnExpanded( wxDataViewEvent &event )
|
||||||
{
|
{
|
||||||
if (m_imageList) return;
|
if (m_imageList) return;
|
||||||
|
|
||||||
wxDataViewTreeStoreContainerNode* container = GetStore()->FindContainerNode( event.GetItem() );
|
wxDataViewTreeStoreContainerNode* container = GetStore()->FindContainerNode( event.GetItem() );
|
||||||
if (!container) return;
|
if (!container) return;
|
||||||
|
|
||||||
container->SetExpanded( true );
|
container->SetExpanded( true );
|
||||||
GetStore()->ItemChanged( event.GetItem() );
|
GetStore()->ItemChanged( event.GetItem() );
|
||||||
}
|
}
|
||||||
@@ -1848,10 +1851,10 @@ void wxDataViewTreeCtrl::OnExpanded( wxDataViewEvent &event )
|
|||||||
void wxDataViewTreeCtrl::OnCollapsed( wxDataViewEvent &event )
|
void wxDataViewTreeCtrl::OnCollapsed( wxDataViewEvent &event )
|
||||||
{
|
{
|
||||||
if (m_imageList) return;
|
if (m_imageList) return;
|
||||||
|
|
||||||
wxDataViewTreeStoreContainerNode* container = GetStore()->FindContainerNode( event.GetItem() );
|
wxDataViewTreeStoreContainerNode* container = GetStore()->FindContainerNode( event.GetItem() );
|
||||||
if (!container) return;
|
if (!container) return;
|
||||||
|
|
||||||
container->SetExpanded( false );
|
container->SetExpanded( false );
|
||||||
GetStore()->ItemChanged( event.GetItem() );
|
GetStore()->ItemChanged( event.GetItem() );
|
||||||
}
|
}
|
||||||
@@ -1861,7 +1864,7 @@ void wxDataViewTreeCtrl::OnSize( wxSizeEvent &event )
|
|||||||
#if defined(wxUSE_GENERICDATAVIEWCTRL)
|
#if defined(wxUSE_GENERICDATAVIEWCTRL)
|
||||||
wxSize size = GetClientSize();
|
wxSize size = GetClientSize();
|
||||||
wxDataViewColumn *col = GetColumn( 0 );
|
wxDataViewColumn *col = GetColumn( 0 );
|
||||||
if (col)
|
if (col)
|
||||||
col->SetWidth( size.x );
|
col->SetWidth( size.x );
|
||||||
#endif
|
#endif
|
||||||
event.Skip( true );
|
event.Skip( true );
|
||||||
|
@@ -432,7 +432,7 @@ public:
|
|||||||
const wxSize &size = wxDefaultSize,
|
const wxSize &size = wxDefaultSize,
|
||||||
const wxString &name = wxT("wxdataviewctrlmainwindow") );
|
const wxString &name = wxT("wxdataviewctrlmainwindow") );
|
||||||
virtual ~wxDataViewMainWindow();
|
virtual ~wxDataViewMainWindow();
|
||||||
|
|
||||||
bool IsVirtualList() const { return m_root == NULL; }
|
bool IsVirtualList() const { return m_root == NULL; }
|
||||||
|
|
||||||
// notifications from wxDataViewModel
|
// notifications from wxDataViewModel
|
||||||
@@ -524,7 +524,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
wxRect GetLineRect( unsigned int row ) const;
|
wxRect GetLineRect( unsigned int row ) const;
|
||||||
|
|
||||||
int GetLineStart( unsigned int row ) const; // row * m_lineHeight in fixed mode
|
int GetLineStart( unsigned int row ) const; // row * m_lineHeight in fixed mode
|
||||||
int GetLineHeight( unsigned int row ) const; // m_lineHeight in fixed mode
|
int GetLineHeight( unsigned int row ) const; // m_lineHeight in fixed mode
|
||||||
int GetLineAt( unsigned int y ) const; // y / m_lineHeight in fixed mode
|
int GetLineAt( unsigned int y ) const; // y / m_lineHeight in fixed mode
|
||||||
@@ -532,7 +532,7 @@ public:
|
|||||||
//Some useful functions for row and item mapping
|
//Some useful functions for row and item mapping
|
||||||
wxDataViewItem GetItemByRow( unsigned int row ) const;
|
wxDataViewItem GetItemByRow( unsigned int row ) const;
|
||||||
int GetRowByItem( const wxDataViewItem & item ) const;
|
int GetRowByItem( const wxDataViewItem & item ) const;
|
||||||
|
|
||||||
//Methods for building the mapping tree
|
//Methods for building the mapping tree
|
||||||
void BuildTree( wxDataViewModel * model );
|
void BuildTree( wxDataViewModel * model );
|
||||||
void DestroyTree();
|
void DestroyTree();
|
||||||
@@ -657,7 +657,7 @@ wxDC *wxDataViewRenderer::GetDC()
|
|||||||
}
|
}
|
||||||
|
|
||||||
void wxDataViewRenderer::SetAlignment( int align )
|
void wxDataViewRenderer::SetAlignment( int align )
|
||||||
{
|
{
|
||||||
m_align=align;
|
m_align=align;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -667,15 +667,15 @@ int wxDataViewRenderer::GetAlignment() const
|
|||||||
}
|
}
|
||||||
|
|
||||||
int wxDataViewRenderer::CalculateAlignment() const
|
int wxDataViewRenderer::CalculateAlignment() const
|
||||||
{
|
{
|
||||||
if (m_align == wxDVR_DEFAULT_ALIGNMENT)
|
if (m_align == wxDVR_DEFAULT_ALIGNMENT)
|
||||||
{
|
{
|
||||||
if (GetOwner() == NULL)
|
if (GetOwner() == NULL)
|
||||||
return wxALIGN_LEFT | wxALIGN_CENTRE_VERTICAL;
|
return wxALIGN_LEFT | wxALIGN_CENTRE_VERTICAL;
|
||||||
|
|
||||||
return GetOwner()->GetAlignment() | wxALIGN_CENTRE_VERTICAL;
|
return GetOwner()->GetAlignment() | wxALIGN_CENTRE_VERTICAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
return m_align;
|
return m_align;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1400,7 +1400,7 @@ void wxDataViewHeaderWindowMSW::UpdateDisplay()
|
|||||||
// remove old columns
|
// remove old columns
|
||||||
for (int j=0, max=Header_GetItemCount((HWND)m_hWnd); j < max; j++)
|
for (int j=0, max=Header_GetItemCount((HWND)m_hWnd); j < max; j++)
|
||||||
Header_DeleteItem((HWND)m_hWnd, 0);
|
Header_DeleteItem((HWND)m_hWnd, 0);
|
||||||
|
|
||||||
m_imageList->RemoveAll();
|
m_imageList->RemoveAll();
|
||||||
|
|
||||||
// add the updated array of columns to the header control
|
// add the updated array of columns to the header control
|
||||||
@@ -1427,7 +1427,7 @@ void wxDataViewHeaderWindowMSW::UpdateDisplay()
|
|||||||
hdi.fmt = HDF_LEFT | HDF_STRING;
|
hdi.fmt = HDF_LEFT | HDF_STRING;
|
||||||
if (col->GetBitmap().IsOk())
|
if (col->GetBitmap().IsOk())
|
||||||
hdi.fmt |= HDF_IMAGE;
|
hdi.fmt |= HDF_IMAGE;
|
||||||
|
|
||||||
//hdi.fmt &= ~(HDF_SORTDOWN|HDF_SORTUP);
|
//hdi.fmt &= ~(HDF_SORTDOWN|HDF_SORTUP);
|
||||||
|
|
||||||
if (col->IsSortable() && GetOwner()->GetSortingColumn() == col)
|
if (col->IsSortable() && GetOwner()->GetSortingColumn() == col)
|
||||||
@@ -2175,7 +2175,7 @@ void wxDataViewMainWindow::OnPaint( wxPaintEvent &WXUNUSED(event) )
|
|||||||
cell_rect.x = x_start;
|
cell_rect.x = x_start;
|
||||||
for (unsigned int i = col_start; i < col_last; i++)
|
for (unsigned int i = col_start; i < col_last; i++)
|
||||||
{
|
{
|
||||||
|
|
||||||
wxDataViewColumn *col = GetOwner()->GetColumn( i );
|
wxDataViewColumn *col = GetOwner()->GetColumn( i );
|
||||||
wxDataViewRenderer *cell = col->GetRenderer();
|
wxDataViewRenderer *cell = col->GetRenderer();
|
||||||
cell_rect.width = col->GetWidth();
|
cell_rect.width = col->GetWidth();
|
||||||
@@ -2203,7 +2203,7 @@ void wxDataViewMainWindow::OnPaint( wxPaintEvent &WXUNUSED(event) )
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
dataitem = wxDataViewItem( (void*) item );
|
dataitem = wxDataViewItem( wxUIntToPtr(item) );
|
||||||
}
|
}
|
||||||
|
|
||||||
model->GetValue( value, dataitem, col->GetModelColumn());
|
model->GetValue( value, dataitem, col->GetModelColumn());
|
||||||
@@ -2334,9 +2334,9 @@ void wxDataViewMainWindow::OnRenameTimer()
|
|||||||
break;
|
break;
|
||||||
xpos += c->GetWidth();
|
xpos += c->GetWidth();
|
||||||
}
|
}
|
||||||
wxRect labelRect( xpos,
|
wxRect labelRect( xpos,
|
||||||
GetLineStart( m_currentRow ),
|
GetLineStart( m_currentRow ),
|
||||||
m_currentCol->GetWidth(),
|
m_currentCol->GetWidth(),
|
||||||
GetLineHeight( m_currentRow ) );
|
GetLineHeight( m_currentRow ) );
|
||||||
|
|
||||||
GetOwner()->CalcScrolledPosition( labelRect.x, labelRect.y,
|
GetOwner()->CalcScrolledPosition( labelRect.x, labelRect.y,
|
||||||
@@ -2867,7 +2867,7 @@ void wxDataViewMainWindow::RefreshRowsAfter( unsigned int firstRow )
|
|||||||
if (start > client_size.y) return;
|
if (start > client_size.y) return;
|
||||||
|
|
||||||
wxRect rect( 0, start, client_size.x, client_size.y - start );
|
wxRect rect( 0, start, client_size.x, client_size.y - start );
|
||||||
|
|
||||||
Refresh( true, &rect );
|
Refresh( true, &rect );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2937,28 +2937,28 @@ wxRect wxDataViewMainWindow::GetLineRect( unsigned int row ) const
|
|||||||
int wxDataViewMainWindow::GetLineStart( unsigned int row ) const
|
int wxDataViewMainWindow::GetLineStart( unsigned int row ) const
|
||||||
{
|
{
|
||||||
const wxDataViewModel *model = GetOwner()->GetModel();
|
const wxDataViewModel *model = GetOwner()->GetModel();
|
||||||
|
|
||||||
if (GetOwner()->GetWindowStyle() & wxDV_VARIABLE_LINE_HEIGHT)
|
if (GetOwner()->GetWindowStyle() & wxDV_VARIABLE_LINE_HEIGHT)
|
||||||
{
|
{
|
||||||
// TODO make more efficient
|
// TODO make more efficient
|
||||||
|
|
||||||
int start = 0;
|
int start = 0;
|
||||||
|
|
||||||
unsigned int r;
|
unsigned int r;
|
||||||
for (r = 0; r < row; r++)
|
for (r = 0; r < row; r++)
|
||||||
{
|
{
|
||||||
const wxDataViewTreeNode* node = GetTreeNodeByRow(r);
|
const wxDataViewTreeNode* node = GetTreeNodeByRow(r);
|
||||||
if (!node) return start;
|
if (!node) return start;
|
||||||
|
|
||||||
wxDataViewItem item = node->GetItem();
|
wxDataViewItem item = node->GetItem();
|
||||||
|
|
||||||
if (node && !node->HasChildren())
|
if (node && !node->HasChildren())
|
||||||
{
|
{
|
||||||
// Yes, if the node does not have any child, it must be a leaf which
|
// Yes, if the node does not have any child, it must be a leaf which
|
||||||
// mean that it is a temporarily created by GetTreeNodeByRow
|
// mean that it is a temporarily created by GetTreeNodeByRow
|
||||||
wxDELETE(node)
|
wxDELETE(node)
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int cols = GetOwner()->GetColumnCount();
|
unsigned int cols = GetOwner()->GetColumnCount();
|
||||||
unsigned int col;
|
unsigned int col;
|
||||||
int height = m_lineHeight;
|
int height = m_lineHeight;
|
||||||
@@ -2967,10 +2967,10 @@ int wxDataViewMainWindow::GetLineStart( unsigned int row ) const
|
|||||||
const wxDataViewColumn *column = GetOwner()->GetColumn(col);
|
const wxDataViewColumn *column = GetOwner()->GetColumn(col);
|
||||||
if (column->IsHidden())
|
if (column->IsHidden())
|
||||||
continue; // skip it!
|
continue; // skip it!
|
||||||
|
|
||||||
if ((col != 0) && model->IsContainer(item) && !model->HasContainerColumns(item))
|
if ((col != 0) && model->IsContainer(item) && !model->HasContainerColumns(item))
|
||||||
continue; // skip it!
|
continue; // skip it!
|
||||||
|
|
||||||
const wxDataViewRenderer *renderer = column->GetRenderer();
|
const wxDataViewRenderer *renderer = column->GetRenderer();
|
||||||
wxVariant value;
|
wxVariant value;
|
||||||
model->GetValue( value, item, column->GetModelColumn() );
|
model->GetValue( value, item, column->GetModelColumn() );
|
||||||
@@ -2978,11 +2978,11 @@ int wxDataViewMainWindow::GetLineStart( unsigned int row ) const
|
|||||||
renderer2->SetValue( value );
|
renderer2->SetValue( value );
|
||||||
height = wxMax( height, renderer->GetSize().y );
|
height = wxMax( height, renderer->GetSize().y );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
start += height;
|
start += height;
|
||||||
}
|
}
|
||||||
|
|
||||||
return start;
|
return start;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -2995,88 +2995,82 @@ int wxDataViewMainWindow::GetLineAt( unsigned int y ) const
|
|||||||
{
|
{
|
||||||
const wxDataViewModel *model = GetOwner()->GetModel();
|
const wxDataViewModel *model = GetOwner()->GetModel();
|
||||||
|
|
||||||
if (GetOwner()->GetWindowStyle() & wxDV_VARIABLE_LINE_HEIGHT)
|
// check for the easy case first
|
||||||
{
|
if ( !GetOwner()->HasFlag(wxDV_VARIABLE_LINE_HEIGHT) )
|
||||||
// TODO make more efficient
|
|
||||||
|
|
||||||
unsigned int row = 0;
|
|
||||||
unsigned int yy = 0;
|
|
||||||
for (;;)
|
|
||||||
{
|
|
||||||
const wxDataViewTreeNode* node = GetTreeNodeByRow(row);
|
|
||||||
if (!node)
|
|
||||||
{
|
|
||||||
// not really correct...
|
|
||||||
return row + ((y-yy) / m_lineHeight);
|
|
||||||
}
|
|
||||||
|
|
||||||
wxDataViewItem item = node->GetItem();
|
|
||||||
|
|
||||||
if (node && !node->HasChildren())
|
|
||||||
{
|
|
||||||
// Yes, if the node does not have any child, it must be a leaf which
|
|
||||||
// mean that it is a temporarily created by GetTreeNodeByRow
|
|
||||||
wxDELETE(node)
|
|
||||||
}
|
|
||||||
|
|
||||||
unsigned int cols = GetOwner()->GetColumnCount();
|
|
||||||
unsigned int col;
|
|
||||||
int height = m_lineHeight;
|
|
||||||
for (col = 0; col < cols; col++)
|
|
||||||
{
|
|
||||||
const wxDataViewColumn *column = GetOwner()->GetColumn(col);
|
|
||||||
if (column->IsHidden())
|
|
||||||
continue; // skip it!
|
|
||||||
|
|
||||||
if ((col != 0) && model->IsContainer(item) && !model->HasContainerColumns(item))
|
|
||||||
continue; // skip it!
|
|
||||||
|
|
||||||
const wxDataViewRenderer *renderer = column->GetRenderer();
|
|
||||||
wxVariant value;
|
|
||||||
model->GetValue( value, item, column->GetModelColumn() );
|
|
||||||
wxDataViewRenderer *renderer2 = const_cast<wxDataViewRenderer*>(renderer);
|
|
||||||
renderer2->SetValue( value );
|
|
||||||
height = wxMax( height, renderer->GetSize().y );
|
|
||||||
}
|
|
||||||
|
|
||||||
yy += height;
|
|
||||||
if (y < yy)
|
|
||||||
return row;
|
|
||||||
|
|
||||||
row++;
|
|
||||||
}
|
|
||||||
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return y / m_lineHeight;
|
return y / m_lineHeight;
|
||||||
|
|
||||||
|
// TODO make more efficient
|
||||||
|
unsigned int row = 0;
|
||||||
|
unsigned int yy = 0;
|
||||||
|
for (;;)
|
||||||
|
{
|
||||||
|
const wxDataViewTreeNode* node = GetTreeNodeByRow(row);
|
||||||
|
if (!node)
|
||||||
|
{
|
||||||
|
// not really correct...
|
||||||
|
return row + ((y-yy) / m_lineHeight);
|
||||||
|
}
|
||||||
|
|
||||||
|
wxDataViewItem item = node->GetItem();
|
||||||
|
|
||||||
|
if (node && !node->HasChildren())
|
||||||
|
{
|
||||||
|
// Yes, if the node does not have any child, it must be a leaf which
|
||||||
|
// mean that it is a temporarily created by GetTreeNodeByRow
|
||||||
|
wxDELETE(node)
|
||||||
|
}
|
||||||
|
|
||||||
|
unsigned int cols = GetOwner()->GetColumnCount();
|
||||||
|
unsigned int col;
|
||||||
|
int height = m_lineHeight;
|
||||||
|
for (col = 0; col < cols; col++)
|
||||||
|
{
|
||||||
|
const wxDataViewColumn *column = GetOwner()->GetColumn(col);
|
||||||
|
if (column->IsHidden())
|
||||||
|
continue; // skip it!
|
||||||
|
|
||||||
|
if ((col != 0) && model->IsContainer(item) && !model->HasContainerColumns(item))
|
||||||
|
continue; // skip it!
|
||||||
|
|
||||||
|
const wxDataViewRenderer *renderer = column->GetRenderer();
|
||||||
|
wxVariant value;
|
||||||
|
model->GetValue( value, item, column->GetModelColumn() );
|
||||||
|
wxDataViewRenderer *renderer2 = const_cast<wxDataViewRenderer*>(renderer);
|
||||||
|
renderer2->SetValue( value );
|
||||||
|
height = wxMax( height, renderer->GetSize().y );
|
||||||
|
}
|
||||||
|
|
||||||
|
yy += height;
|
||||||
|
if (y < yy)
|
||||||
|
return row;
|
||||||
|
|
||||||
|
row++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxDataViewMainWindow::GetLineHeight( unsigned int row ) const
|
int wxDataViewMainWindow::GetLineHeight( unsigned int row ) const
|
||||||
{
|
{
|
||||||
const wxDataViewModel *model = GetOwner()->GetModel();
|
const wxDataViewModel *model = GetOwner()->GetModel();
|
||||||
|
|
||||||
if (GetOwner()->GetWindowStyle() & wxDV_VARIABLE_LINE_HEIGHT)
|
if (GetOwner()->GetWindowStyle() & wxDV_VARIABLE_LINE_HEIGHT)
|
||||||
{
|
{
|
||||||
wxASSERT( !IsVirtualList() );
|
wxASSERT( !IsVirtualList() );
|
||||||
|
|
||||||
const wxDataViewTreeNode* node = GetTreeNodeByRow(row);
|
const wxDataViewTreeNode* node = GetTreeNodeByRow(row);
|
||||||
// wxASSERT( node );
|
// wxASSERT( node );
|
||||||
if (!node) return m_lineHeight;
|
if (!node) return m_lineHeight;
|
||||||
|
|
||||||
wxDataViewItem item = node->GetItem();
|
wxDataViewItem item = node->GetItem();
|
||||||
|
|
||||||
if (node && !node->HasChildren())
|
if (node && !node->HasChildren())
|
||||||
{
|
{
|
||||||
// Yes, if the node does not have any child, it must be a leaf which
|
// Yes, if the node does not have any child, it must be a leaf which
|
||||||
// mean that it is a temporarily created by GetTreeNodeByRow
|
// mean that it is a temporarily created by GetTreeNodeByRow
|
||||||
wxDELETE(node)
|
wxDELETE(node)
|
||||||
}
|
}
|
||||||
|
|
||||||
int height = m_lineHeight;
|
int height = m_lineHeight;
|
||||||
|
|
||||||
unsigned int cols = GetOwner()->GetColumnCount();
|
unsigned int cols = GetOwner()->GetColumnCount();
|
||||||
unsigned int col;
|
unsigned int col;
|
||||||
for (col = 0; col < cols; col++)
|
for (col = 0; col < cols; col++)
|
||||||
@@ -3087,7 +3081,7 @@ int wxDataViewMainWindow::GetLineHeight( unsigned int row ) const
|
|||||||
|
|
||||||
if ((col != 0) && model->IsContainer(item) && !model->HasContainerColumns(item))
|
if ((col != 0) && model->IsContainer(item) && !model->HasContainerColumns(item))
|
||||||
continue; // skip it!
|
continue; // skip it!
|
||||||
|
|
||||||
const wxDataViewRenderer *renderer = column->GetRenderer();
|
const wxDataViewRenderer *renderer = column->GetRenderer();
|
||||||
wxVariant value;
|
wxVariant value;
|
||||||
model->GetValue( value, item, column->GetModelColumn() );
|
model->GetValue( value, item, column->GetModelColumn() );
|
||||||
@@ -3159,7 +3153,7 @@ wxDataViewItem wxDataViewMainWindow::GetItemByRow(unsigned int row) const
|
|||||||
{
|
{
|
||||||
if (!m_root)
|
if (!m_root)
|
||||||
{
|
{
|
||||||
return wxDataViewItem( (void*) row );
|
return wxDataViewItem( wxUIntToPtr(row) );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -3240,7 +3234,7 @@ private:
|
|||||||
wxDataViewTreeNode * wxDataViewMainWindow::GetTreeNodeByRow(unsigned int row) const
|
wxDataViewTreeNode * wxDataViewMainWindow::GetTreeNodeByRow(unsigned int row) const
|
||||||
{
|
{
|
||||||
wxASSERT( !IsVirtualList() );
|
wxASSERT( !IsVirtualList() );
|
||||||
|
|
||||||
RowToTreeNodeJob job( row , -2, m_root );
|
RowToTreeNodeJob job( row , -2, m_root );
|
||||||
Walker( m_root , job );
|
Walker( m_root , job );
|
||||||
return job.GetResult();
|
return job.GetResult();
|
||||||
@@ -3368,14 +3362,14 @@ wxDataViewTreeNode * wxDataViewMainWindow::FindNode( const wxDataViewItem & item
|
|||||||
wxDataViewTreeNodes nodes = node->GetNodes();
|
wxDataViewTreeNodes nodes = node->GetNodes();
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
bool found = false;
|
bool found = false;
|
||||||
|
|
||||||
for (i = 0; i < nodes.GetCount(); i ++)
|
for (i = 0; i < nodes.GetCount(); i ++)
|
||||||
{
|
{
|
||||||
if (nodes[i]->GetItem() == (**iter))
|
if (nodes[i]->GetItem() == (**iter))
|
||||||
{
|
{
|
||||||
if (nodes[i]->GetItem() == item)
|
if (nodes[i]->GetItem() == item)
|
||||||
return nodes[i];
|
return nodes[i];
|
||||||
|
|
||||||
node = nodes[i];
|
node = nodes[i];
|
||||||
found = true;
|
found = true;
|
||||||
break;
|
break;
|
||||||
@@ -3742,7 +3736,7 @@ void wxDataViewMainWindow::OnMouse( wxMouseEvent &event )
|
|||||||
{
|
{
|
||||||
int indent = node->GetIndentLevel();
|
int indent = node->GetIndentLevel();
|
||||||
indent = GetOwner()->GetIndent()*indent;
|
indent = GetOwner()->GetIndent()*indent;
|
||||||
wxRect rect( xpos + indent + EXPANDER_MARGIN,
|
wxRect rect( xpos + indent + EXPANDER_MARGIN,
|
||||||
GetLineStart( current ) + EXPANDER_MARGIN + (GetLineHeight(current)/2) - (m_lineHeight/2) - EXPANDER_OFFSET,
|
GetLineStart( current ) + EXPANDER_MARGIN + (GetLineHeight(current)/2) - (m_lineHeight/2) - EXPANDER_OFFSET,
|
||||||
m_lineHeight-2*EXPANDER_MARGIN,
|
m_lineHeight-2*EXPANDER_MARGIN,
|
||||||
m_lineHeight-2*EXPANDER_MARGIN + EXPANDER_OFFSET);
|
m_lineHeight-2*EXPANDER_MARGIN + EXPANDER_OFFSET);
|
||||||
@@ -3870,11 +3864,11 @@ void wxDataViewMainWindow::OnMouse( wxMouseEvent &event )
|
|||||||
{
|
{
|
||||||
int indent = node->GetIndentLevel();
|
int indent = node->GetIndentLevel();
|
||||||
indent = GetOwner()->GetIndent()*indent;
|
indent = GetOwner()->GetIndent()*indent;
|
||||||
wxRect rect( xpos + indent + EXPANDER_MARGIN,
|
wxRect rect( xpos + indent + EXPANDER_MARGIN,
|
||||||
GetLineStart( current ) + EXPANDER_MARGIN + (GetLineHeight(current)/2) - (m_lineHeight/2) - EXPANDER_OFFSET,
|
GetLineStart( current ) + EXPANDER_MARGIN + (GetLineHeight(current)/2) - (m_lineHeight/2) - EXPANDER_OFFSET,
|
||||||
m_lineHeight-2*EXPANDER_MARGIN,
|
m_lineHeight-2*EXPANDER_MARGIN,
|
||||||
m_lineHeight-2*EXPANDER_MARGIN + EXPANDER_OFFSET);
|
m_lineHeight-2*EXPANDER_MARGIN + EXPANDER_OFFSET);
|
||||||
|
|
||||||
if( rect.Contains( x, y) )
|
if( rect.Contains( x, y) )
|
||||||
{
|
{
|
||||||
expander = true;
|
expander = true;
|
||||||
@@ -3993,7 +3987,7 @@ void wxDataViewMainWindow::OnMouse( wxMouseEvent &event )
|
|||||||
wxFAIL_MSG( _T("how did we get here?") );
|
wxFAIL_MSG( _T("how did we get here?") );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_currentRow != oldCurrentRow)
|
if (m_currentRow != oldCurrentRow)
|
||||||
RefreshRow( oldCurrentRow );
|
RefreshRow( oldCurrentRow );
|
||||||
|
|
||||||
@@ -4081,7 +4075,7 @@ bool wxDataViewCtrl::Create(wxWindow *parent, wxWindowID id,
|
|||||||
{
|
{
|
||||||
if ( (style & wxBORDER_MASK) == 0)
|
if ( (style & wxBORDER_MASK) == 0)
|
||||||
style |= wxBORDER_SUNKEN;
|
style |= wxBORDER_SUNKEN;
|
||||||
|
|
||||||
if (!wxControl::Create( parent, id, pos, size,
|
if (!wxControl::Create( parent, id, pos, size,
|
||||||
style | wxScrolledWindowStyle, validator))
|
style | wxScrolledWindowStyle, validator))
|
||||||
return false;
|
return false;
|
||||||
|
Reference in New Issue
Block a user