fix wxMenu leak (reopened #9089)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54969 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -93,27 +93,27 @@ WX_DEFINE_ARRAY_PTR( MyMusicModelNode*, MyMusicModelNodes );
|
|||||||
class MyMusicModelNode
|
class MyMusicModelNode
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
MyMusicModelNode( MyMusicModelNode* parent,
|
MyMusicModelNode( MyMusicModelNode* parent,
|
||||||
const wxString &title, const wxString &artist, int year )
|
const wxString &title, const wxString &artist, int year )
|
||||||
{
|
{
|
||||||
m_parent = parent;
|
m_parent = parent;
|
||||||
m_title = title;
|
m_title = title;
|
||||||
m_artist = artist;
|
m_artist = artist;
|
||||||
m_year = year;
|
m_year = year;
|
||||||
m_isContainer = false;
|
m_isContainer = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
MyMusicModelNode( MyMusicModelNode* parent,
|
MyMusicModelNode( MyMusicModelNode* parent,
|
||||||
const wxString &branch )
|
const wxString &branch )
|
||||||
{
|
{
|
||||||
m_parent = parent;
|
m_parent = parent;
|
||||||
m_title = branch;
|
m_title = branch;
|
||||||
m_year = -1;
|
m_year = -1;
|
||||||
m_isContainer = true;
|
m_isContainer = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
~MyMusicModelNode()
|
~MyMusicModelNode()
|
||||||
{
|
{
|
||||||
size_t count = m_children.GetCount();
|
size_t count = m_children.GetCount();
|
||||||
size_t i;
|
size_t i;
|
||||||
for (i = 0; i < count; i++)
|
for (i = 0; i < count; i++)
|
||||||
@@ -136,34 +136,34 @@ public:
|
|||||||
wxString m_title;
|
wxString m_title;
|
||||||
wxString m_artist;
|
wxString m_artist;
|
||||||
int m_year;
|
int m_year;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
MyMusicModelNode *m_parent;
|
MyMusicModelNode *m_parent;
|
||||||
MyMusicModelNodes m_children;
|
MyMusicModelNodes m_children;
|
||||||
bool m_isContainer;
|
bool m_isContainer;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
class MyMusicModel: public wxDataViewModel
|
class MyMusicModel: public wxDataViewModel
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
// constructor
|
// constructor
|
||||||
|
|
||||||
MyMusicModel()
|
MyMusicModel()
|
||||||
{
|
{
|
||||||
m_root = new MyMusicModelNode( NULL, wxT("My Music" ));
|
m_root = new MyMusicModelNode( NULL, wxT("My Music" ));
|
||||||
m_pop = new MyMusicModelNode( m_root, wxT("Pop music") );
|
m_pop = new MyMusicModelNode( m_root, wxT("Pop music") );
|
||||||
m_root->Append( m_pop );
|
m_root->Append( m_pop );
|
||||||
m_pop->Append( new MyMusicModelNode( m_pop,
|
m_pop->Append( new MyMusicModelNode( m_pop,
|
||||||
wxT("You are not alone"), wxT("Michael Jackson"), 1995 ) );
|
wxT("You are not alone"), wxT("Michael Jackson"), 1995 ) );
|
||||||
m_pop->Append( new MyMusicModelNode( m_pop,
|
m_pop->Append( new MyMusicModelNode( m_pop,
|
||||||
wxT("Take a bow"), wxT("Madonna"), 1994 ) );
|
wxT("Take a bow"), wxT("Madonna"), 1994 ) );
|
||||||
m_classical = new MyMusicModelNode( m_root, wxT("Classical music") );
|
m_classical = new MyMusicModelNode( m_root, wxT("Classical music") );
|
||||||
m_root->Append( m_classical );
|
m_root->Append( m_classical );
|
||||||
m_classical->Append( new MyMusicModelNode( m_classical,
|
m_classical->Append( new MyMusicModelNode( m_classical,
|
||||||
wxT("Ninth symphony"), wxT("Ludwig van Beethoven"), 1824 ) );
|
wxT("Ninth symphony"), wxT("Ludwig van Beethoven"), 1824 ) );
|
||||||
m_classical->Append( new MyMusicModelNode( m_classical,
|
m_classical->Append( new MyMusicModelNode( m_classical,
|
||||||
wxT("German Requiem"), wxT("Johannes Brahms"), 1868 ) );
|
wxT("German Requiem"), wxT("Johannes Brahms"), 1868 ) );
|
||||||
m_classicalMusicIsKnownToControl = false;
|
m_classicalMusicIsKnownToControl = false;
|
||||||
}
|
}
|
||||||
@@ -172,37 +172,37 @@ public:
|
|||||||
{
|
{
|
||||||
delete m_root;
|
delete m_root;
|
||||||
}
|
}
|
||||||
|
|
||||||
// helper method for wxLog
|
// helper method for wxLog
|
||||||
|
|
||||||
wxString GetTitle( const wxDataViewItem &item ) const
|
wxString GetTitle( const wxDataViewItem &item ) const
|
||||||
{
|
{
|
||||||
MyMusicModelNode *node = (MyMusicModelNode*) item.GetID();
|
MyMusicModelNode *node = (MyMusicModelNode*) item.GetID();
|
||||||
if (!node)
|
if (!node)
|
||||||
return wxEmptyString;
|
return wxEmptyString;
|
||||||
|
|
||||||
return node->m_title;
|
return node->m_title;
|
||||||
}
|
}
|
||||||
|
|
||||||
int GetYear( const wxDataViewItem &item ) const
|
int GetYear( const wxDataViewItem &item ) const
|
||||||
{
|
{
|
||||||
MyMusicModelNode *node = (MyMusicModelNode*) item.GetID();
|
MyMusicModelNode *node = (MyMusicModelNode*) item.GetID();
|
||||||
if (!node)
|
if (!node)
|
||||||
return 2000;
|
return 2000;
|
||||||
|
|
||||||
return node->m_year;
|
return node->m_year;
|
||||||
}
|
}
|
||||||
|
|
||||||
// helper methods to change the model
|
// helper methods to change the model
|
||||||
|
|
||||||
void AddToClassical( const wxString &title, const wxString &artist, int year )
|
void AddToClassical( const wxString &title, const wxString &artist, int year )
|
||||||
{
|
{
|
||||||
// add to data
|
// add to data
|
||||||
MyMusicModelNode *child_node =
|
MyMusicModelNode *child_node =
|
||||||
new MyMusicModelNode( m_classical, title, artist, year );
|
new MyMusicModelNode( m_classical, title, artist, year );
|
||||||
|
|
||||||
m_classical->Append( child_node );
|
m_classical->Append( child_node );
|
||||||
|
|
||||||
if (m_classicalMusicIsKnownToControl)
|
if (m_classicalMusicIsKnownToControl)
|
||||||
{
|
{
|
||||||
// notify control
|
// notify control
|
||||||
@@ -216,17 +216,17 @@ public:
|
|||||||
{
|
{
|
||||||
MyMusicModelNode *node = (MyMusicModelNode*) item.GetID();
|
MyMusicModelNode *node = (MyMusicModelNode*) item.GetID();
|
||||||
wxDataViewItem parent( node->GetParent() );
|
wxDataViewItem parent( node->GetParent() );
|
||||||
|
|
||||||
node->GetParent()->GetChildren().Remove( node );
|
node->GetParent()->GetChildren().Remove( node );
|
||||||
delete node;
|
delete node;
|
||||||
|
|
||||||
// notify control
|
// notify control
|
||||||
ItemDeleted( parent, item );
|
ItemDeleted( parent, item );
|
||||||
}
|
}
|
||||||
|
|
||||||
// override sorting to always sort branches ascendingly
|
// override sorting to always sort branches ascendingly
|
||||||
|
|
||||||
int Compare( const wxDataViewItem &item1, const wxDataViewItem &item2,
|
int Compare( const wxDataViewItem &item1, const wxDataViewItem &item2,
|
||||||
unsigned int column, bool ascending )
|
unsigned int column, bool ascending )
|
||||||
{
|
{
|
||||||
if (IsContainer(item1) && IsContainer(item2))
|
if (IsContainer(item1) && IsContainer(item2))
|
||||||
@@ -239,19 +239,19 @@ public:
|
|||||||
wxString str2 = value2.GetString();
|
wxString str2 = value2.GetString();
|
||||||
int res = str1.Cmp( str2 );
|
int res = str1.Cmp( str2 );
|
||||||
if (res) return res;
|
if (res) return res;
|
||||||
|
|
||||||
// items must be different
|
// items must be different
|
||||||
wxUIntPtr litem1 = (wxUIntPtr) item1.GetID();
|
wxUIntPtr litem1 = (wxUIntPtr) item1.GetID();
|
||||||
wxUIntPtr litem2 = (wxUIntPtr) item2.GetID();
|
wxUIntPtr litem2 = (wxUIntPtr) item2.GetID();
|
||||||
|
|
||||||
return litem1-litem2;
|
return litem1-litem2;
|
||||||
}
|
}
|
||||||
|
|
||||||
return wxDataViewModel::Compare( item1, item2, column, ascending );
|
return wxDataViewModel::Compare( item1, item2, column, ascending );
|
||||||
}
|
}
|
||||||
|
|
||||||
// implementation of base class virtuals to define model
|
// implementation of base class virtuals to define model
|
||||||
|
|
||||||
virtual unsigned int GetColumnCount() const
|
virtual unsigned int GetColumnCount() const
|
||||||
{
|
{
|
||||||
return 5;
|
return 5;
|
||||||
@@ -261,11 +261,11 @@ public:
|
|||||||
{
|
{
|
||||||
if (col == 2)
|
if (col == 2)
|
||||||
return wxT("long");
|
return wxT("long");
|
||||||
|
|
||||||
return wxT("string");
|
return wxT("string");
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void GetValue( wxVariant &variant,
|
virtual void GetValue( wxVariant &variant,
|
||||||
const wxDataViewItem &item, unsigned int col ) const
|
const wxDataViewItem &item, unsigned int col ) const
|
||||||
{
|
{
|
||||||
MyMusicModelNode *node = (MyMusicModelNode*) item.GetID();
|
MyMusicModelNode *node = (MyMusicModelNode*) item.GetID();
|
||||||
@@ -274,24 +274,24 @@ public:
|
|||||||
case 0: variant = node->m_title; break;
|
case 0: variant = node->m_title; break;
|
||||||
case 1: variant = node->m_artist; break;
|
case 1: variant = node->m_artist; break;
|
||||||
case 2: variant = (long) node->m_year; break;
|
case 2: variant = (long) node->m_year; break;
|
||||||
case 3:
|
case 3:
|
||||||
// wxMac doesn't conceal the popularity progress renderer, return 0 for containers
|
// wxMac doesn't conceal the popularity progress renderer, return 0 for containers
|
||||||
if (IsContainer(item))
|
if (IsContainer(item))
|
||||||
variant = (long) 0;
|
variant = (long) 0;
|
||||||
else
|
else
|
||||||
variant = (long) 80; // all music is very 80% popular
|
variant = (long) 80; // all music is very 80% popular
|
||||||
break;
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
// Make size of red square depend on year
|
// Make size of red square depend on year
|
||||||
if (GetYear(item) < 1900)
|
if (GetYear(item) < 1900)
|
||||||
variant = (long) 35;
|
variant = (long) 35;
|
||||||
else
|
else
|
||||||
variant = (long) 25;
|
variant = (long) 25;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
wxLogError( wxT("MyMusicModel::GetValue: wrong column %d"), col );
|
wxLogError( wxT("MyMusicModel::GetValue: wrong column %d"), col );
|
||||||
|
|
||||||
// provoke a crash when mouse button down
|
// provoke a crash when mouse button down
|
||||||
wxMouseState state = wxGetMouseState();
|
wxMouseState state = wxGetMouseState();
|
||||||
if (state.ShiftDown())
|
if (state.ShiftDown())
|
||||||
@@ -303,7 +303,7 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual bool SetValue( const wxVariant &variant,
|
virtual bool SetValue( const wxVariant &variant,
|
||||||
const wxDataViewItem &item, unsigned int col )
|
const wxDataViewItem &item, unsigned int col )
|
||||||
{
|
{
|
||||||
MyMusicModelNode *node = (MyMusicModelNode*) item.GetID();
|
MyMusicModelNode *node = (MyMusicModelNode*) item.GetID();
|
||||||
@@ -322,13 +322,13 @@ public:
|
|||||||
// the invisble root node has no parent
|
// the invisble root node has no parent
|
||||||
if (!item.IsOk())
|
if (!item.IsOk())
|
||||||
return wxDataViewItem(0);
|
return wxDataViewItem(0);
|
||||||
|
|
||||||
MyMusicModelNode *node = (MyMusicModelNode*) item.GetID();
|
MyMusicModelNode *node = (MyMusicModelNode*) item.GetID();
|
||||||
|
|
||||||
// "MyMusic" also has no parent
|
// "MyMusic" also has no parent
|
||||||
if (node == m_root)
|
if (node == m_root)
|
||||||
return wxDataViewItem(0);
|
return wxDataViewItem(0);
|
||||||
|
|
||||||
return wxDataViewItem( (void*) node->GetParent() );
|
return wxDataViewItem( (void*) node->GetParent() );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -338,11 +338,11 @@ public:
|
|||||||
// our model always "MyMusic")
|
// our model always "MyMusic")
|
||||||
if (!item.IsOk())
|
if (!item.IsOk())
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
MyMusicModelNode *node = (MyMusicModelNode*) item.GetID();
|
MyMusicModelNode *node = (MyMusicModelNode*) item.GetID();
|
||||||
return node->IsContainer();
|
return node->IsContainer();
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual unsigned int GetChildren( const wxDataViewItem &parent, wxDataViewItemArray &array ) const
|
virtual unsigned int GetChildren( const wxDataViewItem &parent, wxDataViewItemArray &array ) const
|
||||||
{
|
{
|
||||||
MyMusicModelNode *node = (MyMusicModelNode*) parent.GetID();
|
MyMusicModelNode *node = (MyMusicModelNode*) parent.GetID();
|
||||||
@@ -351,18 +351,18 @@ public:
|
|||||||
array.Add( wxDataViewItem( (void*) m_root ) );
|
array.Add( wxDataViewItem( (void*) m_root ) );
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (node == m_classical)
|
if (node == m_classical)
|
||||||
{
|
{
|
||||||
MyMusicModel *model = (MyMusicModel*)(const MyMusicModel*) this;
|
MyMusicModel *model = (MyMusicModel*)(const MyMusicModel*) this;
|
||||||
model->m_classicalMusicIsKnownToControl = true;
|
model->m_classicalMusicIsKnownToControl = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (node->GetChildCount() == 0)
|
if (node->GetChildCount() == 0)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int count = node->GetChildren().GetCount();
|
unsigned int count = node->GetChildren().GetCount();
|
||||||
unsigned int pos;
|
unsigned int pos;
|
||||||
for (pos = 0; pos < count; pos++)
|
for (pos = 0; pos < count; pos++)
|
||||||
@@ -372,30 +372,30 @@ public:
|
|||||||
}
|
}
|
||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
|
||||||
// DnD
|
// DnD
|
||||||
|
|
||||||
virtual bool IsDraggable( const wxDataViewItem &item )
|
virtual bool IsDraggable( const wxDataViewItem &item )
|
||||||
{
|
{
|
||||||
// only drag items
|
// only drag items
|
||||||
return (!IsContainer(item));
|
return (!IsContainer(item));
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual size_t GetDragDataSize( const wxDataViewItem &item, const wxDataFormat &WXUNUSED(format) )
|
virtual size_t GetDragDataSize( const wxDataViewItem &item, const wxDataFormat &WXUNUSED(format) )
|
||||||
{
|
{
|
||||||
wxPrintf( "GetDragDataSize\n" );
|
wxPrintf( "GetDragDataSize\n" );
|
||||||
|
|
||||||
MyMusicModelNode *node = (MyMusicModelNode*) item.GetID();
|
MyMusicModelNode *node = (MyMusicModelNode*) item.GetID();
|
||||||
wxString data;
|
wxString data;
|
||||||
data += node->m_title; data += wxT(" ");
|
data += node->m_title; data += wxT(" ");
|
||||||
data += node->m_artist;
|
data += node->m_artist;
|
||||||
return strlen( data.utf8_str() ) + 1;
|
return strlen( data.utf8_str() ) + 1;
|
||||||
}
|
}
|
||||||
virtual bool GetDragData( const wxDataViewItem &item, const wxDataFormat &WXUNUSED(format),
|
virtual bool GetDragData( const wxDataViewItem &item, const wxDataFormat &WXUNUSED(format),
|
||||||
void* dest, size_t WXUNUSED(size) )
|
void* dest, size_t WXUNUSED(size) )
|
||||||
{
|
{
|
||||||
wxPrintf( "GetDragData\n" );
|
wxPrintf( "GetDragData\n" );
|
||||||
|
|
||||||
MyMusicModelNode *node = (MyMusicModelNode*) item.GetID();
|
MyMusicModelNode *node = (MyMusicModelNode*) item.GetID();
|
||||||
wxString data;
|
wxString data;
|
||||||
data += node->m_title; data += wxT(" ");
|
data += node->m_title; data += wxT(" ");
|
||||||
@@ -404,7 +404,7 @@ public:
|
|||||||
memcpy( dest, buffer, strlen(buffer)+1 );
|
memcpy( dest, buffer, strlen(buffer)+1 );
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
MyMusicModelNode* m_root;
|
MyMusicModelNode* m_root;
|
||||||
MyMusicModelNode* m_pop;
|
MyMusicModelNode* m_pop;
|
||||||
@@ -426,7 +426,7 @@ static int my_sort( int *v1, int *v2 )
|
|||||||
class MyListModel: public wxDataViewVirtualListModel
|
class MyListModel: public wxDataViewVirtualListModel
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
MyListModel() :
|
MyListModel() :
|
||||||
#ifdef __WXMAC__
|
#ifdef __WXMAC__
|
||||||
wxDataViewVirtualListModel( 1000 + 100 )
|
wxDataViewVirtualListModel( 1000 + 100 )
|
||||||
#else
|
#else
|
||||||
@@ -446,10 +446,10 @@ public:
|
|||||||
str.Printf( wxT("row number %d"), i );
|
str.Printf( wxT("row number %d"), i );
|
||||||
m_array.Add( str );
|
m_array.Add( str );
|
||||||
}
|
}
|
||||||
|
|
||||||
m_icon = wxIcon( null_xpm );
|
m_icon = wxIcon( null_xpm );
|
||||||
}
|
}
|
||||||
|
|
||||||
// helper methods to change the model
|
// helper methods to change the model
|
||||||
|
|
||||||
void Prepend( const wxString &text )
|
void Prepend( const wxString &text )
|
||||||
@@ -463,11 +463,11 @@ public:
|
|||||||
unsigned int row = GetRow( item );
|
unsigned int row = GetRow( item );
|
||||||
if (row >= m_array.GetCount())
|
if (row >= m_array.GetCount())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
m_array.RemoveAt( row );
|
m_array.RemoveAt( row );
|
||||||
RowDeleted( row );
|
RowDeleted( row );
|
||||||
}
|
}
|
||||||
|
|
||||||
void DeleteItems( const wxDataViewItemArray &items )
|
void DeleteItems( const wxDataViewItemArray &items )
|
||||||
{
|
{
|
||||||
wxArrayInt rows;
|
wxArrayInt rows;
|
||||||
@@ -487,12 +487,12 @@ public:
|
|||||||
m_array.RemoveAt( rows[i] );
|
m_array.RemoveAt( rows[i] );
|
||||||
|
|
||||||
// This is just to test if wxDataViewCtrl can
|
// This is just to test if wxDataViewCtrl can
|
||||||
// cope with removing rows not sorted in
|
// cope with removing rows not sorted in
|
||||||
// descending order
|
// descending order
|
||||||
rows.Sort( my_sort );
|
rows.Sort( my_sort );
|
||||||
RowsDeleted( rows );
|
RowsDeleted( rows );
|
||||||
}
|
}
|
||||||
|
|
||||||
void AddMany()
|
void AddMany()
|
||||||
{
|
{
|
||||||
m_virtualItems += 1000;
|
m_virtualItems += 1000;
|
||||||
@@ -500,7 +500,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
// implementation of base class virtuals to define model
|
// implementation of base class virtuals to define model
|
||||||
|
|
||||||
virtual unsigned int GetColumnCount() const
|
virtual unsigned int GetColumnCount() const
|
||||||
{
|
{
|
||||||
return 3;
|
return 3;
|
||||||
@@ -510,16 +510,16 @@ public:
|
|||||||
{
|
{
|
||||||
if (col == 1)
|
if (col == 1)
|
||||||
return wxT("wxDataViewIconText");
|
return wxT("wxDataViewIconText");
|
||||||
|
|
||||||
return wxT("string");
|
return wxT("string");
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual unsigned int GetRowCount()
|
virtual unsigned int GetRowCount()
|
||||||
{
|
{
|
||||||
return m_array.GetCount();
|
return m_array.GetCount();
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void GetValue( wxVariant &variant,
|
virtual void GetValue( wxVariant &variant,
|
||||||
unsigned int row, unsigned int col ) const
|
unsigned int row, unsigned int col ) const
|
||||||
{
|
{
|
||||||
if (col==0)
|
if (col==0)
|
||||||
@@ -548,36 +548,36 @@ public:
|
|||||||
variant = wxT("blue");
|
variant = wxT("blue");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual bool GetAttr( unsigned int row, unsigned int col, wxDataViewItemAttr &attr )
|
virtual bool GetAttr( unsigned int row, unsigned int col, wxDataViewItemAttr &attr )
|
||||||
{
|
{
|
||||||
if (col != 2)
|
if (col != 2)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (row < m_array.GetCount())
|
if (row < m_array.GetCount())
|
||||||
{
|
{
|
||||||
attr.SetColour( *wxBLUE );
|
attr.SetColour( *wxBLUE );
|
||||||
attr.SetItalic( true );
|
attr.SetItalic( true );
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual bool SetValue( const wxVariant &variant,
|
virtual bool SetValue( const wxVariant &variant,
|
||||||
unsigned int row, unsigned int col )
|
unsigned int row, unsigned int col )
|
||||||
{
|
{
|
||||||
if (col == 0)
|
if (col == 0)
|
||||||
{
|
{
|
||||||
if (row >= m_array.GetCount())
|
if (row >= m_array.GetCount())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
m_array[row] = variant.GetString();
|
m_array[row] = variant.GetString();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
wxArrayString m_array;
|
wxArrayString m_array;
|
||||||
wxIcon m_icon;
|
wxIcon m_icon;
|
||||||
int m_virtualItems;
|
int m_virtualItems;
|
||||||
@@ -593,7 +593,7 @@ public:
|
|||||||
MyCustomRenderer( wxDataViewCellMode mode, int alignment ) :
|
MyCustomRenderer( wxDataViewCellMode mode, int alignment ) :
|
||||||
wxDataViewCustomRenderer( wxString("long"), mode, alignment )
|
wxDataViewCustomRenderer( wxString("long"), mode, alignment )
|
||||||
{ m_height = 25; }
|
{ m_height = 25; }
|
||||||
|
|
||||||
virtual bool Render( wxRect rect, wxDC *dc, int WXUNUSED(state) )
|
virtual bool Render( wxRect rect, wxDC *dc, int WXUNUSED(state) )
|
||||||
{
|
{
|
||||||
dc->SetBrush( *wxRED_BRUSH );
|
dc->SetBrush( *wxRED_BRUSH );
|
||||||
@@ -604,32 +604,32 @@ public:
|
|||||||
|
|
||||||
|
|
||||||
virtual bool Activate( wxRect WXUNUSED(cell),
|
virtual bool Activate( wxRect WXUNUSED(cell),
|
||||||
wxDataViewModel *WXUNUSED(model), const wxDataViewItem &WXUNUSED(item), unsigned int WXUNUSED(col) )
|
wxDataViewModel *WXUNUSED(model), const wxDataViewItem &WXUNUSED(item), unsigned int WXUNUSED(col) )
|
||||||
{
|
{
|
||||||
wxLogMessage( wxT("MyCustomRenderer Activate()") );
|
wxLogMessage( wxT("MyCustomRenderer Activate()") );
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual bool LeftClick( wxPoint cursor, wxRect WXUNUSED(cell),
|
virtual bool LeftClick( wxPoint cursor, wxRect WXUNUSED(cell),
|
||||||
wxDataViewModel *WXUNUSED(model), const wxDataViewItem &WXUNUSED(item), unsigned int WXUNUSED(col) )
|
wxDataViewModel *WXUNUSED(model), const wxDataViewItem &WXUNUSED(item), unsigned int WXUNUSED(col) )
|
||||||
{
|
{
|
||||||
wxLogMessage( wxT("MyCustomRenderer LeftClick( %d, %d )"), cursor.x, cursor.y );
|
wxLogMessage( wxT("MyCustomRenderer LeftClick( %d, %d )"), cursor.x, cursor.y );
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual wxSize GetSize() const
|
virtual wxSize GetSize() const
|
||||||
{
|
{
|
||||||
return wxSize(60,m_height);
|
return wxSize(60,m_height);
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual bool SetValue( const wxVariant &value )
|
virtual bool SetValue( const wxVariant &value )
|
||||||
{
|
{
|
||||||
m_height = value;
|
m_height = value;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual bool GetValue( wxVariant &WXUNUSED(value) ) const { return true; }
|
virtual bool GetValue( wxVariant &WXUNUSED(value) ) const { return true; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
long m_height;
|
long m_height;
|
||||||
};
|
};
|
||||||
@@ -658,26 +658,26 @@ public:
|
|||||||
public:
|
public:
|
||||||
void OnQuit(wxCommandEvent& event);
|
void OnQuit(wxCommandEvent& event);
|
||||||
void OnAbout(wxCommandEvent& event);
|
void OnAbout(wxCommandEvent& event);
|
||||||
|
|
||||||
void OnAddMozart(wxCommandEvent& event);
|
void OnAddMozart(wxCommandEvent& event);
|
||||||
void OnDeleteMusic(wxCommandEvent& event);
|
void OnDeleteMusic(wxCommandEvent& event);
|
||||||
void OnDeleteYear(wxCommandEvent& event);
|
void OnDeleteYear(wxCommandEvent& event);
|
||||||
|
|
||||||
void OnPrependList(wxCommandEvent& event);
|
void OnPrependList(wxCommandEvent& event);
|
||||||
void OnDeleteList(wxCommandEvent& event);
|
void OnDeleteList(wxCommandEvent& event);
|
||||||
|
|
||||||
void OnValueChanged( wxDataViewEvent &event );
|
void OnValueChanged( wxDataViewEvent &event );
|
||||||
|
|
||||||
void OnActivated( wxDataViewEvent &event );
|
void OnActivated( wxDataViewEvent &event );
|
||||||
void OnExpanding( wxDataViewEvent &event );
|
void OnExpanding( wxDataViewEvent &event );
|
||||||
void OnExpanded( wxDataViewEvent &event );
|
void OnExpanded( wxDataViewEvent &event );
|
||||||
void OnCollapsing( wxDataViewEvent &event );
|
void OnCollapsing( wxDataViewEvent &event );
|
||||||
void OnCollapsed( wxDataViewEvent &event );
|
void OnCollapsed( wxDataViewEvent &event );
|
||||||
void OnSelectionChanged( wxDataViewEvent &event );
|
void OnSelectionChanged( wxDataViewEvent &event );
|
||||||
|
|
||||||
void OnEditingStarted( wxDataViewEvent &event );
|
void OnEditingStarted( wxDataViewEvent &event );
|
||||||
void OnEditingDone( wxDataViewEvent &event );
|
void OnEditingDone( wxDataViewEvent &event );
|
||||||
|
|
||||||
void OnHeaderClick( wxDataViewEvent &event );
|
void OnHeaderClick( wxDataViewEvent &event );
|
||||||
void OnHeaderRightClick( wxDataViewEvent &event );
|
void OnHeaderRightClick( wxDataViewEvent &event );
|
||||||
void OnSorted( wxDataViewEvent &event );
|
void OnSorted( wxDataViewEvent &event );
|
||||||
@@ -691,12 +691,12 @@ public:
|
|||||||
private:
|
private:
|
||||||
wxDataViewCtrl* m_musicCtrl;
|
wxDataViewCtrl* m_musicCtrl;
|
||||||
wxObjectDataPtr<MyMusicModel> m_music_model;
|
wxObjectDataPtr<MyMusicModel> m_music_model;
|
||||||
|
|
||||||
wxDataViewCtrl* m_listCtrl;
|
wxDataViewCtrl* m_listCtrl;
|
||||||
wxObjectDataPtr<MyListModel> m_list_model;
|
wxObjectDataPtr<MyListModel> m_list_model;
|
||||||
|
|
||||||
wxDataViewColumn * m_col;
|
wxDataViewColumn * m_col;
|
||||||
|
|
||||||
wxTextCtrl * m_log;
|
wxTextCtrl * m_log;
|
||||||
wxLog *m_logOld;
|
wxLog *m_logOld;
|
||||||
|
|
||||||
@@ -716,7 +716,7 @@ bool MyApp::OnInit(void)
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
// build the first frame
|
// build the first frame
|
||||||
MyFrame *frame =
|
MyFrame *frame =
|
||||||
new MyFrame(NULL, wxT("wxDataViewCtrl feature test"), 40, 40, 1000, 540);
|
new MyFrame(NULL, wxT("wxDataViewCtrl feature test"), 40, 40, 1000, 540);
|
||||||
frame->Show(true);
|
frame->Show(true);
|
||||||
|
|
||||||
@@ -739,13 +739,13 @@ enum
|
|||||||
// file menu
|
// file menu
|
||||||
ID_ABOUT = wxID_ABOUT,
|
ID_ABOUT = wxID_ABOUT,
|
||||||
ID_EXIT = wxID_EXIT,
|
ID_EXIT = wxID_EXIT,
|
||||||
|
|
||||||
ID_MUSIC_CTRL = 50,
|
ID_MUSIC_CTRL = 50,
|
||||||
|
|
||||||
ID_ADD_MOZART = 100,
|
ID_ADD_MOZART = 100,
|
||||||
ID_DELETE_MUSIC = 101,
|
ID_DELETE_MUSIC = 101,
|
||||||
ID_DELETE_YEAR = 102,
|
ID_DELETE_YEAR = 102,
|
||||||
|
|
||||||
ID_PREPEND_LIST = 200,
|
ID_PREPEND_LIST = 200,
|
||||||
ID_DELETE_LIST = 201,
|
ID_DELETE_LIST = 201,
|
||||||
ID_GOTO = 202,
|
ID_GOTO = 202,
|
||||||
@@ -762,25 +762,25 @@ BEGIN_EVENT_TABLE(MyFrame, wxFrame)
|
|||||||
EVT_BUTTON( ID_DELETE_LIST, MyFrame::OnDeleteList )
|
EVT_BUTTON( ID_DELETE_LIST, MyFrame::OnDeleteList )
|
||||||
EVT_BUTTON( ID_GOTO, MyFrame::OnGoto)
|
EVT_BUTTON( ID_GOTO, MyFrame::OnGoto)
|
||||||
EVT_BUTTON( ID_ADD_MANY, MyFrame::OnAddMany)
|
EVT_BUTTON( ID_ADD_MANY, MyFrame::OnAddMany)
|
||||||
|
|
||||||
EVT_DATAVIEW_ITEM_VALUE_CHANGED( ID_MUSIC_CTRL, MyFrame::OnValueChanged )
|
EVT_DATAVIEW_ITEM_VALUE_CHANGED( ID_MUSIC_CTRL, MyFrame::OnValueChanged )
|
||||||
|
|
||||||
EVT_DATAVIEW_ITEM_ACTIVATED(ID_MUSIC_CTRL, MyFrame::OnActivated )
|
EVT_DATAVIEW_ITEM_ACTIVATED(ID_MUSIC_CTRL, MyFrame::OnActivated )
|
||||||
EVT_DATAVIEW_ITEM_EXPANDING(ID_MUSIC_CTRL, MyFrame::OnExpanding)
|
EVT_DATAVIEW_ITEM_EXPANDING(ID_MUSIC_CTRL, MyFrame::OnExpanding)
|
||||||
EVT_DATAVIEW_ITEM_EXPANDED(ID_MUSIC_CTRL, MyFrame::OnExpanded)
|
EVT_DATAVIEW_ITEM_EXPANDED(ID_MUSIC_CTRL, MyFrame::OnExpanded)
|
||||||
EVT_DATAVIEW_ITEM_COLLAPSING(ID_MUSIC_CTRL, MyFrame::OnCollapsing)
|
EVT_DATAVIEW_ITEM_COLLAPSING(ID_MUSIC_CTRL, MyFrame::OnCollapsing)
|
||||||
EVT_DATAVIEW_ITEM_COLLAPSED(ID_MUSIC_CTRL, MyFrame::OnCollapsed)
|
EVT_DATAVIEW_ITEM_COLLAPSED(ID_MUSIC_CTRL, MyFrame::OnCollapsed)
|
||||||
EVT_DATAVIEW_SELECTION_CHANGED(ID_MUSIC_CTRL, MyFrame::OnSelectionChanged)
|
EVT_DATAVIEW_SELECTION_CHANGED(ID_MUSIC_CTRL, MyFrame::OnSelectionChanged)
|
||||||
|
|
||||||
EVT_DATAVIEW_ITEM_EDITING_STARTED(ID_MUSIC_CTRL, MyFrame::OnEditingStarted)
|
EVT_DATAVIEW_ITEM_EDITING_STARTED(ID_MUSIC_CTRL, MyFrame::OnEditingStarted)
|
||||||
EVT_DATAVIEW_ITEM_EDITING_DONE(ID_MUSIC_CTRL, MyFrame::OnEditingDone)
|
EVT_DATAVIEW_ITEM_EDITING_DONE(ID_MUSIC_CTRL, MyFrame::OnEditingDone)
|
||||||
|
|
||||||
EVT_DATAVIEW_COLUMN_HEADER_CLICK(ID_MUSIC_CTRL, MyFrame::OnHeaderClick)
|
EVT_DATAVIEW_COLUMN_HEADER_CLICK(ID_MUSIC_CTRL, MyFrame::OnHeaderClick)
|
||||||
EVT_DATAVIEW_COLUMN_HEADER_RIGHT_CLICKED(ID_MUSIC_CTRL, MyFrame::OnHeaderRightClick)
|
EVT_DATAVIEW_COLUMN_HEADER_RIGHT_CLICKED(ID_MUSIC_CTRL, MyFrame::OnHeaderRightClick)
|
||||||
EVT_DATAVIEW_COLUMN_SORTED(ID_MUSIC_CTRL, MyFrame::OnSorted)
|
EVT_DATAVIEW_COLUMN_SORTED(ID_MUSIC_CTRL, MyFrame::OnSorted)
|
||||||
|
|
||||||
EVT_DATAVIEW_ITEM_CONTEXT_MENU(ID_MUSIC_CTRL, MyFrame::OnContextMenu)
|
EVT_DATAVIEW_ITEM_CONTEXT_MENU(ID_MUSIC_CTRL, MyFrame::OnContextMenu)
|
||||||
|
|
||||||
EVT_RIGHT_UP(MyFrame::OnRightClick)
|
EVT_RIGHT_UP(MyFrame::OnRightClick)
|
||||||
END_EVENT_TABLE()
|
END_EVENT_TABLE()
|
||||||
|
|
||||||
@@ -818,41 +818,41 @@ MyFrame::MyFrame(wxFrame *frame, const wxString &title, int x, int y, int w, int
|
|||||||
m_musicCtrl->AssociateModel( m_music_model.get() );
|
m_musicCtrl->AssociateModel( m_music_model.get() );
|
||||||
|
|
||||||
wxDataViewTextRenderer *tr = new wxDataViewTextRenderer( wxT("string"), wxDATAVIEW_CELL_INERT );
|
wxDataViewTextRenderer *tr = new wxDataViewTextRenderer( wxT("string"), wxDATAVIEW_CELL_INERT );
|
||||||
wxDataViewColumn *column0 = new wxDataViewColumn( wxT("title"), tr, 0, 200, wxALIGN_LEFT,
|
wxDataViewColumn *column0 = new wxDataViewColumn( wxT("title"), tr, 0, 200, wxALIGN_LEFT,
|
||||||
wxDATAVIEW_COL_SORTABLE | wxDATAVIEW_COL_REORDERABLE | wxDATAVIEW_COL_RESIZABLE );
|
wxDATAVIEW_COL_SORTABLE | wxDATAVIEW_COL_REORDERABLE | wxDATAVIEW_COL_RESIZABLE );
|
||||||
m_musicCtrl->AppendColumn( column0 );
|
m_musicCtrl->AppendColumn( column0 );
|
||||||
#if 0
|
#if 0
|
||||||
// Call this and sorting is enabled
|
// Call this and sorting is enabled
|
||||||
// immediatly upon start up.
|
// immediatly upon start up.
|
||||||
column0->SetSortOrder( true );
|
column0->SetSortOrder( true );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
tr = new wxDataViewTextRenderer( wxT("string"), wxDATAVIEW_CELL_EDITABLE );
|
tr = new wxDataViewTextRenderer( wxT("string"), wxDATAVIEW_CELL_EDITABLE );
|
||||||
wxDataViewColumn *column1 = new wxDataViewColumn( wxT("artist"), tr, 1, 150, wxALIGN_RIGHT,
|
wxDataViewColumn *column1 = new wxDataViewColumn( wxT("artist"), tr, 1, 150, wxALIGN_RIGHT,
|
||||||
wxDATAVIEW_COL_SORTABLE | wxDATAVIEW_COL_REORDERABLE | wxDATAVIEW_COL_RESIZABLE );
|
wxDATAVIEW_COL_SORTABLE | wxDATAVIEW_COL_REORDERABLE | wxDATAVIEW_COL_RESIZABLE );
|
||||||
m_musicCtrl->AppendColumn( column1 );
|
m_musicCtrl->AppendColumn( column1 );
|
||||||
|
|
||||||
wxDataViewSpinRenderer *sr = new wxDataViewSpinRenderer( 0, 2010, wxDATAVIEW_CELL_EDITABLE, wxALIGN_RIGHT );
|
wxDataViewSpinRenderer *sr = new wxDataViewSpinRenderer( 0, 2010, wxDATAVIEW_CELL_EDITABLE, wxALIGN_RIGHT );
|
||||||
wxDataViewColumn *column2 = new wxDataViewColumn( wxT("year"), sr, 2, 80, wxALIGN_LEFT,
|
wxDataViewColumn *column2 = new wxDataViewColumn( wxT("year"), sr, 2, 80, wxALIGN_LEFT,
|
||||||
wxDATAVIEW_COL_SORTABLE | wxDATAVIEW_COL_REORDERABLE | wxDATAVIEW_COL_RESIZABLE );
|
wxDATAVIEW_COL_SORTABLE | wxDATAVIEW_COL_REORDERABLE | wxDATAVIEW_COL_RESIZABLE );
|
||||||
m_musicCtrl->AppendColumn( column2 );
|
m_musicCtrl->AppendColumn( column2 );
|
||||||
|
|
||||||
m_musicCtrl->AppendProgressColumn( wxT("popularity"), 3, wxDATAVIEW_CELL_INERT, 80 );
|
m_musicCtrl->AppendProgressColumn( wxT("popularity"), 3, wxDATAVIEW_CELL_INERT, 80 );
|
||||||
|
|
||||||
MyCustomRenderer *cr = new MyCustomRenderer( wxDATAVIEW_CELL_ACTIVATABLE, wxALIGN_RIGHT );
|
MyCustomRenderer *cr = new MyCustomRenderer( wxDATAVIEW_CELL_ACTIVATABLE, wxALIGN_RIGHT );
|
||||||
wxDataViewColumn *column3 = new wxDataViewColumn( wxT("custom"), cr, 4, -1, wxALIGN_LEFT,
|
wxDataViewColumn *column3 = new wxDataViewColumn( wxT("custom"), cr, 4, -1, wxALIGN_LEFT,
|
||||||
wxDATAVIEW_COL_RESIZABLE );
|
wxDATAVIEW_COL_RESIZABLE );
|
||||||
m_musicCtrl->AppendColumn( column3 );
|
m_musicCtrl->AppendColumn( column3 );
|
||||||
|
|
||||||
data_sizer->Add( m_musicCtrl, 3, wxGROW );
|
data_sizer->Add( m_musicCtrl, 3, wxGROW );
|
||||||
|
|
||||||
#if 1
|
#if 1
|
||||||
|
|
||||||
// MyList
|
// MyList
|
||||||
|
|
||||||
m_listCtrl = new wxDataViewCtrl( this, wxID_ANY, wxDefaultPosition,
|
m_listCtrl = new wxDataViewCtrl( this, wxID_ANY, wxDefaultPosition,
|
||||||
wxDefaultSize, wxDV_MULTIPLE | wxDV_ROW_LINES);
|
wxDefaultSize, wxDV_MULTIPLE | wxDV_ROW_LINES);
|
||||||
|
|
||||||
m_list_model = new MyListModel;
|
m_list_model = new MyListModel;
|
||||||
m_listCtrl->AssociateModel( m_list_model.get() );
|
m_listCtrl->AssociateModel( m_list_model.get() );
|
||||||
|
|
||||||
@@ -867,15 +867,15 @@ MyFrame::MyFrame(wxFrame *frame, const wxString &title, int x, int y, int w, int
|
|||||||
wxDataViewTextRendererAttr *ra = new wxDataViewTextRendererAttr;
|
wxDataViewTextRendererAttr *ra = new wxDataViewTextRendererAttr;
|
||||||
wxDataViewColumn *column4 = new wxDataViewColumn(wxT("attributes"), ra, 2 );
|
wxDataViewColumn *column4 = new wxDataViewColumn(wxT("attributes"), ra, 2 );
|
||||||
m_listCtrl->AppendColumn( column4 );
|
m_listCtrl->AppendColumn( column4 );
|
||||||
|
|
||||||
data_sizer->Add( m_listCtrl, 2, wxGROW );
|
data_sizer->Add( m_listCtrl, 2, wxGROW );
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
main_sizer->Add( data_sizer, 2, wxGROW );
|
main_sizer->Add( data_sizer, 2, wxGROW );
|
||||||
|
|
||||||
wxBoxSizer *button_sizer = new wxBoxSizer( wxHORIZONTAL );
|
wxBoxSizer *button_sizer = new wxBoxSizer( wxHORIZONTAL );
|
||||||
|
|
||||||
button_sizer->Add( new wxButton( this, ID_ADD_MOZART, _("Add Mozart")), 0, wxALL, 10 );
|
button_sizer->Add( new wxButton( this, ID_ADD_MOZART, _("Add Mozart")), 0, wxALL, 10 );
|
||||||
button_sizer->Add( new wxButton( this, ID_DELETE_MUSIC,_("Delete selected")), 0, wxALL, 10 );
|
button_sizer->Add( new wxButton( this, ID_DELETE_MUSIC,_("Delete selected")), 0, wxALL, 10 );
|
||||||
button_sizer->Add( new wxButton( this, ID_DELETE_YEAR, _("Delete \"Year\" column")), 0, wxALL, 10 );
|
button_sizer->Add( new wxButton( this, ID_DELETE_YEAR, _("Delete \"Year\" column")), 0, wxALL, 10 );
|
||||||
@@ -886,22 +886,22 @@ MyFrame::MyFrame(wxFrame *frame, const wxString &title, int x, int y, int w, int
|
|||||||
grid_sizer->Add( new wxButton( this, ID_GOTO, _("Goto 50")), 0, wxALL, 2 );
|
grid_sizer->Add( new wxButton( this, ID_GOTO, _("Goto 50")), 0, wxALL, 2 );
|
||||||
grid_sizer->Add( new wxButton( this, ID_ADD_MANY, _("Add 1000")), 0, wxALL, 2 );
|
grid_sizer->Add( new wxButton( this, ID_ADD_MANY, _("Add 1000")), 0, wxALL, 2 );
|
||||||
button_sizer->Add( grid_sizer, 0, wxALL, 10 );
|
button_sizer->Add( grid_sizer, 0, wxALL, 10 );
|
||||||
|
|
||||||
main_sizer->Add( button_sizer, 0, wxGROW, 0 );
|
main_sizer->Add( button_sizer, 0, wxGROW, 0 );
|
||||||
|
|
||||||
wxBoxSizer *bottom_sizer = new wxBoxSizer( wxHORIZONTAL );
|
wxBoxSizer *bottom_sizer = new wxBoxSizer( wxHORIZONTAL );
|
||||||
|
|
||||||
m_log = new wxTextCtrl( this, -1, wxString(), wxDefaultPosition, wxSize(100,200), wxTE_MULTILINE );
|
m_log = new wxTextCtrl( this, -1, wxString(), wxDefaultPosition, wxSize(100,200), wxTE_MULTILINE );
|
||||||
m_logOld = wxLog::SetActiveTarget(new wxLogTextCtrl(m_log));
|
m_logOld = wxLog::SetActiveTarget(new wxLogTextCtrl(m_log));
|
||||||
wxLogMessage(_("This is the log window"));
|
wxLogMessage(_("This is the log window"));
|
||||||
|
|
||||||
bottom_sizer->Add( m_log, 1, wxGROW );
|
bottom_sizer->Add( m_log, 1, wxGROW );
|
||||||
|
|
||||||
// wxDataViewTreeStore
|
// wxDataViewTreeStore
|
||||||
|
|
||||||
wxDataViewCtrl *treectrl = new wxDataViewCtrl( this, -1,
|
wxDataViewCtrl *treectrl = new wxDataViewCtrl( this, -1,
|
||||||
wxDefaultPosition, wxSize(100,200), wxDV_NO_HEADER );
|
wxDefaultPosition, wxSize(100,200), wxDV_NO_HEADER );
|
||||||
|
|
||||||
wxDataViewTreeStore *store = new wxDataViewTreeStore;
|
wxDataViewTreeStore *store = new wxDataViewTreeStore;
|
||||||
wxDataViewItem parent = store->AppendContainer( wxDataViewItem(0),wxT("Root 1"), wxIcon(small1_xpm) );
|
wxDataViewItem parent = store->AppendContainer( wxDataViewItem(0),wxT("Root 1"), wxIcon(small1_xpm) );
|
||||||
wxDataViewItem child = store->AppendItem( parent,wxT("Child 1"), wxIcon(small1_xpm) );
|
wxDataViewItem child = store->AppendItem( parent,wxT("Child 1"), wxIcon(small1_xpm) );
|
||||||
@@ -910,7 +910,7 @@ MyFrame::MyFrame(wxFrame *frame, const wxString &title, int x, int y, int w, int
|
|||||||
treectrl->AssociateModel( store );
|
treectrl->AssociateModel( store );
|
||||||
store->DecRef();
|
store->DecRef();
|
||||||
|
|
||||||
treectrl->AppendIconTextColumn( wxT("no label"), 0, wxDATAVIEW_CELL_INERT, -1, (wxAlignment) 0,
|
treectrl->AppendIconTextColumn( wxT("no label"), 0, wxDATAVIEW_CELL_INERT, -1, (wxAlignment) 0,
|
||||||
wxDATAVIEW_COL_RESIZABLE );
|
wxDATAVIEW_COL_RESIZABLE );
|
||||||
|
|
||||||
bottom_sizer->Add( treectrl, 1 );
|
bottom_sizer->Add( treectrl, 1 );
|
||||||
@@ -918,22 +918,22 @@ MyFrame::MyFrame(wxFrame *frame, const wxString &title, int x, int y, int w, int
|
|||||||
// wxDataViewTreeCtrl
|
// wxDataViewTreeCtrl
|
||||||
|
|
||||||
wxDataViewTreeCtrl *treectrl2 = new wxDataViewTreeCtrl( this, -1, wxDefaultPosition, wxSize(100,200) );
|
wxDataViewTreeCtrl *treectrl2 = new wxDataViewTreeCtrl( this, -1, wxDefaultPosition, wxSize(100,200) );
|
||||||
|
|
||||||
wxImageList *ilist = new wxImageList( 16, 16 );
|
wxImageList *ilist = new wxImageList( 16, 16 );
|
||||||
ilist->Add( wxIcon(small1_xpm) );
|
ilist->Add( wxIcon(small1_xpm) );
|
||||||
treectrl2->SetImageList( ilist );
|
treectrl2->SetImageList( ilist );
|
||||||
|
|
||||||
parent = treectrl2->AppendContainer( wxDataViewItem(0),wxT("Root 1"), 0 );
|
parent = treectrl2->AppendContainer( wxDataViewItem(0),wxT("Root 1"), 0 );
|
||||||
child = treectrl2->AppendItem( parent,wxT("Child 1"), 0 );
|
child = treectrl2->AppendItem( parent,wxT("Child 1"), 0 );
|
||||||
child = treectrl2->AppendItem( parent,wxT("Child 2"), 0 );
|
child = treectrl2->AppendItem( parent,wxT("Child 2"), 0 );
|
||||||
child = treectrl2->AppendItem( parent,wxT("Child 3, very long, long, long, long"), 0 );
|
child = treectrl2->AppendItem( parent,wxT("Child 3, very long, long, long, long"), 0 );
|
||||||
|
|
||||||
bottom_sizer->Add( treectrl2, 1 );
|
bottom_sizer->Add( treectrl2, 1 );
|
||||||
|
|
||||||
// main sizer
|
// main sizer
|
||||||
|
|
||||||
main_sizer->Add( bottom_sizer, 0, wxGROW );
|
main_sizer->Add( bottom_sizer, 0, wxGROW );
|
||||||
|
|
||||||
SetSizer( main_sizer );
|
SetSizer( main_sizer );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -984,7 +984,7 @@ void MyFrame::OnValueChanged( wxDataViewEvent &event )
|
|||||||
{
|
{
|
||||||
if (!m_log)
|
if (!m_log)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
wxLogMessage( wxT("EVT_DATAVIEW_ITEM_VALUE_CHANGED, Item Id: %d; Column: %d"), event.GetItem().GetID(), event.GetColumn() );
|
wxLogMessage( wxT("EVT_DATAVIEW_ITEM_VALUE_CHANGED, Item Id: %d; Column: %d"), event.GetItem().GetID(), event.GetColumn() );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1005,7 +1005,7 @@ void MyFrame::OnSelectionChanged( wxDataViewEvent &event )
|
|||||||
wxString title = m_music_model->GetTitle( event.GetItem() );
|
wxString title = m_music_model->GetTitle( event.GetItem() );
|
||||||
if (title.empty())
|
if (title.empty())
|
||||||
title = wxT("None");
|
title = wxT("None");
|
||||||
|
|
||||||
wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_SELECTION_CHANGED, First selected Item: %s"), title.GetData() );
|
wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_SELECTION_CHANGED, First selected Item: %s"), title.GetData() );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1013,7 +1013,7 @@ void MyFrame::OnExpanding( wxDataViewEvent &event )
|
|||||||
{
|
{
|
||||||
if (!m_log)
|
if (!m_log)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
wxString title = m_music_model->GetTitle( event.GetItem() );
|
wxString title = m_music_model->GetTitle( event.GetItem() );
|
||||||
wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDING, Item: %s"), title.GetData() );
|
wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDING, Item: %s"), title.GetData() );
|
||||||
}
|
}
|
||||||
@@ -1023,7 +1023,7 @@ void MyFrame::OnEditingStarted( wxDataViewEvent &event )
|
|||||||
{
|
{
|
||||||
if (!m_log)
|
if (!m_log)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
wxString title = m_music_model->GetTitle( event.GetItem() );
|
wxString title = m_music_model->GetTitle( event.GetItem() );
|
||||||
wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_STARTED, Item: %s"), title.GetData() );
|
wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_STARTED, Item: %s"), title.GetData() );
|
||||||
}
|
}
|
||||||
@@ -1032,7 +1032,7 @@ void MyFrame::OnEditingDone( wxDataViewEvent &event )
|
|||||||
{
|
{
|
||||||
if (!m_log)
|
if (!m_log)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
wxString title = m_music_model->GetTitle( event.GetItem() );
|
wxString title = m_music_model->GetTitle( event.GetItem() );
|
||||||
wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_DONE, Item: %s"), title.GetData() );
|
wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_DONE, Item: %s"), title.GetData() );
|
||||||
}
|
}
|
||||||
@@ -1041,7 +1041,7 @@ void MyFrame::OnExpanded( wxDataViewEvent &event )
|
|||||||
{
|
{
|
||||||
if (!m_log)
|
if (!m_log)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
wxString title = m_music_model->GetTitle( event.GetItem() );
|
wxString title = m_music_model->GetTitle( event.GetItem() );
|
||||||
wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDED, Item: %s"), title.GetData() );
|
wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDED, Item: %s"), title.GetData() );
|
||||||
}
|
}
|
||||||
@@ -1050,7 +1050,7 @@ void MyFrame::OnCollapsing( wxDataViewEvent &event )
|
|||||||
{
|
{
|
||||||
if (!m_log)
|
if (!m_log)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
wxString title = m_music_model->GetTitle( event.GetItem() );
|
wxString title = m_music_model->GetTitle( event.GetItem() );
|
||||||
wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSING, Item: %s"), title.GetData() );
|
wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSING, Item: %s"), title.GetData() );
|
||||||
}
|
}
|
||||||
@@ -1059,7 +1059,7 @@ void MyFrame::OnCollapsed( wxDataViewEvent &event )
|
|||||||
{
|
{
|
||||||
if (!m_log)
|
if (!m_log)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
wxString title = m_music_model->GetTitle( event.GetItem() );
|
wxString title = m_music_model->GetTitle( event.GetItem() );
|
||||||
wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSED, Item: %s"),title.GetData());
|
wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSED, Item: %s"),title.GetData());
|
||||||
}
|
}
|
||||||
@@ -1068,17 +1068,17 @@ void MyFrame::OnContextMenu( wxDataViewEvent &event )
|
|||||||
{
|
{
|
||||||
if (!m_log)
|
if (!m_log)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
wxString title = m_music_model->GetTitle( event.GetItem() );
|
wxString title = m_music_model->GetTitle( event.GetItem() );
|
||||||
wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_ITEM_CONTEXT_MENU, Item: %s"),title.GetData());
|
wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_ITEM_CONTEXT_MENU, Item: %s"),title.GetData());
|
||||||
|
|
||||||
wxMenu *menu = new wxMenu;
|
wxMenu menu;
|
||||||
menu->Append( 1, wxT("entry 1") );
|
menu.Append( 1, wxT("entry 1") );
|
||||||
menu->Append( 2, wxT("entry 2") );
|
menu.Append( 2, wxT("entry 2") );
|
||||||
menu->Append( 3, wxT("entry 3") );
|
menu.Append( 3, wxT("entry 3") );
|
||||||
|
|
||||||
m_musicCtrl->PopupMenu( menu );
|
m_musicCtrl->PopupMenu(&menu);
|
||||||
|
|
||||||
// wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_ITEM_CONTEXT_MENU, Item: %s Value: %s"),title.GetData(), event.GetValue().GetString());
|
// wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_ITEM_CONTEXT_MENU, Item: %s Value: %s"),title.GetData(), event.GetValue().GetString());
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1086,7 +1086,7 @@ void MyFrame::OnHeaderClick( wxDataViewEvent &event )
|
|||||||
{
|
{
|
||||||
if(!m_log)
|
if(!m_log)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
int pos = m_musicCtrl->GetColumnPosition( event.GetDataViewColumn() );
|
int pos = m_musicCtrl->GetColumnPosition( event.GetDataViewColumn() );
|
||||||
|
|
||||||
wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICK, Column position: %d"), pos );
|
wxLogMessage(wxT("wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICK, Column position: %d"), pos );
|
||||||
|
Reference in New Issue
Block a user