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 // ============================================================================
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 // ----------------------------------------------------------------------------
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);
74 public: // event handlers
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 OnDeleteMusic(wxCommandEvent
& event
);
87 void OnDeleteYear(wxCommandEvent
& event
);
88 void OnSelectNinth(wxCommandEvent
& event
);
89 void OnCollapse(wxCommandEvent
& event
);
90 void OnExpand(wxCommandEvent
& event
);
92 void OnPrependList(wxCommandEvent
& event
);
93 void OnDeleteList(wxCommandEvent
& event
);
95 void OnValueChanged( wxDataViewEvent
&event
);
97 void OnActivated( wxDataViewEvent
&event
);
98 void OnExpanding( wxDataViewEvent
&event
);
99 void OnExpanded( wxDataViewEvent
&event
);
100 void OnCollapsing( wxDataViewEvent
&event
);
101 void OnCollapsed( wxDataViewEvent
&event
);
102 void OnSelectionChanged( wxDataViewEvent
&event
);
104 void OnStartEditing( wxDataViewEvent
&event
);
105 void OnEditingStarted( wxDataViewEvent
&event
);
106 void OnEditingDone( wxDataViewEvent
&event
);
108 void OnHeaderClick( wxDataViewEvent
&event
);
109 void OnHeaderRightClick( wxDataViewEvent
&event
);
110 void OnSorted( wxDataViewEvent
&event
);
112 void OnContextMenu( wxDataViewEvent
&event
);
114 void OnRightClick( wxMouseEvent
&event
);
115 void OnGoto( wxCommandEvent
&event
);
116 void OnAddMany( wxCommandEvent
&event
);
118 void OnBeginDrag( wxDataViewEvent
&event
);
119 void OnDropPossible( wxDataViewEvent
&event
);
120 void OnDrop( wxDataViewEvent
&event
);
123 wxNotebook
* m_notebook
;
125 // the controls stored in the various tabs of the main notebook:
127 wxDataViewCtrl
* m_ctrl
[4];
129 // the models associated with the first two DVC:
131 wxObjectDataPtr
<MyMusicTreeModel
> m_music_model
;
132 wxObjectDataPtr
<MyListModel
> m_list_model
;
136 wxDataViewColumn
* m_col
;
142 DECLARE_EVENT_TABLE()
146 // ----------------------------------------------------------------------------
148 // ----------------------------------------------------------------------------
150 class MyCustomRenderer
: public wxDataViewCustomRenderer
154 : wxDataViewCustomRenderer("string",
155 wxDATAVIEW_CELL_ACTIVATABLE
,
159 virtual bool Render( wxRect rect
, wxDC
*dc
, int state
)
161 dc
->SetBrush( *wxLIGHT_GREY_BRUSH
);
162 dc
->SetPen( *wxTRANSPARENT_PEN
);
165 dc
->DrawRoundedRectangle( rect
, 5 );
169 wxRect(dc
->GetTextExtent(m_value
)).CentreIn(rect
),
175 virtual bool Activate( wxRect
WXUNUSED(cell
),
176 wxDataViewModel
*WXUNUSED(model
),
177 const wxDataViewItem
&WXUNUSED(item
),
178 unsigned int WXUNUSED(col
) )
180 wxLogMessage( "MyCustomRenderer Activate()" );
184 virtual bool LeftClick( wxPoint cursor
, wxRect
WXUNUSED(cell
),
185 wxDataViewModel
*WXUNUSED(model
),
186 const wxDataViewItem
&WXUNUSED(item
),
187 unsigned int WXUNUSED(col
) )
189 wxLogMessage( "MyCustomRenderer LeftClick( %d, %d )", cursor
.x
, cursor
.y
);
193 virtual wxSize
GetSize() const
195 return wxSize(60,20);
198 virtual bool SetValue( const wxVariant
&value
)
200 m_value
= value
.GetString();
204 virtual bool GetValue( wxVariant
&WXUNUSED(value
) ) const { return true; }
211 // ============================================================================
213 // ============================================================================
215 // ----------------------------------------------------------------------------
217 // ----------------------------------------------------------------------------
223 if ( !wxApp::OnInit() )
227 new MyFrame(NULL
, "wxDataViewCtrl sample", 40, 40, 1000, 540);
235 // ----------------------------------------------------------------------------
237 // ----------------------------------------------------------------------------
241 ID_CLEARLOG
= wxID_HIGHEST
+1,
242 ID_BACKGROUND_COLOUR
,
243 ID_FOREGROUND_COLOUR
,
247 //ID_SINGLE, wxDV_SINGLE==0 so it's always present
256 ID_ABOUT
= wxID_ABOUT
,
264 ID_DELETE_MUSIC
= 101,
265 ID_DELETE_YEAR
= 102,
266 ID_SELECT_NINTH
= 103,
270 ID_PREPEND_LIST
= 200,
271 ID_DELETE_LIST
= 201,
276 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
277 EVT_MENU_RANGE( ID_MULTIPLE
, ID_VERT_RULES
, MyFrame::OnStyleChange
)
278 EVT_MENU( ID_EXIT
, MyFrame::OnQuit
)
279 EVT_MENU( ID_ABOUT
, MyFrame::OnAbout
)
280 EVT_MENU( ID_CLEARLOG
, MyFrame::OnClearLog
)
282 EVT_MENU( ID_FOREGROUND_COLOUR
, MyFrame::OnSetForegroundColour
)
283 EVT_MENU( ID_BACKGROUND_COLOUR
, MyFrame::OnSetBackgroundColour
)
285 EVT_NOTEBOOK_PAGE_CHANGED( wxID_ANY
, MyFrame::OnPageChanged
)
287 EVT_BUTTON( ID_ADD_MOZART
, MyFrame::OnAddMozart
)
288 EVT_BUTTON( ID_DELETE_MUSIC
, MyFrame::OnDeleteMusic
)
289 EVT_BUTTON( ID_DELETE_YEAR
, MyFrame::OnDeleteYear
)
290 EVT_BUTTON( ID_SELECT_NINTH
, MyFrame::OnSelectNinth
)
291 EVT_BUTTON( ID_COLLAPSE
, MyFrame::OnCollapse
)
292 EVT_BUTTON( ID_EXPAND
, MyFrame::OnExpand
)
294 EVT_BUTTON( ID_PREPEND_LIST
, MyFrame::OnPrependList
)
295 EVT_BUTTON( ID_DELETE_LIST
, MyFrame::OnDeleteList
)
296 EVT_BUTTON( ID_GOTO
, MyFrame::OnGoto
)
297 EVT_BUTTON( ID_ADD_MANY
, MyFrame::OnAddMany
)
299 EVT_DATAVIEW_ITEM_VALUE_CHANGED( ID_MUSIC_CTRL
, MyFrame::OnValueChanged
)
301 EVT_DATAVIEW_ITEM_ACTIVATED(ID_MUSIC_CTRL
, MyFrame::OnActivated
)
302 EVT_DATAVIEW_ITEM_EXPANDING(ID_MUSIC_CTRL
, MyFrame::OnExpanding
)
303 EVT_DATAVIEW_ITEM_EXPANDED(ID_MUSIC_CTRL
, MyFrame::OnExpanded
)
304 EVT_DATAVIEW_ITEM_COLLAPSING(ID_MUSIC_CTRL
, MyFrame::OnCollapsing
)
305 EVT_DATAVIEW_ITEM_COLLAPSED(ID_MUSIC_CTRL
, MyFrame::OnCollapsed
)
306 EVT_DATAVIEW_SELECTION_CHANGED(ID_MUSIC_CTRL
, MyFrame::OnSelectionChanged
)
308 EVT_DATAVIEW_ITEM_START_EDITING(ID_MUSIC_CTRL
, MyFrame::OnStartEditing
)
309 EVT_DATAVIEW_ITEM_EDITING_STARTED(ID_MUSIC_CTRL
, MyFrame::OnEditingStarted
)
310 EVT_DATAVIEW_ITEM_EDITING_DONE(ID_MUSIC_CTRL
, MyFrame::OnEditingDone
)
312 EVT_DATAVIEW_COLUMN_HEADER_CLICK(ID_MUSIC_CTRL
, MyFrame::OnHeaderClick
)
313 EVT_DATAVIEW_COLUMN_HEADER_RIGHT_CLICKED(ID_MUSIC_CTRL
, MyFrame::OnHeaderRightClick
)
314 EVT_DATAVIEW_COLUMN_SORTED(ID_MUSIC_CTRL
, MyFrame::OnSorted
)
316 EVT_DATAVIEW_ITEM_CONTEXT_MENU(ID_MUSIC_CTRL
, MyFrame::OnContextMenu
)
318 EVT_DATAVIEW_ITEM_BEGIN_DRAG( ID_MUSIC_CTRL
, MyFrame::OnBeginDrag
)
319 EVT_DATAVIEW_ITEM_DROP_POSSIBLE( ID_MUSIC_CTRL
, MyFrame::OnDropPossible
)
320 EVT_DATAVIEW_ITEM_DROP( ID_MUSIC_CTRL
, MyFrame::OnDrop
)
322 EVT_RIGHT_UP(MyFrame::OnRightClick
)
325 MyFrame::MyFrame(wxFrame
*frame
, const wxString
&title
, int x
, int y
, int w
, int h
):
326 wxFrame(frame
, wxID_ANY
, title
, wxPoint(x
, y
), wxSize(w
, h
))
336 SetIcon(wxICON(sample
));
342 wxMenu
*style_menu
= new wxMenu
;
343 //style_menu->AppendCheckItem(ID_SINGLE, "Single selection"));
344 style_menu
->AppendCheckItem(ID_MULTIPLE
, "Multiple selection");
345 style_menu
->AppendCheckItem(ID_ROW_LINES
, "Alternating colours");
346 style_menu
->AppendCheckItem(ID_HORIZ_RULES
, "Display horizontal rules");
347 style_menu
->AppendCheckItem(ID_VERT_RULES
, "Display vertical rules");
349 wxMenu
*file_menu
= new wxMenu
;
350 file_menu
->Append(ID_CLEARLOG
, "&Clear log\tCtrl-L");
351 file_menu
->Append(ID_FOREGROUND_COLOUR
, "Set &foreground colour...\tCtrl-F");
352 file_menu
->Append(ID_BACKGROUND_COLOUR
, "Set &background colour...\tCtrl-B");
353 file_menu
->Append(ID_STYLE_MENU
, "&Style", style_menu
);
354 file_menu
->AppendSeparator();
355 file_menu
->Append(ID_EXIT
, "E&xit");
357 wxMenu
*about_menu
= new wxMenu
;
358 about_menu
->Append(ID_ABOUT
, "&About");
360 wxMenuBar
*menu_bar
= new wxMenuBar
;
361 menu_bar
->Append(file_menu
, "&File");
362 menu_bar
->Append(about_menu
, "&About");
364 SetMenuBar(menu_bar
);
368 // first page of the notebook
369 // --------------------------
371 m_notebook
= new wxNotebook( this, wxID_ANY
);
373 wxPanel
*firstPanel
= new wxPanel( m_notebook
, wxID_ANY
);
375 BuildDataViewCtrl(firstPanel
, 0); // sets m_ctrl[0]
377 wxBoxSizer
*button_sizer
= new wxBoxSizer( wxHORIZONTAL
);
378 button_sizer
->Add( new wxButton( firstPanel
, ID_ADD_MOZART
, "Add Mozart"), 0, wxALL
, 10 );
379 button_sizer
->Add( new wxButton( firstPanel
, ID_DELETE_MUSIC
,"Delete selected"), 0, wxALL
, 10 );
380 button_sizer
->Add( new wxButton( firstPanel
, ID_DELETE_YEAR
, "Delete \"Year\" column"), 0, wxALL
, 10 );
381 button_sizer
->Add( new wxButton( firstPanel
, ID_SELECT_NINTH
,"Select ninth symphony"), 0, wxALL
, 10 );
382 button_sizer
->Add( new wxButton( firstPanel
, ID_COLLAPSE
, "Collapse"), 0, wxALL
, 10 );
383 button_sizer
->Add( new wxButton( firstPanel
, ID_EXPAND
, "Expand"), 0, wxALL
, 10 );
385 wxSizer
*firstPanelSz
= new wxBoxSizer( wxVERTICAL
);
386 m_ctrl
[0]->SetMinSize(wxSize(-1, 200));
387 firstPanelSz
->Add(m_ctrl
[0], 1, wxGROW
|wxALL
, 5);
389 new wxStaticText(firstPanel
, wxID_ANY
, "Most of the cells above are editable!"),
391 firstPanelSz
->Add(button_sizer
);
392 firstPanel
->SetSizerAndFit(firstPanelSz
);
395 // second page of the notebook
396 // ---------------------------
398 wxPanel
*secondPanel
= new wxPanel( m_notebook
, wxID_ANY
);
400 BuildDataViewCtrl(secondPanel
, 1); // sets m_ctrl[1]
402 wxBoxSizer
*button_sizer2
= new wxBoxSizer( wxHORIZONTAL
);
403 button_sizer2
->Add( new wxButton( secondPanel
, ID_PREPEND_LIST
,"Prepend"), 0, wxALL
, 10 );
404 button_sizer2
->Add( new wxButton( secondPanel
, ID_DELETE_LIST
, "Delete selected"), 0, wxALL
, 10 );
405 button_sizer2
->Add( new wxButton( secondPanel
, ID_GOTO
, "Goto 50"), 0, wxALL
, 10 );
406 button_sizer2
->Add( new wxButton( secondPanel
, ID_ADD_MANY
, "Add 1000"), 0, wxALL
, 10 );
408 wxSizer
*secondPanelSz
= new wxBoxSizer( wxVERTICAL
);
409 secondPanelSz
->Add(m_ctrl
[1], 1, wxGROW
|wxALL
, 5);
410 secondPanelSz
->Add(button_sizer2
);
411 secondPanel
->SetSizerAndFit(secondPanelSz
);
414 // third page of the notebook
415 // ---------------------------
417 wxPanel
*thirdPanel
= new wxPanel( m_notebook
, wxID_ANY
);
419 BuildDataViewCtrl(thirdPanel
, 2); // sets m_ctrl[2]
421 wxSizer
*thirdPanelSz
= new wxBoxSizer( wxVERTICAL
);
422 thirdPanelSz
->Add(m_ctrl
[2], 1, wxGROW
|wxALL
, 5);
423 thirdPanel
->SetSizerAndFit(thirdPanelSz
);
426 // fourth page of the notebook
427 // ---------------------------
429 wxPanel
*fourthPanel
= new wxPanel( m_notebook
, wxID_ANY
);
431 BuildDataViewCtrl(fourthPanel
, 3); // sets m_ctrl[3]
433 wxSizer
*fourthPanelSz
= new wxBoxSizer( wxVERTICAL
);
434 fourthPanelSz
->Add(m_ctrl
[3], 1, wxGROW
|wxALL
, 5);
435 fourthPanel
->SetSizerAndFit(fourthPanelSz
);
442 m_notebook
->AddPage(firstPanel
, "MyMusicTreeModel");
443 m_notebook
->AddPage(secondPanel
, "MyListModel");
444 m_notebook
->AddPage(thirdPanel
, "wxDataViewListCtrl");
445 m_notebook
->AddPage(fourthPanel
, "wxDataViewTreeCtrl");
447 wxSizer
* mainSizer
= new wxBoxSizer(wxVERTICAL
);
449 m_log
= new wxTextCtrl( this, wxID_ANY
, wxString(), wxDefaultPosition
,
450 wxDefaultSize
, wxTE_MULTILINE
);
451 m_log
->SetMinSize(wxSize(-1, 100));
452 m_logOld
= wxLog::SetActiveTarget(new wxLogTextCtrl(m_log
));
453 wxLogMessage( "This is the log window" );
455 mainSizer
->Add( m_notebook
, 1, wxGROW
);
456 mainSizer
->Add( m_log
, 0, wxGROW
);
458 SetSizerAndFit(mainSizer
);
463 delete wxLog::SetActiveTarget(m_logOld
);
466 void MyFrame::BuildDataViewCtrl(wxPanel
* parent
, unsigned int nPanel
, unsigned long style
)
472 wxASSERT(!m_ctrl
[0] && !m_music_model
);
474 new wxDataViewCtrl( parent
, ID_MUSIC_CTRL
, wxDefaultPosition
,
475 wxDefaultSize
, style
);
477 m_music_model
= new MyMusicTreeModel
;
478 m_ctrl
[0]->AssociateModel( m_music_model
.get() );
480 m_ctrl
[0]->EnableDragSource( wxDF_UNICODETEXT
);
481 m_ctrl
[0]->EnableDropTarget( wxDF_UNICODETEXT
);
483 // column 0 of the view control:
485 wxDataViewTextRenderer
*tr
=
486 new wxDataViewTextRenderer( "string", wxDATAVIEW_CELL_INERT
);
487 wxDataViewColumn
*column0
=
488 new wxDataViewColumn( "title", tr
, 0, 200, wxALIGN_LEFT
,
489 wxDATAVIEW_COL_SORTABLE
| wxDATAVIEW_COL_RESIZABLE
);
490 m_ctrl
[0]->AppendColumn( column0
);
492 // Call this and sorting is enabled
493 // immediatly upon start up.
494 column0
->SetAsSortKey();
497 // column 1 of the view control:
499 tr
= new wxDataViewTextRenderer( "string", wxDATAVIEW_CELL_EDITABLE
);
500 wxDataViewColumn
*column1
=
501 new wxDataViewColumn( "artist", tr
, 1, 150, wxALIGN_LEFT
,
502 wxDATAVIEW_COL_SORTABLE
| wxDATAVIEW_COL_REORDERABLE
|
503 wxDATAVIEW_COL_RESIZABLE
);
504 column1
->SetMinWidth(150); // this column can't be resized to be smaller
505 m_ctrl
[0]->AppendColumn( column1
);
507 // column 2 of the view control:
509 wxDataViewSpinRenderer
*sr
=
510 new wxDataViewSpinRenderer( 0, 2010, wxDATAVIEW_CELL_EDITABLE
, wxALIGN_RIGHT
);
511 wxDataViewColumn
*column2
=
512 new wxDataViewColumn( "year", sr
, 2, 60, wxALIGN_LEFT
,
513 wxDATAVIEW_COL_SORTABLE
| wxDATAVIEW_COL_REORDERABLE
);
514 m_ctrl
[0]->AppendColumn( column2
);
516 // column 3 of the view control:
518 wxArrayString choices
;
519 choices
.Add( "good" );
520 choices
.Add( "bad" );
521 choices
.Add( "lousy" );
522 wxDataViewChoiceRenderer
*c
=
523 new wxDataViewChoiceRenderer( choices
, wxDATAVIEW_CELL_EDITABLE
, wxALIGN_RIGHT
);
524 wxDataViewColumn
*column3
=
525 new wxDataViewColumn( "rating", c
, 3, 100, wxALIGN_LEFT
,
526 wxDATAVIEW_COL_REORDERABLE
| wxDATAVIEW_COL_RESIZABLE
);
527 m_ctrl
[0]->AppendColumn( column3
);
529 // column 4 of the view control:
531 m_ctrl
[0]->AppendProgressColumn( "popularity", 4, wxDATAVIEW_CELL_INERT
, 80 );
533 // column 5 of the view control:
535 MyCustomRenderer
*cr
= new MyCustomRenderer
;
536 wxDataViewColumn
*column5
=
537 new wxDataViewColumn( "custom", cr
, 5, -1, wxALIGN_LEFT
,
538 wxDATAVIEW_COL_RESIZABLE
);
539 m_ctrl
[0]->AppendColumn( column5
);
542 // select initially the ninth symphony:
543 m_ctrl
[0]->Select(m_music_model
->GetNinthItem());
549 wxASSERT(!m_ctrl
[1] && !m_list_model
);
550 m_ctrl
[1] = new wxDataViewCtrl( parent
, wxID_ANY
, wxDefaultPosition
,
551 wxDefaultSize
, style
);
553 m_list_model
= new MyListModel
;
554 m_ctrl
[1]->AssociateModel( m_list_model
.get() );
556 // the various columns
557 m_ctrl
[1]->AppendTextColumn("editable string",
558 MyListModel::Col_EditableText
,
559 wxDATAVIEW_CELL_EDITABLE
);
560 m_ctrl
[1]->AppendIconTextColumn("icon",
561 MyListModel::Col_IconText
,
562 wxDATAVIEW_CELL_EDITABLE
);
563 m_ctrl
[1]->AppendColumn(
564 new wxDataViewColumn("attributes",
565 new wxDataViewTextRenderer
,
566 MyListModel::Col_TextWithAttr
)
569 m_ctrl
[1]->AppendColumn(
570 new wxDataViewColumn("custom renderer",
571 new MyCustomRenderer
,
572 MyListModel::Col_Custom
)
579 wxASSERT(!m_ctrl
[2]);
580 wxDataViewListCtrl
* lc
=
581 new wxDataViewListCtrl( parent
, wxID_ANY
, wxDefaultPosition
,
582 wxDefaultSize
, style
);
585 lc
->AppendToggleColumn( "Toggle" );
586 lc
->AppendTextColumn( "Text" );
587 lc
->AppendProgressColumn( "Progress" );
589 wxVector
<wxVariant
> data
;
590 for (unsigned int i
=0; i
<10; i
++)
593 data
.push_back( (i%3
) == 0 );
594 data
.push_back( wxString::Format("row %d", i
) );
595 data
.push_back( long(5*i
) );
597 lc
->AppendItem( data
);
604 wxASSERT(!m_ctrl
[3]);
605 wxDataViewTreeCtrl
* tc
=
606 new wxDataViewTreeCtrl( parent
, wxID_ANY
, wxDefaultPosition
,
607 wxDefaultSize
, style
| wxDV_NO_HEADER
);
610 wxImageList
*ilist
= new wxImageList( 16, 16 );
611 ilist
->Add( wxIcon(wx_small_xpm
) );
612 tc
->SetImageList( ilist
);
614 wxDataViewItem parent
=
615 tc
->AppendContainer( wxDataViewItem(0), "The Root", 0 );
616 tc
->AppendItem( parent
, "Child 1", 0 );
617 tc
->AppendItem( parent
, "Child 2", 0 );
618 tc
->AppendItem( parent
, "Child 3, very long, long, long, long", 0 );
620 wxDataViewItem cont
=
621 tc
->AppendContainer( parent
, "Container child", 0 );
622 tc
->AppendItem( cont
, "Child 4", 0 );
623 tc
->AppendItem( cont
, "Child 5", 0 );
632 // ----------------------------------------------------------------------------
633 // MyFrame - generic event handlers
634 // ----------------------------------------------------------------------------
636 void MyFrame::OnClearLog( wxCommandEvent
& WXUNUSED(event
) )
641 void MyFrame::OnSetForegroundColour(wxCommandEvent
& WXUNUSED(event
))
643 wxDataViewCtrl
* const dvc
= m_ctrl
[m_notebook
->GetSelection()];
644 wxColour col
= wxGetColourFromUser(this, dvc
->GetForegroundColour());
647 dvc
->SetForegroundColour(col
);
652 void MyFrame::OnSetBackgroundColour(wxCommandEvent
& WXUNUSED(event
))
654 wxDataViewCtrl
* const dvc
= m_ctrl
[m_notebook
->GetSelection()];
655 wxColour col
= wxGetColourFromUser(this, dvc
->GetBackgroundColour());
658 dvc
->SetBackgroundColour(col
);
663 void MyFrame::OnPageChanged( wxBookCtrlEvent
& WXUNUSED(event
) )
665 unsigned int nPanel
= m_notebook
->GetSelection();
667 GetMenuBar()->FindItem(ID_STYLE_MENU
)->SetItemLabel(
668 wxString::Format("Style of panel #%d", nPanel
+1));
670 for (unsigned int id
= ID_MULTIPLE
; id
<= ID_VERT_RULES
; id
++)
672 unsigned long style
= 0;
679 style
= wxDV_MULTIPLE
;
682 style
= wxDV_ROW_LINES
;
685 style
= wxDV_HORIZ_RULES
;
688 style
= wxDV_VERT_RULES
;
694 GetMenuBar()->FindItem(id
)->Check( m_ctrl
[nPanel
]->HasFlag(style
) );
698 void MyFrame::OnStyleChange( wxCommandEvent
& WXUNUSED(event
) )
700 unsigned int nPanel
= m_notebook
->GetSelection();
703 unsigned long style
= 0;
704 /*if (GetMenuBar()->FindItem(ID_SINGLE)->IsChecked())
705 style |= wxDV_SINGLE;*/
706 if (GetMenuBar()->FindItem(ID_MULTIPLE
)->IsChecked())
707 style
|= wxDV_MULTIPLE
;
708 if (GetMenuBar()->FindItem(ID_ROW_LINES
)->IsChecked())
709 style
|= wxDV_ROW_LINES
;
710 if (GetMenuBar()->FindItem(ID_HORIZ_RULES
)->IsChecked())
711 style
|= wxDV_HORIZ_RULES
;
712 if (GetMenuBar()->FindItem(ID_VERT_RULES
)->IsChecked())
713 style
|= wxDV_VERT_RULES
;
715 wxSizer
* sz
= m_ctrl
[nPanel
]->GetContainingSizer();
718 sz
->Detach(m_ctrl
[nPanel
]);
719 wxDELETE(m_ctrl
[nPanel
]);
720 m_ctrl
[nPanel
] = NULL
;
723 m_music_model
.reset(NULL
);
724 else if (nPanel
== 1)
725 m_list_model
.reset(NULL
);
727 // rebuild the DVC for the selected panel:
728 BuildDataViewCtrl((wxPanel
*)m_notebook
->GetPage(nPanel
), nPanel
, style
);
730 sz
->Prepend(m_ctrl
[nPanel
], 1, wxGROW
|wxALL
, 5);
734 void MyFrame::OnQuit( wxCommandEvent
& WXUNUSED(event
) )
739 void MyFrame::OnAbout( wxCommandEvent
& WXUNUSED(event
) )
741 wxAboutDialogInfo info
;
742 info
.SetName(_("DataView sample"));
743 info
.SetDescription(_("This sample demonstrates wxDataViewCtrl"));
744 info
.SetCopyright(wxT("(C) 2007-2009 Robert Roebling"));
745 info
.AddDeveloper("Robert Roebling");
746 info
.AddDeveloper("Francesco Montorsi");
752 // ----------------------------------------------------------------------------
753 // MyFrame - event handlers for the first page
754 // ----------------------------------------------------------------------------
756 void MyFrame::OnBeginDrag( wxDataViewEvent
&event
)
758 wxDataViewItem
item( event
.GetItem() );
760 // only allow drags for item, not containers
761 if (m_music_model
->IsContainer( item
) )
767 MyMusicTreeModelNode
*node
= (MyMusicTreeModelNode
*) item
.GetID();
768 wxTextDataObject
*obj
= new wxTextDataObject
;
769 obj
->SetText( node
->m_title
);
770 event
.SetDataObject( obj
);
773 void MyFrame::OnDropPossible( wxDataViewEvent
&event
)
775 wxDataViewItem
item( event
.GetItem() );
777 // only allow drags for item, not containers
778 if (m_music_model
->IsContainer( item
) )
781 if (event
.GetDataFormat() != wxDF_UNICODETEXT
)
785 void MyFrame::OnDrop( wxDataViewEvent
&event
)
787 wxDataViewItem
item( event
.GetItem() );
789 // only allow drops for item, not containers
790 if (m_music_model
->IsContainer( item
) )
796 if (event
.GetDataFormat() != wxDF_UNICODETEXT
)
802 wxTextDataObject obj
;
803 obj
.SetData( wxDF_UNICODETEXT
, event
.GetDataSize(), event
.GetDataBuffer() );
805 wxLogMessage( "Text dropped: %s", obj
.GetText() );
808 void MyFrame::OnAddMozart( wxCommandEvent
& WXUNUSED(event
) )
810 m_music_model
->AddToClassical( "Kleine Nachtmusik", "Wolfgang Mozart", 1787 );
813 void MyFrame::OnDeleteMusic( wxCommandEvent
& WXUNUSED(event
) )
815 wxDataViewItemArray items
;
816 int len
= m_ctrl
[0]->GetSelections( items
);
817 for( int i
= 0; i
< len
; i
++ )
819 m_music_model
->Delete( items
[i
] );
822 void MyFrame::OnDeleteYear( wxCommandEvent
& WXUNUSED(event
) )
824 m_ctrl
[0]->DeleteColumn( m_ctrl
[0]->GetColumn( 2 ) );
825 FindWindow( ID_DELETE_YEAR
)->Disable();
828 void MyFrame::OnSelectNinth( wxCommandEvent
& WXUNUSED(event
) )
830 if (!m_music_model
->GetNinthItem().IsOk())
832 wxLogError( "Cannot select the ninth symphony: it was removed!" );
836 m_ctrl
[0]->Select( m_music_model
->GetNinthItem() );
839 void MyFrame::OnCollapse( wxCommandEvent
& WXUNUSED(event
) )
841 wxDataViewItem item
= m_ctrl
[0]->GetSelection();
843 m_ctrl
[0]->Collapse( item
);
846 void MyFrame::OnExpand( wxCommandEvent
& WXUNUSED(event
) )
848 wxDataViewItem item
= m_ctrl
[0]->GetSelection();
850 m_ctrl
[0]->Expand( item
);
853 void MyFrame::OnValueChanged( wxDataViewEvent
&event
)
858 wxLogMessage( "wxEVT_DATAVIEW_ITEM_VALUE_CHANGED, Item Id: %d; Column: %d",
859 event
.GetItem().GetID(), event
.GetColumn() );
862 void MyFrame::OnActivated( wxDataViewEvent
&event
)
867 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
868 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED, Item: %s", title
);
870 if (m_ctrl
[0]->IsExpanded( event
.GetItem() ))
872 wxLogMessage( "Item: %s is expanded", title
);
876 void MyFrame::OnSelectionChanged( wxDataViewEvent
&event
)
881 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
885 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_SELECTION_CHANGED, First selected Item: %s", title
);
888 void MyFrame::OnExpanding( wxDataViewEvent
&event
)
893 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
894 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDING, Item: %s", title
);
898 void MyFrame::OnStartEditing( wxDataViewEvent
&event
)
900 wxString artist
= m_music_model
->GetArtist( event
.GetItem() );
901 if (artist
== "Ludwig van Beethoven")
908 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_START_EDITING vetoed. Artist: %s", artist
);
911 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_START_EDITING not vetoed. Artist: %s", artist
);
915 void MyFrame::OnEditingStarted( wxDataViewEvent
&event
)
920 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
921 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_STARTED, Item: %s", title
);
924 void MyFrame::OnEditingDone( wxDataViewEvent
&event
)
929 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
930 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_DONE, Item: %s", title
);
933 void MyFrame::OnExpanded( wxDataViewEvent
&event
)
938 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
939 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDED, Item: %s", title
);
942 void MyFrame::OnCollapsing( wxDataViewEvent
&event
)
947 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
948 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSING, Item: %s", title
);
951 void MyFrame::OnCollapsed( wxDataViewEvent
&event
)
956 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
957 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSED, Item: %s", title
);
960 void MyFrame::OnContextMenu( wxDataViewEvent
&event
)
965 wxString title
= m_music_model
->GetTitle( event
.GetItem() );
966 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_ITEM_CONTEXT_MENU, Item: %s", title
);
969 menu
.Append( 1, "menuitem 1" );
970 menu
.Append( 2, "menuitem 2" );
971 menu
.Append( 3, "menuitem 3" );
973 m_ctrl
[0]->PopupMenu(&menu
);
976 void MyFrame::OnHeaderClick( wxDataViewEvent
&event
)
978 // we need to skip the event to let the default behaviour of sorting by
979 // this column when it is clicked to take place
985 int pos
= m_ctrl
[0]->GetColumnPosition( event
.GetDataViewColumn() );
987 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICK, Column position: %d", pos
);
988 wxLogMessage( "Column width: %d", event
.GetDataViewColumn()->GetWidth() );
991 void MyFrame::OnHeaderRightClick( wxDataViewEvent
&event
)
996 int pos
= m_ctrl
[0]->GetColumnPosition( event
.GetDataViewColumn() );
998 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK, Column position: %d", pos
);
1001 void MyFrame::OnSorted( wxDataViewEvent
&event
)
1006 int pos
= m_ctrl
[0]->GetColumnPosition( event
.GetDataViewColumn() );
1008 wxLogMessage( "wxEVT_COMMAND_DATAVIEW_COLUMN_SORTED, Column position: %d", pos
);
1011 void MyFrame::OnRightClick( wxMouseEvent
&event
)
1016 wxLogMessage( "wxEVT_MOUSE_RIGHT_UP, Click Point is X: %d, Y: %d",
1017 event
.GetX(), event
.GetY() );
1021 // ----------------------------------------------------------------------------
1022 // MyFrame - event handlers for the second page
1023 // ----------------------------------------------------------------------------
1025 void MyFrame::OnPrependList( wxCommandEvent
& WXUNUSED(event
) )
1027 m_list_model
->Prepend("Test");
1030 void MyFrame::OnDeleteList( wxCommandEvent
& WXUNUSED(event
) )
1032 wxDataViewItemArray items
;
1033 int len
= m_ctrl
[1]->GetSelections( items
);
1035 m_list_model
->DeleteItems( items
);
1038 void MyFrame::OnGoto(wxCommandEvent
& WXUNUSED(event
))
1040 wxDataViewItem item
= m_list_model
->GetItem( 50 );
1041 m_ctrl
[1]->EnsureVisible(item
,m_col
);
1044 void MyFrame::OnAddMany(wxCommandEvent
& WXUNUSED(event
))
1046 m_list_model
->AddMany();