1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxDataViewCtrl wxWidgets sample
4 // Author: Robert Roebling
5 // Modified by: Francesco Montorsi, Bo Yang
8 // Copyright: (c) Robert Roebling
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx/wx.h".
13 #include "wx/wxprec.h"
23 #include "wx/datetime.h"
24 #include "wx/splitter.h"
25 #include "wx/aboutdlg.h"
26 #include "wx/choicdlg.h"
27 #include "wx/numdlg.h"
28 #include "wx/dataview.h"
29 #include "wx/spinctrl.h"
32 #include "../sample.xpm"
38 static const char *small1_xpm
[] = {
39 /* columns rows colors chars-per-pixel */
68 #define DEFAULT_ALIGN wxALIGN_LEFT
69 #define DATAVIEW_DEFAULT_STYLE (wxDV_MULTIPLE|wxDV_HORIZ_RULES|wxDV_VERT_RULES)
72 // -------------------------------------
74 // -------------------------------------
77 Implement this data model
79 -------------------------------------------------------------
82 3: You are not alone Michael Jackson 1995
83 4: Take a bow Madonna 1994
85 6: Ninth Symphony Ludwig v. Beethoven 1824
86 7: German Requiem Johannes Brahms 1868
91 class MyMusicModelNode
;
92 WX_DEFINE_ARRAY_PTR( MyMusicModelNode
*, MyMusicModelNodes
);
94 class MyMusicModelNode
97 MyMusicModelNode( MyMusicModelNode
* parent
,
98 const wxString
&title
, const wxString
&artist
, int year
)
104 m_isContainer
= false;
107 MyMusicModelNode( MyMusicModelNode
* parent
,
108 const wxString
&branch
)
113 m_isContainer
= true;
118 size_t count
= m_children
.GetCount();
120 for (i
= 0; i
< count
; i
++)
122 MyMusicModelNode
*child
= m_children
[i
];
127 bool IsContainer() { return m_isContainer
; }
129 MyMusicModelNode
* GetParent() { return m_parent
; }
130 MyMusicModelNodes
&GetChildren() { return m_children
; }
131 MyMusicModelNode
* GetNthChild( unsigned int n
) { return m_children
.Item( n
); }
132 void Insert( MyMusicModelNode
* child
, unsigned int n
) { m_children
.Insert( child
, n
); }
133 void Append( MyMusicModelNode
* child
) { m_children
.Add( child
); }
134 unsigned int GetChildCount() { return m_children
.GetCount(); }
142 MyMusicModelNode
*m_parent
;
143 MyMusicModelNodes m_children
;
148 class MyMusicModel
: public wxDataViewModel
156 m_root
= new MyMusicModelNode( NULL
, "My Music" );
157 m_pop
= new MyMusicModelNode( m_root
, "Pop music" );
158 m_root
->Append( m_pop
);
159 m_pop
->Append( new MyMusicModelNode( m_pop
,
160 "You are not alone", "Michael Jackson", 1995 ) );
161 m_pop
->Append( new MyMusicModelNode( m_pop
,
162 "Take a bow", "Madonna", 1994 ) );
163 m_classical
= new MyMusicModelNode( m_root
, "Classical music" );
164 m_root
->Append( m_classical
);
165 m_classical
->Append( new MyMusicModelNode( m_classical
,
166 "Ninth symphony", "Ludwig van Beethoven", 1824 ) );
167 m_classical
->Append( new MyMusicModelNode( m_classical
,
168 "German Requiem", "Johannes Brahms", 1868 ) );
169 m_classicalMusicIsKnownToControl
= false;
172 // helper method for wxLog
174 wxString
GetTitle( const wxDataViewItem
&item
)
176 MyMusicModelNode
*node
= (MyMusicModelNode
*) item
.GetID();
178 return wxEmptyString
;
180 return node
->m_title
;
183 // helper methods to change the model
185 void AddToClassical( const wxString
&title
, const wxString
&artist
, int year
)
188 MyMusicModelNode
*child_node
=
189 new MyMusicModelNode( m_classical
, title
, artist
, year
);
191 m_classical
->Append( child_node
);
193 if (m_classicalMusicIsKnownToControl
)
196 wxDataViewItem
child( (void*) child_node
);
197 wxDataViewItem
parent( (void*) m_classical
);
198 ItemAdded( parent
, child
);
202 void Delete( const wxDataViewItem
&item
)
204 MyMusicModelNode
*node
= (MyMusicModelNode
*) item
.GetID();
205 wxDataViewItem
parent( node
->GetParent() );
207 node
->GetParent()->GetChildren().Remove( node
);
211 ItemDeleted( parent
, item
);
214 // override sorting to always sort branches ascendingly
216 int Compare( const wxDataViewItem
&item1
, const wxDataViewItem
&item2
,
217 unsigned int column
, bool ascending
)
219 if (IsContainer(item1
) && IsContainer(item2
))
221 wxVariant value1
,value2
;
222 GetValue( value1
, item1
, 0 );
223 GetValue( value2
, item2
, 0 );
225 wxString str1
= value1
.GetString();
226 wxString str2
= value2
.GetString();
227 int res
= str1
.Cmp( str2
);
230 // items must be different
231 unsigned long litem1
= (unsigned long) item1
.GetID();
232 unsigned long litem2
= (unsigned long) item2
.GetID();
234 return litem1
-litem2
;
237 return wxDataViewModel::Compare( item1
, item2
, column
, ascending
);
240 // implementation of base class virtuals to define model
242 virtual unsigned int GetColumnCount() const
247 virtual wxString
GetColumnType( unsigned int col
) const
255 virtual void GetValue( wxVariant
&variant
,
256 const wxDataViewItem
&item
, unsigned int col
) const
258 MyMusicModelNode
*node
= (MyMusicModelNode
*) item
.GetID();
261 case 0: variant
= node
->m_title
; break;
262 case 1: variant
= node
->m_artist
; break;
263 case 2: variant
= (long) node
->m_year
; break;
266 wxLogError( "MyMusicModel::GetValue: wrong column" );
268 // provoke a crash when mouse button down
269 wxMouseState state
= wxGetMouseState();
270 if (state
.ShiftDown())
279 virtual bool SetValue( const wxVariant
&variant
,
280 const wxDataViewItem
&item
, unsigned int col
)
282 MyMusicModelNode
*node
= (MyMusicModelNode
*) item
.GetID();
285 case 0: node
->m_title
= variant
.GetString(); return true;
286 case 1: node
->m_artist
= variant
.GetString(); return true;
287 case 2: node
->m_year
= variant
.GetLong(); return true;
288 default: wxLogError( "MyMusicModel::SetValue: wrong column" );
293 virtual wxDataViewItem
GetParent( const wxDataViewItem
&item
) const
295 // the invisble root node has no parent
297 return wxDataViewItem(0);
299 MyMusicModelNode
*node
= (MyMusicModelNode
*) item
.GetID();
301 // "MyMusic" also has no parent
303 return wxDataViewItem(0);
305 return wxDataViewItem( (void*) node
->GetParent() );
308 virtual bool IsContainer( const wxDataViewItem
&item
) const
310 // the invisble root node can have children (in
311 // our model always "MyMusic")
315 MyMusicModelNode
*node
= (MyMusicModelNode
*) item
.GetID();
316 return node
->IsContainer();
319 virtual unsigned int GetChildren( const wxDataViewItem
&parent
, wxDataViewItemArray
&array
) const
321 MyMusicModelNode
*node
= (MyMusicModelNode
*) parent
.GetID();
324 array
.Add( wxDataViewItem( (void*) m_root
) );
328 if (node
== m_classical
)
330 MyMusicModel
*model
= (MyMusicModel
*)(const MyMusicModel
*) this;
331 model
->m_classicalMusicIsKnownToControl
= true;
334 if (node
->GetChildCount() == 0)
339 unsigned int count
= node
->GetChildren().GetCount();
341 for (pos
= 0; pos
< count
; pos
++)
343 MyMusicModelNode
*child
= node
->GetChildren().Item( pos
);
344 array
.Add( wxDataViewItem( (void*) child
) );
350 MyMusicModelNode
* m_root
;
351 MyMusicModelNode
* m_pop
;
352 MyMusicModelNode
* m_classical
;
353 bool m_classicalMusicIsKnownToControl
;
356 class MyListModel
: public wxDataViewIndexListModel
361 wxDataViewIndexListModel( 1000 )
363 wxDataViewIndexListModel( 100000 )
367 for (i
= 0; i
< 100; i
++)
370 str
.Printf( "row number %d", i
);
374 m_icon
= wxIcon( null_xpm
);
377 // helper methods to change the model
379 void Prepend( const wxString
&text
)
381 m_array
.Insert( text
, 0 );
385 void DeleteItem( const wxDataViewItem
&item
)
387 unsigned int row
= GetRow( item
);
388 m_array
.RemoveAt( row
);
392 // implementation of base class virtuals to define model
394 virtual unsigned int GetColumnCount() const
399 virtual wxString
GetColumnType( unsigned int col
) const
402 return "wxDataViewIconText";
407 virtual unsigned int GetRowCount()
409 return m_array
.GetCount();
412 virtual void GetValue( wxVariant
&variant
,
413 unsigned int row
, unsigned int col
) const
417 if (row
>= m_array
.GetCount())
420 str
.Printf( "row %d", row
);
425 variant
= m_array
[ row
];
430 wxDataViewIconText
data( "test", m_icon
);
442 virtual bool GetAttr( unsigned int row
, unsigned int col
, wxDataViewItemAttr
&attr
)
448 attr
.SetColour( *wxBLUE
);
450 attr
.SetItalic( true );
455 virtual bool SetValue( const wxVariant
&variant
,
456 unsigned int row
, unsigned int col
)
460 if (row
>= m_array
.GetCount())
463 m_array
[row
] = variant
.GetString();
470 wxArrayString m_array
;
474 // -------------------------------------
476 // -------------------------------------
478 class MyApp
: public wxApp
485 // -------------------------------------
487 // -------------------------------------
489 class MyFrame
: public wxFrame
492 MyFrame(wxFrame
*frame
, const wxString
&title
, int x
, int y
, int w
, int h
);
495 void OnQuit(wxCommandEvent
& event
);
496 void OnAbout(wxCommandEvent
& event
);
498 void OnAddMozart(wxCommandEvent
& event
);
499 void OnDeleteMusic(wxCommandEvent
& event
);
500 void OnDeleteYear(wxCommandEvent
& event
);
502 void OnPrependList(wxCommandEvent
& event
);
503 void OnDeleteList(wxCommandEvent
& event
);
505 void OnValueChanged( wxDataViewEvent
&event
);
507 void OnActivated( wxDataViewEvent
&event
);
508 void OnExpanding( wxDataViewEvent
&event
);
509 void OnExpanded( wxDataViewEvent
&event
);
510 void OnCollapsing( wxDataViewEvent
&event
);
511 void OnCollapsed( wxDataViewEvent
&event
);
512 void OnSelectionChanged( wxDataViewEvent
&event
);
514 void OnEditingStarted( wxDataViewEvent
&event
);
515 void OnEditingDone( wxDataViewEvent
&event
);
517 void OnHeaderClick( wxDataViewEvent
&event
);
518 void OnHeaderRightClick( wxDataViewEvent
&event
);
519 void OnSorted( wxDataViewEvent
&event
);
521 void OnRightClick( wxMouseEvent
&event
);
522 void OnGoto( wxCommandEvent
&event
);
525 wxDataViewCtrl
* m_musicCtrl
;
526 wxObjectDataPtr
<MyMusicModel
> m_music_model
;
528 wxDataViewCtrl
* m_listCtrl
;
529 wxObjectDataPtr
<MyListModel
> m_list_model
;
531 wxDataViewColumn
* m_col
;
537 DECLARE_EVENT_TABLE()
540 // -------------------------------------
542 // -------------------------------------
546 bool MyApp::OnInit(void)
548 if ( !wxApp::OnInit() )
551 // build the first frame
553 new MyFrame(NULL
, wxT("wxDataViewCtrl feature test"), 40, 40, 800, 440);
566 // -------------------------------------
568 // -------------------------------------
573 ID_ABOUT
= wxID_ABOUT
,
579 ID_DELETE_MUSIC
= 101,
580 ID_DELETE_YEAR
= 102,
582 ID_PREPEND_LIST
= 200,
583 ID_DELETE_LIST
= 201,
587 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
588 EVT_MENU( ID_ABOUT
, MyFrame::OnAbout
)
589 EVT_MENU( ID_EXIT
, MyFrame::OnQuit
)
590 EVT_BUTTON( ID_ADD_MOZART
, MyFrame::OnAddMozart
)
591 EVT_BUTTON( ID_DELETE_MUSIC
, MyFrame::OnDeleteMusic
)
592 EVT_BUTTON( ID_DELETE_YEAR
, MyFrame::OnDeleteYear
)
593 EVT_BUTTON( ID_PREPEND_LIST
, MyFrame::OnPrependList
)
594 EVT_BUTTON( ID_DELETE_LIST
, MyFrame::OnDeleteList
)
595 EVT_BUTTON( ID_GOTO
, MyFrame::OnGoto
)
597 EVT_DATAVIEW_ITEM_VALUE_CHANGED( ID_MUSIC_CTRL
, MyFrame::OnValueChanged
)
599 EVT_DATAVIEW_ITEM_ACTIVATED(ID_MUSIC_CTRL
, MyFrame::OnActivated
)
600 EVT_DATAVIEW_ITEM_EXPANDING(ID_MUSIC_CTRL
, MyFrame::OnExpanding
)
601 EVT_DATAVIEW_ITEM_EXPANDED(ID_MUSIC_CTRL
, MyFrame::OnExpanded
)
602 EVT_DATAVIEW_ITEM_COLLAPSING(ID_MUSIC_CTRL
, MyFrame::OnCollapsing
)
603 EVT_DATAVIEW_ITEM_COLLAPSED(ID_MUSIC_CTRL
, MyFrame::OnCollapsed
)
604 EVT_DATAVIEW_SELECTION_CHANGED(ID_MUSIC_CTRL
, MyFrame::OnSelectionChanged
)
606 EVT_DATAVIEW_ITEM_EDITING_STARTED(ID_MUSIC_CTRL
, MyFrame::OnEditingStarted
)
607 EVT_DATAVIEW_ITEM_EDITING_DONE(ID_MUSIC_CTRL
, MyFrame::OnEditingDone
)
609 EVT_DATAVIEW_COLUMN_HEADER_CLICK(ID_MUSIC_CTRL
, MyFrame::OnHeaderClick
)
610 EVT_DATAVIEW_COLUMN_HEADER_RIGHT_CLICKED(ID_MUSIC_CTRL
, MyFrame::OnHeaderRightClick
)
611 EVT_DATAVIEW_COLUMN_SORTED(ID_MUSIC_CTRL
, MyFrame::OnSorted
)
613 EVT_RIGHT_UP(MyFrame::OnRightClick
)
616 MyFrame::MyFrame(wxFrame
*frame
, const wxString
&title
, int x
, int y
, int w
, int h
):
617 wxFrame(frame
, wxID_ANY
, title
, wxPoint(x
, y
), wxSize(w
, h
))
622 SetIcon(wxICON(sample
));
626 wxMenu
*file_menu
= new wxMenu
;
627 file_menu
->Append(ID_ABOUT
, "&About");
628 file_menu
->AppendSeparator();
629 file_menu
->Append(ID_EXIT
, "E&xit");
631 wxMenuBar
*menu_bar
= new wxMenuBar
;
632 menu_bar
->Append(file_menu
, "&File");
634 SetMenuBar(menu_bar
);
637 wxBoxSizer
*main_sizer
= new wxBoxSizer( wxVERTICAL
);
639 wxBoxSizer
*data_sizer
= new wxBoxSizer( wxHORIZONTAL
);
643 m_musicCtrl
= new wxDataViewCtrl( this, ID_MUSIC_CTRL
, wxDefaultPosition
,
644 wxDefaultSize
, wxDV_MULTIPLE
);
646 m_music_model
= new MyMusicModel
;
647 m_musicCtrl
->AssociateModel( m_music_model
.get() );
649 /* wxDataViewColumn *col = */ m_musicCtrl
->AppendTextColumn( "Title", 0, wxDATAVIEW_CELL_INERT
, 200,
650 DEFAULT_ALIGN
, wxDATAVIEW_COL_SORTABLE
);
652 // Call this and sorting is enabled
653 // immediatly upon start up.
654 col
->SetSortOrder( true );
657 m_musicCtrl
->AppendTextColumn( "Artist", 1, wxDATAVIEW_CELL_EDITABLE
, 150,
658 DEFAULT_ALIGN
, wxDATAVIEW_COL_SORTABLE
);
660 wxDataViewSpinRenderer
*sr
= new wxDataViewSpinRenderer( 0, 2010 );
661 wxDataViewColumn
*column
= new wxDataViewColumn( "year", sr
, 2, -1, wxALIGN_CENTRE
, wxDATAVIEW_COL_SORTABLE
);
662 m_musicCtrl
->AppendColumn( column
);
664 data_sizer
->Add( m_musicCtrl
, 3, wxGROW
);
670 m_listCtrl
= new wxDataViewCtrl( this, wxID_ANY
, wxDefaultPosition
,
671 wxDefaultSize
, wxDV_MULTIPLE
);
673 m_list_model
= new MyListModel
;
674 m_listCtrl
->AssociateModel( m_list_model
.get() );
676 m_listCtrl
->AppendTextColumn( "editable string", 0, wxDATAVIEW_CELL_EDITABLE
, 120 );
677 m_listCtrl
->AppendIconTextColumn( "icon", 1, wxDATAVIEW_CELL_INERT
, 60 );
679 wxDataViewTextRendererAttr
*ra
= new wxDataViewTextRendererAttr
;
680 column
= new wxDataViewColumn( "attributes", ra
, 2 );
681 m_listCtrl
->AppendColumn( column
);
683 data_sizer
->Add( m_listCtrl
, 2, wxGROW
);
687 main_sizer
->Add( data_sizer
, 2, wxGROW
);
689 wxBoxSizer
*button_sizer
= new wxBoxSizer( wxHORIZONTAL
);
691 button_sizer
->Add( new wxButton( this, ID_ADD_MOZART
, "Add Mozart"), 0, wxALL
, 10 );
692 button_sizer
->Add( new wxButton( this, ID_DELETE_MUSIC
, "Delete selected"), 0, wxALL
, 10 );
693 button_sizer
->Add( new wxButton( this, ID_DELETE_YEAR
, "Delete \"Year\" column"), 0, wxALL
, 10 );
694 button_sizer
->Add( 10, 10, 1 );
695 button_sizer
->Add( new wxButton( this, ID_PREPEND_LIST
, "Prepend"), 0, wxALL
, 10 );
696 button_sizer
->Add( new wxButton( this, ID_DELETE_LIST
, "Delete selected"), 0, wxALL
, 10 );
697 button_sizer
->Add( new wxButton( this, ID_GOTO
, "Goto 50"), 0, wxALL
, 10 );
699 main_sizer
->Add( button_sizer
, 0, wxGROW
, 0 );
701 wxBoxSizer
*bottom_sizer
= new wxBoxSizer( wxHORIZONTAL
);
703 m_log
= new wxTextCtrl( this, -1, "", wxDefaultPosition
, wxDefaultSize
, wxTE_MULTILINE
);
704 m_logOld
= wxLog::SetActiveTarget(new wxLogTextCtrl(m_log
));
705 wxLogMessage("This is the log window");
707 bottom_sizer
->Add( m_log
, 1, wxGROW
);
709 // wxDataViewTreeStore
711 wxDataViewCtrl
*treectrl
= new wxDataViewCtrl( this, -1,
712 wxDefaultPosition
, wxSize(300,200), wxDV_NO_HEADER
);
714 wxDataViewTreeStore
*store
= new wxDataViewTreeStore
;
715 wxDataViewItem parent
= store
->AppendContainer( wxDataViewItem(0), "Root 1", wxIcon(small1_xpm
) );
716 wxDataViewItem child
= store
->AppendItem( parent
, "Child 1", wxIcon(small1_xpm
) );
717 child
= store
->AppendItem( parent
, "Child 2", wxIcon(small1_xpm
) );
718 child
= store
->AppendItem( parent
, "Child 3", wxIcon(small1_xpm
) );
719 treectrl
->AssociateModel( store
);
722 treectrl
->AppendIconTextColumn( "no label", 0, wxDATAVIEW_CELL_INERT
, 200 );
724 bottom_sizer
->Add( treectrl
);
726 // wxDataViewTreeCtrl
728 wxDataViewTreeCtrl
*treectrl2
= new wxDataViewTreeCtrl( this, -1, wxDefaultPosition
, wxSize(300,200) );
729 wxImageList
*ilist
= new wxImageList
;
730 ilist
->Add( wxIcon(small1_xpm
) );
731 parent
= treectrl2
->AppendContainer( wxDataViewItem(0), "Root 1", 0 );
732 child
= treectrl2
->AppendItem( parent
, "Child 1", 0 );
733 child
= treectrl2
->AppendItem( parent
, "Child 2", 0 );
734 child
= treectrl2
->AppendItem( parent
, "Child 3", 0 );
736 bottom_sizer
->Add( treectrl2
);
740 main_sizer
->Add( bottom_sizer
, 0, wxGROW
);
742 SetSizer( main_sizer
);
745 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
) )
750 void MyFrame::OnAddMozart(wxCommandEvent
& WXUNUSED(event
) )
752 m_music_model
->AddToClassical( "Kleine Nachtmusik", "Wolfgang Mozart", 1787 );
755 void MyFrame::OnDeleteMusic(wxCommandEvent
& WXUNUSED(event
) )
757 wxDataViewItemArray items
;
758 int len
= m_musicCtrl
->GetSelections( items
);
759 for( int i
= 0; i
< len
; i
++ )
761 m_music_model
->Delete( items
[i
] );
764 void MyFrame::OnDeleteYear( wxCommandEvent
& WXUNUSED(event
) )
766 m_musicCtrl
->DeleteColumn( m_musicCtrl
->GetColumn( 2 ) );
767 FindWindow( ID_DELETE_YEAR
)->Disable();
770 void MyFrame::OnPrependList( wxCommandEvent
& WXUNUSED(event
) )
772 m_list_model
->Prepend( "Test" );
775 void MyFrame::OnDeleteList( wxCommandEvent
& WXUNUSED(event
) )
777 wxDataViewItemArray items
;
778 int len
= m_listCtrl
->GetSelections( items
);
779 for( int i
= 0; i
< len
; i
++ )
781 m_list_model
->DeleteItem( items
[i
] );
784 void MyFrame::OnValueChanged( wxDataViewEvent
&event
)
789 wxLogMessage( "EVT_DATAVIEW_ITEM_VALUE_CHANGED, Item Id: %d; Column: %d", event
.GetItem().GetID(), event
.GetColumn() );
792 void MyFrame::OnActivated( wxDataViewEvent
&event
)
797 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
798 wxLogMessage("wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED, Item: %s", title
);
801 void MyFrame::OnSelectionChanged( wxDataViewEvent
&event
)
806 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
810 wxLogMessage("wxEVT_COMMAND_DATAVIEW_SELECTION_CHANGED, First selected Item: %s", title
);
813 void MyFrame::OnExpanding( wxDataViewEvent
&event
)
818 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
819 wxLogMessage("wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDING, Item: %s", title
);
823 void MyFrame::OnEditingStarted( wxDataViewEvent
&event
)
828 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
829 wxLogMessage("wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_STARTED, Item: %s", title
);
832 void MyFrame::OnEditingDone( wxDataViewEvent
&event
)
837 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
838 wxLogMessage("wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_DONE, Item: %s", title
);
841 void MyFrame::OnExpanded( wxDataViewEvent
&event
)
846 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
847 wxLogMessage("wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDED, Item: %s", title
);
850 void MyFrame::OnCollapsing( wxDataViewEvent
&event
)
855 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
856 wxLogMessage("wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSING, Item: %s", title
);
859 void MyFrame::OnCollapsed( wxDataViewEvent
&event
)
864 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
865 wxLogMessage("wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSED, Item: %s", title
);
868 void MyFrame::OnHeaderClick( wxDataViewEvent
&event
)
873 int pos
= m_musicCtrl
->GetColumnPosition( event
.GetDataViewColumn() );
875 wxLogMessage("wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICK, Column position: %d", pos
);
878 void MyFrame::OnHeaderRightClick( wxDataViewEvent
&event
)
883 int pos
= m_musicCtrl
->GetColumnPosition( event
.GetDataViewColumn() );
885 wxLogMessage("wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK, Column position: %d", pos
);
888 void MyFrame::OnSorted( wxDataViewEvent
&event
)
893 int pos
= m_musicCtrl
->GetColumnPosition( event
.GetDataViewColumn() );
895 wxLogMessage("wxEVT_COMMAND_DATAVIEW_COLUMN_SORTED, Column position: %d", pos
);
898 void MyFrame::OnRightClick( wxMouseEvent
&event
)
903 wxLogMessage("wxEVT_MOUSE_RIGHT_UP, Click Point is X: %d, Y: %d", event
.GetX(), event
.GetY());
906 void MyFrame::OnGoto(wxCommandEvent
& WXUNUSED(event
))
908 wxDataViewItem item
= m_list_model
->GetItem( 50 );
909 m_listCtrl
->EnsureVisible(item
,m_col
);
912 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
) )
914 wxAboutDialogInfo info
;
915 info
.SetName(_("DataView sample"));
916 info
.SetDescription(_("This sample demonstrates the dataview control handling"));
917 info
.SetCopyright(_T("(C) 2007 Robert Roebling"));