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 licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // For compilers that support precompilation, includes "wx/wx.h".
17 #include "wx/wxprec.h"
27 #include "wx/dataview.h"
28 #include "wx/datetime.h"
29 #include "wx/splitter.h"
30 #include "wx/aboutdlg.h"
31 #include "wx/colordlg.h"
32 #include "wx/choicdlg.h"
33 #include "wx/numdlg.h"
34 #include "wx/spinctrl.h"
35 #include "wx/imaglist.h"
36 #include "wx/notebook.h"
40 // ----------------------------------------------------------------------------
42 // ----------------------------------------------------------------------------
44 #ifndef wxHAS_IMAGES_IN_RESOURCES
45 #include "../sample.xpm"
48 #include "wx_small.xpm"
50 // ----------------------------------------------------------------------------
52 // ----------------------------------------------------------------------------
54 class MyApp
: public wxApp
57 virtual bool OnInit();
60 // ----------------------------------------------------------------------------
62 // ----------------------------------------------------------------------------
64 class MyFrame
: public wxFrame
67 MyFrame(wxFrame
*frame
, const wxString
&title
, int x
, int y
, int w
, int h
);
70 void BuildDataViewCtrl(wxPanel
* parent
,
72 unsigned long style
= 0);
76 void OnStyleChange(wxCommandEvent
& event
);
77 void OnSetBackgroundColour(wxCommandEvent
& event
);
78 void OnSetForegroundColour(wxCommandEvent
& event
);
79 void OnQuit(wxCommandEvent
& event
);
80 void OnAbout(wxCommandEvent
& event
);
82 void OnClearLog(wxCommandEvent
& event
);
83 void OnPageChanged(wxBookCtrlEvent
& event
);
85 void OnAddMozart(wxCommandEvent
& event
);
86 void OnDeleteSelected(wxCommandEvent
& event
);
87 void OnDeleteYear(wxCommandEvent
& event
);
88 void OnSelectNinth(wxCommandEvent
& event
);
89 void OnCollapse(wxCommandEvent
& event
);
90 void OnExpand(wxCommandEvent
& event
);
91 void OnShowCurrent(wxCommandEvent
& event
);
92 void OnSetNinthCurrent(wxCommandEvent
& event
);
94 void OnPrependList(wxCommandEvent
& event
);
95 void OnDeleteList(wxCommandEvent
& event
);
97 void OnDeleteTreeItem(wxCommandEvent
& event
);
98 void OnDeleteAllTreeItems(wxCommandEvent
& event
);
99 void OnAddTreeItem(wxCommandEvent
& event
);
100 void OnAddTreeContainerItem(wxCommandEvent
& event
);
102 void OnValueChanged( wxDataViewEvent
&event
);
104 void OnActivated( wxDataViewEvent
&event
);
105 void OnExpanding( wxDataViewEvent
&event
);
106 void OnExpanded( wxDataViewEvent
&event
);
107 void OnCollapsing( wxDataViewEvent
&event
);
108 void OnCollapsed( wxDataViewEvent
&event
);
109 void OnSelectionChanged( wxDataViewEvent
&event
);
111 void OnStartEditing( wxDataViewEvent
&event
);
112 void OnEditingStarted( wxDataViewEvent
&event
);
113 void OnEditingDone( wxDataViewEvent
&event
);
115 void OnHeaderClick( wxDataViewEvent
&event
);
116 void OnAttrHeaderClick( wxDataViewEvent
&event
);
117 void OnHeaderRightClick( wxDataViewEvent
&event
);
118 void OnSorted( wxDataViewEvent
&event
);
120 void OnContextMenu( wxDataViewEvent
&event
);
122 void OnGoto( wxCommandEvent
&event
);
123 void OnAddMany( wxCommandEvent
&event
);
124 void OnHideAttributes( wxCommandEvent
&event
);
125 void OnShowAttributes( wxCommandEvent
&event
);
127 #if wxUSE_DRAG_AND_DROP
128 void OnBeginDrag( wxDataViewEvent
&event
);
129 void OnDropPossible( wxDataViewEvent
&event
);
130 void OnDrop( wxDataViewEvent
&event
);
131 #endif // wxUSE_DRAG_AND_DROP
133 void OnDataViewChar(wxKeyEvent
& event
);
135 // helper used by both OnDeleteSelected() and OnDataViewChar()
136 void DeleteSelectedItems();
139 wxNotebook
* m_notebook
;
141 // the controls stored in the various tabs of the main notebook:
143 wxDataViewCtrl
* m_ctrl
[4];
145 // the models associated with the first two DVC:
147 wxObjectDataPtr
<MyMusicTreeModel
> m_music_model
;
148 wxObjectDataPtr
<MyListModel
> m_list_model
;
152 wxDataViewColumn
* m_col
;
153 wxDataViewColumn
* m_attributes
;
159 DECLARE_EVENT_TABLE()
163 // ----------------------------------------------------------------------------
165 // ----------------------------------------------------------------------------
167 class MyCustomRenderer
: public wxDataViewCustomRenderer
171 : wxDataViewCustomRenderer("string",
172 wxDATAVIEW_CELL_ACTIVATABLE
,
176 virtual bool Render( wxRect rect
, wxDC
*dc
, int state
)
178 dc
->SetBrush( *wxLIGHT_GREY_BRUSH
);
179 dc
->SetPen( *wxTRANSPARENT_PEN
);
182 dc
->DrawRoundedRectangle( rect
, 5 );
186 wxRect(dc
->GetTextExtent(m_value
)).CentreIn(rect
),
192 virtual bool ActivateCell(const wxRect
& WXUNUSED(cell
),
193 wxDataViewModel
*WXUNUSED(model
),
194 const wxDataViewItem
&WXUNUSED(item
),
195 unsigned int WXUNUSED(col
),
196 const wxMouseEvent
*mouseEvent
)
200 position
= wxString::Format("via mouse at %d, %d", mouseEvent
->m_x
, mouseEvent
->m_y
);
202 position
= "from keyboard";
203 wxLogMessage("MyCustomRenderer ActivateCell() %s", position
);
207 virtual wxSize
GetSize() const
209 return wxSize(60,20);
212 virtual bool SetValue( const wxVariant
&value
)
214 m_value
= value
.GetString();
218 virtual bool GetValue( wxVariant
&WXUNUSED(value
) ) const { return true; }
225 // ============================================================================
227 // ============================================================================
229 // ----------------------------------------------------------------------------
231 // ----------------------------------------------------------------------------
237 if ( !wxApp::OnInit() )
241 new MyFrame(NULL
, "wxDataViewCtrl sample", 40, 40, 1000, 540);
248 // ----------------------------------------------------------------------------
250 // ----------------------------------------------------------------------------
254 ID_CLEARLOG
= wxID_HIGHEST
+1,
255 ID_BACKGROUND_COLOUR
,
256 ID_FOREGROUND_COLOUR
,
260 //ID_SINGLE, wxDV_SINGLE==0 so it's always present
269 ID_ABOUT
= wxID_ABOUT
,
279 ID_DELETE_YEAR
= 102,
280 ID_SELECT_NINTH
= 103,
284 ID_SET_NINTH_CURRENT
,
286 ID_PREPEND_LIST
= 200,
287 ID_DELETE_LIST
= 201,
290 ID_HIDE_ATTRIBUTES
= 204,
291 ID_SHOW_ATTRIBUTES
= 205,
294 ID_DELETE_TREE_ITEM
= 400,
295 ID_DELETE_ALL_TREE_ITEMS
= 401,
296 ID_ADD_TREE_ITEM
= 402,
297 ID_ADD_TREE_CONTAINER_ITEM
= 403
300 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
301 EVT_MENU_RANGE( ID_MULTIPLE
, ID_VERT_RULES
, MyFrame::OnStyleChange
)
302 EVT_MENU( ID_EXIT
, MyFrame::OnQuit
)
303 EVT_MENU( ID_ABOUT
, MyFrame::OnAbout
)
304 EVT_MENU( ID_CLEARLOG
, MyFrame::OnClearLog
)
306 EVT_MENU( ID_FOREGROUND_COLOUR
, MyFrame::OnSetForegroundColour
)
307 EVT_MENU( ID_BACKGROUND_COLOUR
, MyFrame::OnSetBackgroundColour
)
309 EVT_NOTEBOOK_PAGE_CHANGED( wxID_ANY
, MyFrame::OnPageChanged
)
311 EVT_BUTTON( ID_ADD_MOZART
, MyFrame::OnAddMozart
)
312 EVT_BUTTON( ID_DELETE_SEL
, MyFrame::OnDeleteSelected
)
313 EVT_BUTTON( ID_DELETE_YEAR
, MyFrame::OnDeleteYear
)
314 EVT_BUTTON( ID_SELECT_NINTH
, MyFrame::OnSelectNinth
)
315 EVT_BUTTON( ID_COLLAPSE
, MyFrame::OnCollapse
)
316 EVT_BUTTON( ID_EXPAND
, MyFrame::OnExpand
)
317 EVT_BUTTON( ID_SHOW_CURRENT
, MyFrame::OnShowCurrent
)
318 EVT_BUTTON( ID_SET_NINTH_CURRENT
, MyFrame::OnSetNinthCurrent
)
320 EVT_BUTTON( ID_PREPEND_LIST
, MyFrame::OnPrependList
)
321 EVT_BUTTON( ID_DELETE_LIST
, MyFrame::OnDeleteList
)
322 EVT_BUTTON( ID_GOTO
, MyFrame::OnGoto
)
323 EVT_BUTTON( ID_ADD_MANY
, MyFrame::OnAddMany
)
324 EVT_BUTTON( ID_HIDE_ATTRIBUTES
, MyFrame::OnHideAttributes
)
325 EVT_BUTTON( ID_SHOW_ATTRIBUTES
, MyFrame::OnShowAttributes
)
327 EVT_BUTTON( ID_DELETE_TREE_ITEM
, MyFrame::OnDeleteTreeItem
)
328 EVT_BUTTON( ID_DELETE_ALL_TREE_ITEMS
, MyFrame::OnDeleteAllTreeItems
)
329 EVT_BUTTON( ID_ADD_TREE_ITEM
, MyFrame::OnAddTreeItem
)
330 EVT_BUTTON( ID_ADD_TREE_CONTAINER_ITEM
, MyFrame::OnAddTreeContainerItem
)
332 EVT_DATAVIEW_ITEM_VALUE_CHANGED( ID_MUSIC_CTRL
, MyFrame::OnValueChanged
)
334 EVT_DATAVIEW_ITEM_ACTIVATED(ID_MUSIC_CTRL
, MyFrame::OnActivated
)
335 EVT_DATAVIEW_ITEM_EXPANDING(ID_MUSIC_CTRL
, MyFrame::OnExpanding
)
336 EVT_DATAVIEW_ITEM_EXPANDED(ID_MUSIC_CTRL
, MyFrame::OnExpanded
)
337 EVT_DATAVIEW_ITEM_COLLAPSING(ID_MUSIC_CTRL
, MyFrame::OnCollapsing
)
338 EVT_DATAVIEW_ITEM_COLLAPSED(ID_MUSIC_CTRL
, MyFrame::OnCollapsed
)
339 EVT_DATAVIEW_SELECTION_CHANGED(ID_MUSIC_CTRL
, MyFrame::OnSelectionChanged
)
341 EVT_DATAVIEW_ITEM_START_EDITING(ID_MUSIC_CTRL
, MyFrame::OnStartEditing
)
342 EVT_DATAVIEW_ITEM_EDITING_STARTED(ID_MUSIC_CTRL
, MyFrame::OnEditingStarted
)
343 EVT_DATAVIEW_ITEM_EDITING_DONE(ID_MUSIC_CTRL
, MyFrame::OnEditingDone
)
345 EVT_DATAVIEW_COLUMN_HEADER_CLICK(ID_MUSIC_CTRL
, MyFrame::OnHeaderClick
)
346 EVT_DATAVIEW_COLUMN_HEADER_RIGHT_CLICKED(ID_MUSIC_CTRL
, MyFrame::OnHeaderRightClick
)
347 EVT_DATAVIEW_COLUMN_SORTED(ID_MUSIC_CTRL
, MyFrame::OnSorted
)
349 EVT_DATAVIEW_ITEM_CONTEXT_MENU(ID_MUSIC_CTRL
, MyFrame::OnContextMenu
)
351 #if wxUSE_DRAG_AND_DROP
352 EVT_DATAVIEW_ITEM_BEGIN_DRAG( ID_MUSIC_CTRL
, MyFrame::OnBeginDrag
)
353 EVT_DATAVIEW_ITEM_DROP_POSSIBLE( ID_MUSIC_CTRL
, MyFrame::OnDropPossible
)
354 EVT_DATAVIEW_ITEM_DROP( ID_MUSIC_CTRL
, MyFrame::OnDrop
)
355 #endif // wxUSE_DRAG_AND_DROP
357 EVT_DATAVIEW_COLUMN_HEADER_CLICK(ID_ATTR_CTRL
, MyFrame::OnAttrHeaderClick
)
361 MyFrame::MyFrame(wxFrame
*frame
, const wxString
&title
, int x
, int y
, int w
, int h
):
362 wxFrame(frame
, wxID_ANY
, title
, wxPoint(x
, y
), wxSize(w
, h
))
372 SetIcon(wxICON(sample
));
378 wxMenu
*style_menu
= new wxMenu
;
379 //style_menu->AppendCheckItem(ID_SINGLE, "Single selection"));
380 style_menu
->AppendCheckItem(ID_MULTIPLE
, "Multiple selection");
381 style_menu
->AppendCheckItem(ID_ROW_LINES
, "Alternating colours");
382 style_menu
->AppendCheckItem(ID_HORIZ_RULES
, "Display horizontal rules");
383 style_menu
->AppendCheckItem(ID_VERT_RULES
, "Display vertical rules");
385 wxMenu
*file_menu
= new wxMenu
;
386 file_menu
->Append(ID_CLEARLOG
, "&Clear log\tCtrl-L");
387 file_menu
->Append(ID_FOREGROUND_COLOUR
, "Set &foreground colour...\tCtrl-S");
388 file_menu
->Append(ID_BACKGROUND_COLOUR
, "Set &background colour...\tCtrl-B");
389 file_menu
->Append(ID_STYLE_MENU
, "&Style", style_menu
);
390 file_menu
->AppendSeparator();
391 file_menu
->Append(ID_EXIT
, "E&xit");
393 wxMenu
*about_menu
= new wxMenu
;
394 about_menu
->Append(ID_ABOUT
, "&About");
396 wxMenuBar
*menu_bar
= new wxMenuBar
;
397 menu_bar
->Append(file_menu
, "&File");
398 menu_bar
->Append(about_menu
, "&About");
400 SetMenuBar(menu_bar
);
404 // redirect logs from our event handlers to text control
405 m_log
= new wxTextCtrl( this, wxID_ANY
, wxString(), wxDefaultPosition
,
406 wxDefaultSize
, wxTE_MULTILINE
);
407 m_log
->SetMinSize(wxSize(-1, 100));
408 m_logOld
= wxLog::SetActiveTarget(new wxLogTextCtrl(m_log
));
409 wxLogMessage( "This is the log window" );
412 // first page of the notebook
413 // --------------------------
415 m_notebook
= new wxNotebook( this, wxID_ANY
);
417 wxPanel
*firstPanel
= new wxPanel( m_notebook
, wxID_ANY
);
419 BuildDataViewCtrl(firstPanel
, 0); // sets m_ctrl[0]
421 const wxSizerFlags border
= wxSizerFlags().DoubleBorder();
423 wxBoxSizer
*button_sizer
= new wxBoxSizer( wxHORIZONTAL
);
424 button_sizer
->Add( new wxButton( firstPanel
, ID_ADD_MOZART
, "Add Mozart"), border
);
425 button_sizer
->Add( new wxButton( firstPanel
, ID_DELETE_SEL
, "Delete selected"), border
);
426 button_sizer
->Add( new wxButton( firstPanel
, ID_DELETE_YEAR
, "Delete \"Year\" column"), border
);
427 button_sizer
->Add( new wxButton( firstPanel
, ID_SELECT_NINTH
,"Select ninth symphony"), border
);
428 button_sizer
->Add( new wxButton( firstPanel
, ID_COLLAPSE
, "Collapse"), border
);
429 button_sizer
->Add( new wxButton( firstPanel
, ID_EXPAND
, "Expand"), border
);
431 wxBoxSizer
*sizerCurrent
= new wxBoxSizer(wxHORIZONTAL
);
432 sizerCurrent
->Add(new wxButton(firstPanel
, ID_SHOW_CURRENT
,
433 "&Show current"), border
);
434 sizerCurrent
->Add(new wxButton(firstPanel
, ID_SET_NINTH_CURRENT
,
435 "Make &ninth symphony current"), border
);
437 wxSizer
*firstPanelSz
= new wxBoxSizer( wxVERTICAL
);
438 m_ctrl
[0]->SetMinSize(wxSize(-1, 200));
439 firstPanelSz
->Add(m_ctrl
[0], 1, wxGROW
|wxALL
, 5);
441 new wxStaticText(firstPanel
, wxID_ANY
, "Most of the cells above are editable!"),
443 firstPanelSz
->Add(button_sizer
);
444 firstPanelSz
->Add(sizerCurrent
);
445 firstPanel
->SetSizerAndFit(firstPanelSz
);
448 // second page of the notebook
449 // ---------------------------
451 wxPanel
*secondPanel
= new wxPanel( m_notebook
, wxID_ANY
);
453 BuildDataViewCtrl(secondPanel
, 1); // sets m_ctrl[1]
455 wxBoxSizer
*button_sizer2
= new wxBoxSizer( wxHORIZONTAL
);
456 button_sizer2
->Add( new wxButton( secondPanel
, ID_PREPEND_LIST
,"Prepend"), 0, wxALL
, 10 );
457 button_sizer2
->Add( new wxButton( secondPanel
, ID_DELETE_LIST
, "Delete selected"), 0, wxALL
, 10 );
458 button_sizer2
->Add( new wxButton( secondPanel
, ID_GOTO
, "Goto 50"), 0, wxALL
, 10 );
459 button_sizer2
->Add( new wxButton( secondPanel
, ID_ADD_MANY
, "Add 1000"), 0, wxALL
, 10 );
460 button_sizer2
->Add( new wxButton( secondPanel
, ID_HIDE_ATTRIBUTES
, "Hide attributes"), 0, wxALL
, 10 );
461 button_sizer2
->Add( new wxButton( secondPanel
, ID_SHOW_ATTRIBUTES
, "Show attributes"), 0, wxALL
, 10 );
463 wxSizer
*secondPanelSz
= new wxBoxSizer( wxVERTICAL
);
464 secondPanelSz
->Add(m_ctrl
[1], 1, wxGROW
|wxALL
, 5);
465 secondPanelSz
->Add(button_sizer2
);
466 secondPanel
->SetSizerAndFit(secondPanelSz
);
469 // third page of the notebook
470 // ---------------------------
472 wxPanel
*thirdPanel
= new wxPanel( m_notebook
, wxID_ANY
);
474 BuildDataViewCtrl(thirdPanel
, 2); // sets m_ctrl[2]
476 wxSizer
*thirdPanelSz
= new wxBoxSizer( wxVERTICAL
);
477 thirdPanelSz
->Add(m_ctrl
[2], 1, wxGROW
|wxALL
, 5);
478 thirdPanel
->SetSizerAndFit(thirdPanelSz
);
481 // fourth page of the notebook
482 // ---------------------------
484 wxPanel
*fourthPanel
= new wxPanel( m_notebook
, wxID_ANY
);
486 BuildDataViewCtrl(fourthPanel
, 3); // sets m_ctrl[3]
488 wxBoxSizer
*button_sizer4
= new wxBoxSizer( wxHORIZONTAL
);
489 button_sizer4
->Add( new wxButton( fourthPanel
, ID_DELETE_TREE_ITEM
, "Delete Selected"), 0, wxALL
, 10 );
490 button_sizer4
->Add( new wxButton( fourthPanel
, ID_DELETE_ALL_TREE_ITEMS
, "Delete All"), 0, wxALL
, 10 );
491 button_sizer4
->Add( new wxButton( fourthPanel
, ID_ADD_TREE_ITEM
, "Add Item"), 0, wxALL
, 10 );
492 button_sizer4
->Add( new wxButton( fourthPanel
, ID_ADD_TREE_CONTAINER_ITEM
, "Add Container"), 0, wxALL
, 10 );
494 wxSizer
*fourthPanelSz
= new wxBoxSizer( wxVERTICAL
);
495 fourthPanelSz
->Add(m_ctrl
[3], 1, wxGROW
|wxALL
, 5);
496 fourthPanelSz
->Add(button_sizer4
);
497 fourthPanel
->SetSizerAndFit(fourthPanelSz
);
504 m_notebook
->AddPage(firstPanel
, "MyMusicTreeModel");
505 m_notebook
->AddPage(secondPanel
, "MyListModel");
506 m_notebook
->AddPage(thirdPanel
, "wxDataViewListCtrl");
507 m_notebook
->AddPage(fourthPanel
, "wxDataViewTreeCtrl");
509 wxSizer
* mainSizer
= new wxBoxSizer(wxVERTICAL
);
511 mainSizer
->Add( m_notebook
, 1, wxGROW
);
512 mainSizer
->Add( m_log
, 0, wxGROW
);
514 SetSizerAndFit(mainSizer
);
519 delete wxLog::SetActiveTarget(m_logOld
);
522 void MyFrame::BuildDataViewCtrl(wxPanel
* parent
, unsigned int nPanel
, unsigned long style
)
528 wxASSERT(!m_ctrl
[0] && !m_music_model
);
530 new wxDataViewCtrl( parent
, ID_MUSIC_CTRL
, wxDefaultPosition
,
531 wxDefaultSize
, style
);
532 m_ctrl
[0]->Connect(wxEVT_CHAR
,
533 wxKeyEventHandler(MyFrame::OnDataViewChar
),
536 m_music_model
= new MyMusicTreeModel
;
537 m_ctrl
[0]->AssociateModel( m_music_model
.get() );
539 #if wxUSE_DRAG_AND_DROP && wxUSE_UNICODE
540 m_ctrl
[0]->EnableDragSource( wxDF_UNICODETEXT
);
541 m_ctrl
[0]->EnableDropTarget( wxDF_UNICODETEXT
);
542 #endif // wxUSE_DRAG_AND_DROP && wxUSE_UNICODE
544 // column 0 of the view control:
546 wxDataViewTextRenderer
*tr
=
547 new wxDataViewTextRenderer( "string", wxDATAVIEW_CELL_INERT
);
548 wxDataViewColumn
*column0
=
549 new wxDataViewColumn( "title", tr
, 0, 200, wxALIGN_LEFT
,
550 wxDATAVIEW_COL_SORTABLE
| wxDATAVIEW_COL_RESIZABLE
);
551 m_ctrl
[0]->AppendColumn( column0
);
553 // Call this and sorting is enabled
554 // immediatly upon start up.
555 column0
->SetAsSortKey();
558 // column 1 of the view control:
560 tr
= new wxDataViewTextRenderer( "string", wxDATAVIEW_CELL_EDITABLE
);
561 wxDataViewColumn
*column1
=
562 new wxDataViewColumn( "artist", tr
, 1, 150, wxALIGN_LEFT
,
563 wxDATAVIEW_COL_SORTABLE
| wxDATAVIEW_COL_REORDERABLE
|
564 wxDATAVIEW_COL_RESIZABLE
);
565 column1
->SetMinWidth(150); // this column can't be resized to be smaller
566 m_ctrl
[0]->AppendColumn( column1
);
568 // column 2 of the view control:
570 wxDataViewSpinRenderer
*sr
=
571 new wxDataViewSpinRenderer( 0, 2010, wxDATAVIEW_CELL_EDITABLE
, wxALIGN_RIGHT
);
572 wxDataViewColumn
*column2
=
573 new wxDataViewColumn( "year", sr
, 2, 60, wxALIGN_LEFT
,
574 wxDATAVIEW_COL_SORTABLE
| wxDATAVIEW_COL_REORDERABLE
);
575 m_ctrl
[0]->AppendColumn( column2
);
577 // column 3 of the view control:
579 wxArrayString choices
;
580 choices
.Add( "good" );
581 choices
.Add( "bad" );
582 choices
.Add( "lousy" );
583 wxDataViewChoiceRenderer
*c
=
584 new wxDataViewChoiceRenderer( choices
, wxDATAVIEW_CELL_EDITABLE
, wxALIGN_RIGHT
);
585 wxDataViewColumn
*column3
=
586 new wxDataViewColumn( "rating", c
, 3, 100, wxALIGN_LEFT
,
587 wxDATAVIEW_COL_REORDERABLE
| wxDATAVIEW_COL_RESIZABLE
);
588 m_ctrl
[0]->AppendColumn( column3
);
590 // column 4 of the view control:
592 m_ctrl
[0]->AppendProgressColumn( "popularity", 4, wxDATAVIEW_CELL_INERT
, 80 );
594 // column 5 of the view control:
596 MyCustomRenderer
*cr
= new MyCustomRenderer
;
597 wxDataViewColumn
*column5
=
598 new wxDataViewColumn( "custom", cr
, 5, -1, wxALIGN_LEFT
,
599 wxDATAVIEW_COL_RESIZABLE
);
600 m_ctrl
[0]->AppendColumn( column5
);
603 // select initially the ninth symphony:
604 m_ctrl
[0]->Select(m_music_model
->GetNinthItem());
610 wxASSERT(!m_ctrl
[1] && !m_list_model
);
611 m_ctrl
[1] = new wxDataViewCtrl( parent
, ID_ATTR_CTRL
, wxDefaultPosition
,
612 wxDefaultSize
, style
);
614 m_list_model
= new MyListModel
;
615 m_ctrl
[1]->AssociateModel( m_list_model
.get() );
617 // the various columns
618 m_ctrl
[1]->AppendTextColumn("editable string",
619 MyListModel::Col_EditableText
,
620 wxDATAVIEW_CELL_EDITABLE
,
621 wxCOL_WIDTH_AUTOSIZE
);
622 m_ctrl
[1]->AppendIconTextColumn("icon",
623 MyListModel::Col_IconText
,
624 wxDATAVIEW_CELL_EDITABLE
,
625 wxCOL_WIDTH_AUTOSIZE
);
628 new wxDataViewColumn("attributes",
629 new wxDataViewTextRenderer
,
630 MyListModel::Col_TextWithAttr
,
631 wxCOL_WIDTH_AUTOSIZE
,
633 wxDATAVIEW_COL_REORDERABLE
| wxDATAVIEW_COL_RESIZABLE
);
634 m_ctrl
[1]->AppendColumn( m_attributes
);
636 m_ctrl
[1]->AppendColumn(
637 new wxDataViewColumn("custom renderer",
638 new MyCustomRenderer
,
639 MyListModel::Col_Custom
)
646 wxASSERT(!m_ctrl
[2]);
647 wxDataViewListCtrl
* lc
=
648 new wxDataViewListCtrl( parent
, wxID_ANY
, wxDefaultPosition
,
649 wxDefaultSize
, style
);
652 MyListStoreDerivedModel
* page2_model
= new MyListStoreDerivedModel();
653 lc
->AssociateModel(page2_model
);
654 page2_model
->DecRef();
656 lc
->AppendToggleColumn( "Toggle" );
657 lc
->AppendTextColumn( "Text" );
658 lc
->AppendProgressColumn( "Progress" );
660 wxVector
<wxVariant
> data
;
661 for (unsigned int i
=0; i
<10; i
++)
664 data
.push_back( (i%3
) == 0 );
665 data
.push_back( wxString::Format("row %d", i
) );
666 data
.push_back( long(5*i
) );
668 lc
->AppendItem( data
);
675 wxASSERT(!m_ctrl
[3]);
676 wxDataViewTreeCtrl
* tc
=
677 new wxDataViewTreeCtrl( parent
, wxID_ANY
, wxDefaultPosition
,
678 wxDefaultSize
, style
| wxDV_NO_HEADER
);
681 wxImageList
*ilist
= new wxImageList( 16, 16 );
682 ilist
->Add( wxIcon(wx_small_xpm
) );
683 tc
->AssignImageList( ilist
);
685 wxDataViewItem parent
=
686 tc
->AppendContainer( wxDataViewItem(0), "The Root", 0 );
687 tc
->AppendItem( parent
, "Child 1", 0 );
688 tc
->AppendItem( parent
, "Child 2", 0 );
689 tc
->AppendItem( parent
, "Child 3, very long, long, long, long", 0 );
691 wxDataViewItem cont
=
692 tc
->AppendContainer( parent
, "Container child", 0 );
693 tc
->AppendItem( cont
, "Child 4", 0 );
694 tc
->AppendItem( cont
, "Child 5", 0 );
703 // ----------------------------------------------------------------------------
704 // MyFrame - generic event handlers
705 // ----------------------------------------------------------------------------
707 void MyFrame::OnClearLog( wxCommandEvent
& WXUNUSED(event
) )
712 void MyFrame::OnSetForegroundColour(wxCommandEvent
& WXUNUSED(event
))
714 wxDataViewCtrl
* const dvc
= m_ctrl
[m_notebook
->GetSelection()];
715 wxColour col
= wxGetColourFromUser(this, dvc
->GetForegroundColour());
718 dvc
->SetForegroundColour(col
);
723 void MyFrame::OnSetBackgroundColour(wxCommandEvent
& WXUNUSED(event
))
725 wxDataViewCtrl
* const dvc
= m_ctrl
[m_notebook
->GetSelection()];
726 wxColour col
= wxGetColourFromUser(this, dvc
->GetBackgroundColour());
729 dvc
->SetBackgroundColour(col
);
734 void MyFrame::OnPageChanged( wxBookCtrlEvent
& WXUNUSED(event
) )
736 unsigned int nPanel
= m_notebook
->GetSelection();
738 GetMenuBar()->FindItem(ID_STYLE_MENU
)->SetItemLabel(
739 wxString::Format("Style of panel #%d", nPanel
+1));
741 for (unsigned int id
= ID_MULTIPLE
; id
<= ID_VERT_RULES
; id
++)
743 unsigned long style
= 0;
750 style
= wxDV_MULTIPLE
;
753 style
= wxDV_ROW_LINES
;
756 style
= wxDV_HORIZ_RULES
;
759 style
= wxDV_VERT_RULES
;
765 GetMenuBar()->FindItem(id
)->Check( m_ctrl
[nPanel
]->HasFlag(style
) );
769 void MyFrame::OnStyleChange( wxCommandEvent
& WXUNUSED(event
) )
771 unsigned int nPanel
= m_notebook
->GetSelection();
774 unsigned long style
= 0;
775 /*if (GetMenuBar()->FindItem(ID_SINGLE)->IsChecked())
776 style |= wxDV_SINGLE;*/
777 if (GetMenuBar()->FindItem(ID_MULTIPLE
)->IsChecked())
778 style
|= wxDV_MULTIPLE
;
779 if (GetMenuBar()->FindItem(ID_ROW_LINES
)->IsChecked())
780 style
|= wxDV_ROW_LINES
;
781 if (GetMenuBar()->FindItem(ID_HORIZ_RULES
)->IsChecked())
782 style
|= wxDV_HORIZ_RULES
;
783 if (GetMenuBar()->FindItem(ID_VERT_RULES
)->IsChecked())
784 style
|= wxDV_VERT_RULES
;
786 wxSizer
* sz
= m_ctrl
[nPanel
]->GetContainingSizer();
789 sz
->Detach(m_ctrl
[nPanel
]);
790 wxDELETE(m_ctrl
[nPanel
]);
791 m_ctrl
[nPanel
] = NULL
;
794 m_music_model
.reset(NULL
);
795 else if (nPanel
== 1)
796 m_list_model
.reset(NULL
);
798 // rebuild the DVC for the selected panel:
799 BuildDataViewCtrl((wxPanel
*)m_notebook
->GetPage(nPanel
), nPanel
, style
);
801 sz
->Prepend(m_ctrl
[nPanel
], 1, wxGROW
|wxALL
, 5);
805 void MyFrame::OnQuit( wxCommandEvent
& WXUNUSED(event
) )
810 void MyFrame::OnAbout( wxCommandEvent
& WXUNUSED(event
) )
812 wxAboutDialogInfo info
;
813 info
.SetName(_("DataView sample"));
814 info
.SetDescription(_("This sample demonstrates wxDataViewCtrl"));
815 info
.SetCopyright(wxT("(C) 2007-2009 Robert Roebling"));
816 info
.AddDeveloper("Robert Roebling");
817 info
.AddDeveloper("Francesco Montorsi");
823 // ----------------------------------------------------------------------------
824 // MyFrame - event handlers for the first page
825 // ----------------------------------------------------------------------------
827 #if wxUSE_DRAG_AND_DROP
829 void MyFrame::OnBeginDrag( wxDataViewEvent
&event
)
831 wxDataViewItem
item( event
.GetItem() );
833 // only allow drags for item, not containers
834 if (m_music_model
->IsContainer( item
) )
840 MyMusicTreeModelNode
*node
= (MyMusicTreeModelNode
*) item
.GetID();
841 wxTextDataObject
*obj
= new wxTextDataObject
;
842 obj
->SetText( node
->m_title
);
843 event
.SetDataObject( obj
);
846 void MyFrame::OnDropPossible( wxDataViewEvent
&event
)
848 wxDataViewItem
item( event
.GetItem() );
850 // only allow drags for item, not containers
851 if (m_music_model
->IsContainer( item
) )
854 if (event
.GetDataFormat() != wxDF_UNICODETEXT
)
858 void MyFrame::OnDrop( wxDataViewEvent
&event
)
860 wxDataViewItem
item( event
.GetItem() );
862 // only allow drops for item, not containers
863 if (m_music_model
->IsContainer( item
) )
869 if (event
.GetDataFormat() != wxDF_UNICODETEXT
)
875 wxTextDataObject obj
;
876 obj
.SetData( wxDF_UNICODETEXT
, event
.GetDataSize(), event
.GetDataBuffer() );
878 wxLogMessage( "Text dropped: %s", obj
.GetText() );
881 #endif // wxUSE_DRAG_AND_DROP
883 void MyFrame::OnAddMozart( wxCommandEvent
& WXUNUSED(event
) )
885 m_music_model
->AddToClassical( "Eine kleine Nachtmusik", "Wolfgang Mozart", 1787 );
888 void MyFrame::DeleteSelectedItems()
890 wxDataViewItemArray items
;
891 int len
= m_ctrl
[0]->GetSelections( items
);
892 for( int i
= 0; i
< len
; i
++ )
894 m_music_model
->Delete( items
[i
] );
897 void MyFrame::OnDeleteSelected( wxCommandEvent
& WXUNUSED(event
) )
899 DeleteSelectedItems();
902 void MyFrame::OnDeleteYear( wxCommandEvent
& WXUNUSED(event
) )
904 m_ctrl
[0]->DeleteColumn( m_ctrl
[0]->GetColumn( 2 ) );
905 FindWindow( ID_DELETE_YEAR
)->Disable();
908 void MyFrame::OnSelectNinth( wxCommandEvent
& WXUNUSED(event
) )
910 if (!m_music_model
->GetNinthItem().IsOk())
912 wxLogError( "Cannot select the ninth symphony: it was removed!" );
916 m_ctrl
[0]->Select( m_music_model
->GetNinthItem() );
919 void MyFrame::OnCollapse( wxCommandEvent
& WXUNUSED(event
) )
921 wxDataViewItem item
= m_ctrl
[0]->GetSelection();
923 m_ctrl
[0]->Collapse( item
);
926 void MyFrame::OnExpand( wxCommandEvent
& WXUNUSED(event
) )
928 wxDataViewItem item
= m_ctrl
[0]->GetSelection();
930 m_ctrl
[0]->Expand( item
);
933 void MyFrame::OnShowCurrent(wxCommandEvent
& WXUNUSED(event
))
935 wxDataViewItem item
= m_ctrl
[0]->GetCurrentItem();
938 wxLogMessage("Current item: \"%s\" by %s",
939 m_music_model
->GetTitle(item
),
940 m_music_model
->GetArtist(item
));
944 wxLogMessage("There is no current item.");
947 wxDataViewColumn
*col
= m_ctrl
[0]->GetCurrentColumn();
950 wxLogMessage("Current column: %d",
951 m_ctrl
[0]->GetColumnPosition(col
));
955 wxLogMessage("There is no current column.");
959 void MyFrame::OnSetNinthCurrent(wxCommandEvent
& WXUNUSED(event
))
961 wxDataViewItem
item(m_music_model
->GetNinthItem());
964 wxLogError( "Cannot make the ninth symphony current: it was removed!" );
968 m_ctrl
[0]->SetCurrentItem(item
);
971 void MyFrame::OnValueChanged( wxDataViewEvent
&event
)
973 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
974 wxLogMessage( "wxEVT_DATAVIEW_ITEM_VALUE_CHANGED, Item Id: %s; Column: %d",
975 title
, event
.GetColumn() );
978 void MyFrame::OnActivated( wxDataViewEvent
&event
)
980 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
981 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED, Item: %s", title
);
983 if (m_ctrl
[0]->IsExpanded( event
.GetItem() ))
985 wxLogMessage( "Item: %s is expanded", title
);
989 void MyFrame::OnSelectionChanged( wxDataViewEvent
&event
)
991 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
995 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_SELECTION_CHANGED, First selected Item: %s", title
);
998 void MyFrame::OnExpanding( wxDataViewEvent
&event
)
1000 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
1001 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDING, Item: %s", title
);
1005 void MyFrame::OnStartEditing( wxDataViewEvent
&event
)
1007 wxString artist
= m_music_model
->GetArtist( event
.GetItem() );
1008 if (artist
== "Ludwig van Beethoven")
1012 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_START_EDITING vetoed. Artist: %s", artist
);
1015 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_START_EDITING not vetoed. Artist: %s", artist
);
1019 void MyFrame::OnEditingStarted( wxDataViewEvent
&event
)
1021 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
1022 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_STARTED, Item: %s", title
);
1025 void MyFrame::OnEditingDone( wxDataViewEvent
&event
)
1027 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
1028 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_DONE, Item: %s", title
);
1031 void MyFrame::OnExpanded( wxDataViewEvent
&event
)
1033 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
1034 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDED, Item: %s", title
);
1037 void MyFrame::OnCollapsing( wxDataViewEvent
&event
)
1039 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
1040 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSING, Item: %s", title
);
1043 void MyFrame::OnCollapsed( wxDataViewEvent
&event
)
1045 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
1046 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSED, Item: %s", title
);
1049 void MyFrame::OnContextMenu( wxDataViewEvent
&event
)
1051 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
1052 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_CONTEXT_MENU, Item: %s", title
);
1055 menu
.Append( 1, "menuitem 1" );
1056 menu
.Append( 2, "menuitem 2" );
1057 menu
.Append( 3, "menuitem 3" );
1059 m_ctrl
[0]->PopupMenu(&menu
);
1062 void MyFrame::OnAttrHeaderClick( wxDataViewEvent
&event
)
1064 // we need to skip the event to let the default behaviour of sorting by
1065 // this column when it is clicked to take place
1068 int pos
= m_ctrl
[1]->GetColumnPosition( event
.GetDataViewColumn() );
1070 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICK, Column position: %d", pos
);
1071 wxLogMessage( "Column title: %s Column width: %d", event
.GetDataViewColumn()->GetTitle(), event
.GetDataViewColumn()->GetWidth() );
1074 void MyFrame::OnHeaderClick( wxDataViewEvent
&event
)
1076 // we need to skip the event to let the default behaviour of sorting by
1077 // this column when it is clicked to take place
1080 int pos
= m_ctrl
[0]->GetColumnPosition( event
.GetDataViewColumn() );
1082 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICK, Column position: %d", pos
);
1083 wxLogMessage( "Column width: %d", event
.GetDataViewColumn()->GetWidth() );
1086 void MyFrame::OnHeaderRightClick( wxDataViewEvent
&event
)
1088 int pos
= m_ctrl
[0]->GetColumnPosition( event
.GetDataViewColumn() );
1090 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK, Column position: %d", pos
);
1093 void MyFrame::OnSorted( wxDataViewEvent
&event
)
1095 int pos
= m_ctrl
[0]->GetColumnPosition( event
.GetDataViewColumn() );
1097 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_COLUMN_SORTED, Column position: %d", pos
);
1100 void MyFrame::OnDataViewChar(wxKeyEvent
& event
)
1102 if ( event
.GetKeyCode() == WXK_DELETE
)
1103 DeleteSelectedItems();
1108 // ----------------------------------------------------------------------------
1109 // MyFrame - event handlers for the second page
1110 // ----------------------------------------------------------------------------
1112 void MyFrame::OnPrependList( wxCommandEvent
& WXUNUSED(event
) )
1114 m_list_model
->Prepend("Test");
1117 void MyFrame::OnDeleteList( wxCommandEvent
& WXUNUSED(event
) )
1119 wxDataViewItemArray items
;
1120 int len
= m_ctrl
[1]->GetSelections( items
);
1122 m_list_model
->DeleteItems( items
);
1125 void MyFrame::OnGoto(wxCommandEvent
& WXUNUSED(event
))
1127 wxDataViewItem item
= m_list_model
->GetItem( 50 );
1128 m_ctrl
[1]->EnsureVisible(item
,m_col
);
1131 void MyFrame::OnAddMany(wxCommandEvent
& WXUNUSED(event
))
1133 m_list_model
->AddMany();
1136 void MyFrame::OnHideAttributes(wxCommandEvent
& WXUNUSED(event
))
1138 m_attributes
->SetHidden(true);
1141 void MyFrame::OnShowAttributes(wxCommandEvent
& WXUNUSED(event
))
1143 m_attributes
->SetHidden(false);
1146 // ----------------------------------------------------------------------------
1147 // MyFrame - event handlers for the fourth page
1148 // ----------------------------------------------------------------------------
1150 void MyFrame::OnDeleteTreeItem(wxCommandEvent
& WXUNUSED(event
))
1152 wxDataViewTreeCtrl
* ctrl
= (wxDataViewTreeCtrl
*) m_ctrl
[3];
1153 wxDataViewItem selected
= ctrl
->GetSelection();
1154 if (!selected
.IsOk())
1157 ctrl
->DeleteItem(selected
);
1160 void MyFrame::OnDeleteAllTreeItems(wxCommandEvent
& WXUNUSED(event
))
1162 wxDataViewTreeCtrl
* ctrl
= (wxDataViewTreeCtrl
*) m_ctrl
[3];
1163 ctrl
->DeleteAllItems();
1166 void MyFrame::OnAddTreeItem(wxCommandEvent
& WXUNUSED(event
))
1168 wxDataViewTreeCtrl
* ctrl
= (wxDataViewTreeCtrl
*) m_ctrl
[3];
1169 wxDataViewItem selected
= ctrl
->GetSelection();
1170 if (ctrl
->IsContainer(selected
)) {
1171 wxDataViewItem newitem
= ctrl
->AppendItem( selected
, "Item", 0 );
1172 ctrl
->Select(newitem
);
1173 ctrl
->EditItem(newitem
, ctrl
->GetColumn(0));
1177 void MyFrame::OnAddTreeContainerItem(wxCommandEvent
& WXUNUSED(event
))
1179 wxDataViewTreeCtrl
* ctrl
= (wxDataViewTreeCtrl
*) m_ctrl
[3];
1180 wxDataViewItem selected
= ctrl
->GetSelection();
1181 if (ctrl
->IsContainer(selected
))
1182 ctrl
->AppendContainer(selected
, "Container", 0 );