1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxListCtrl sample
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx/wx.h".
13 #include "wx/wxprec.h"
23 #if !defined(__WXMSW__) && !defined(__WXPM__)
24 #include "mondrian.xpm"
28 #include "bitmaps/toolbrai.xpm"
29 #include "bitmaps/toolchar.xpm"
30 #include "bitmaps/tooldata.xpm"
31 #include "bitmaps/toolnote.xpm"
32 #include "bitmaps/tooltodo.xpm"
33 #include "bitmaps/toolchec.xpm"
34 #include "bitmaps/toolgame.xpm"
35 #include "bitmaps/tooltime.xpm"
36 #include "bitmaps/toolword.xpm"
37 #include "bitmaps/small1.xpm"
40 #include "wx/imaglist.h"
41 #include "wx/listctrl.h"
42 #include "wx/timer.h" // for wxStopWatch
43 #include "wx/colordlg.h" // for wxGetColourFromUser
44 #include "wx/settings.h"
45 #include "wx/sysopt.h"
50 // ----------------------------------------------------------------------------
51 // Constants and globals
52 // ----------------------------------------------------------------------------
54 const wxChar
*SMALL_VIRTUAL_VIEW_ITEMS
[][2] =
56 { _T("Cat"), _T("meow") },
57 { _T("Cow"), _T("moo") },
58 { _T("Crow"), _T("caw") },
59 { _T("Dog"), _T("woof") },
60 { _T("Duck"), _T("quack") },
61 { _T("Mouse"), _T("squeak") },
62 { _T("Owl"), _T("hoo") },
63 { _T("Pig"), _T("oink") },
64 { _T("Pigeon"), _T("coo") },
65 { _T("Sheep"), _T("baaah") },
68 // number of items in list/report view
69 static const int NUM_ITEMS
= 10;
71 // number of items in icon/small icon view
72 static const int NUM_ICONS
= 9;
75 MyCompareFunction(long item1
, long item2
, wxIntPtr
WXUNUSED(sortData
))
87 // ----------------------------------------------------------------------------
89 // ----------------------------------------------------------------------------
93 // `Main program' equivalent, creating windows and returning main app frame
96 if ( !wxApp::OnInit() )
99 // Create the main frame window
100 MyFrame
*frame
= new MyFrame(wxT("wxListCtrl Test"));
112 // ----------------------------------------------------------------------------
114 // ----------------------------------------------------------------------------
116 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
117 EVT_SIZE(MyFrame::OnSize
)
119 EVT_MENU(LIST_QUIT
, MyFrame::OnQuit
)
120 EVT_MENU(LIST_ABOUT
, MyFrame::OnAbout
)
121 EVT_MENU(LIST_LIST_VIEW
, MyFrame::OnListView
)
122 EVT_MENU(LIST_REPORT_VIEW
, MyFrame::OnReportView
)
123 EVT_MENU(LIST_ICON_VIEW
, MyFrame::OnIconView
)
124 EVT_MENU(LIST_ICON_TEXT_VIEW
, MyFrame::OnIconTextView
)
125 EVT_MENU(LIST_SMALL_ICON_VIEW
, MyFrame::OnSmallIconView
)
126 EVT_MENU(LIST_SMALL_ICON_TEXT_VIEW
, MyFrame::OnSmallIconTextView
)
127 EVT_MENU(LIST_VIRTUAL_VIEW
, MyFrame::OnVirtualView
)
128 EVT_MENU(LIST_SMALL_VIRTUAL_VIEW
, MyFrame::OnSmallVirtualView
)
130 EVT_MENU(LIST_GOTO
, MyFrame::OnGoTo
)
131 EVT_MENU(LIST_FOCUS_LAST
, MyFrame::OnFocusLast
)
132 EVT_MENU(LIST_TOGGLE_FIRST
, MyFrame::OnToggleFirstSel
)
133 EVT_MENU(LIST_DESELECT_ALL
, MyFrame::OnDeselectAll
)
134 EVT_MENU(LIST_SELECT_ALL
, MyFrame::OnSelectAll
)
135 EVT_MENU(LIST_DELETE
, MyFrame::OnDelete
)
136 EVT_MENU(LIST_ADD
, MyFrame::OnAdd
)
137 EVT_MENU(LIST_EDIT
, MyFrame::OnEdit
)
138 EVT_MENU(LIST_DELETE_ALL
, MyFrame::OnDeleteAll
)
139 EVT_MENU(LIST_SORT
, MyFrame::OnSort
)
140 EVT_MENU(LIST_SET_FG_COL
, MyFrame::OnSetFgColour
)
141 EVT_MENU(LIST_SET_BG_COL
, MyFrame::OnSetBgColour
)
142 EVT_MENU(LIST_TOGGLE_MULTI_SEL
, MyFrame::OnToggleMultiSel
)
143 EVT_MENU(LIST_SHOW_COL_INFO
, MyFrame::OnShowColInfo
)
144 EVT_MENU(LIST_SHOW_SEL_INFO
, MyFrame::OnShowSelInfo
)
145 EVT_MENU(LIST_SHOW_VIEW_RECT
, MyFrame::OnShowViewRect
)
146 #ifdef wxHAS_LISTCTRL_COLUMN_ORDER
147 EVT_MENU(LIST_SET_COL_ORDER
, MyFrame::OnSetColOrder
)
148 EVT_MENU(LIST_GET_COL_ORDER
, MyFrame::OnGetColOrder
)
149 #endif // wxHAS_LISTCTRL_COLUMN_ORDER
150 EVT_MENU(LIST_FREEZE
, MyFrame::OnFreeze
)
151 EVT_MENU(LIST_THAW
, MyFrame::OnThaw
)
152 EVT_MENU(LIST_TOGGLE_LINES
, MyFrame::OnToggleLines
)
153 EVT_MENU(LIST_MAC_USE_GENERIC
, MyFrame::OnToggleMacUseGeneric
)
155 EVT_UPDATE_UI(LIST_SHOW_COL_INFO
, MyFrame::OnUpdateShowColInfo
)
156 EVT_UPDATE_UI(LIST_TOGGLE_MULTI_SEL
, MyFrame::OnUpdateToggleMultiSel
)
159 // My frame constructor
160 MyFrame::MyFrame(const wxChar
*title
)
161 : wxFrame(NULL
, wxID_ANY
, title
, wxDefaultPosition
, wxSize(600, 500))
165 m_smallVirtual
= false;
168 SetIcon( wxICON(mondrian
) );
170 // Make an image list containing large icons
171 m_imageListNormal
= new wxImageList(32, 32, true);
172 m_imageListSmall
= new wxImageList(16, 16, true);
175 m_imageListNormal
->Add( wxIcon(_T("icon1"), wxBITMAP_TYPE_ICO_RESOURCE
) );
176 m_imageListNormal
->Add( wxIcon(_T("icon2"), wxBITMAP_TYPE_ICO_RESOURCE
) );
177 m_imageListNormal
->Add( wxIcon(_T("icon3"), wxBITMAP_TYPE_ICO_RESOURCE
) );
178 m_imageListNormal
->Add( wxIcon(_T("icon4"), wxBITMAP_TYPE_ICO_RESOURCE
) );
179 m_imageListNormal
->Add( wxIcon(_T("icon5"), wxBITMAP_TYPE_ICO_RESOURCE
) );
180 m_imageListNormal
->Add( wxIcon(_T("icon6"), wxBITMAP_TYPE_ICO_RESOURCE
) );
181 m_imageListNormal
->Add( wxIcon(_T("icon7"), wxBITMAP_TYPE_ICO_RESOURCE
) );
182 m_imageListNormal
->Add( wxIcon(_T("icon8"), wxBITMAP_TYPE_ICO_RESOURCE
) );
183 m_imageListNormal
->Add( wxIcon(_T("icon9"), wxBITMAP_TYPE_ICO_RESOURCE
) );
185 m_imageListSmall
->Add( wxIcon(_T("iconsmall"), wxBITMAP_TYPE_ICO_RESOURCE
) );
188 m_imageListNormal
->Add( wxIcon( toolbrai_xpm
) );
189 m_imageListNormal
->Add( wxIcon( toolchar_xpm
) );
190 m_imageListNormal
->Add( wxIcon( tooldata_xpm
) );
191 m_imageListNormal
->Add( wxIcon( toolnote_xpm
) );
192 m_imageListNormal
->Add( wxIcon( tooltodo_xpm
) );
193 m_imageListNormal
->Add( wxIcon( toolchec_xpm
) );
194 m_imageListNormal
->Add( wxIcon( toolgame_xpm
) );
195 m_imageListNormal
->Add( wxIcon( tooltime_xpm
) );
196 m_imageListNormal
->Add( wxIcon( toolword_xpm
) );
198 m_imageListSmall
->Add( wxIcon( small1_xpm
) );
202 wxMenu
*menuFile
= new wxMenu
;
203 menuFile
->Append(LIST_ABOUT
, _T("&About"));
204 menuFile
->AppendSeparator();
205 menuFile
->Append(LIST_QUIT
, _T("E&xit\tAlt-X"));
207 wxMenu
*menuView
= new wxMenu
;
208 menuView
->Append(LIST_LIST_VIEW
, _T("&List view\tF1"));
209 menuView
->Append(LIST_REPORT_VIEW
, _T("&Report view\tF2"));
210 menuView
->Append(LIST_ICON_VIEW
, _T("&Icon view\tF3"));
211 menuView
->Append(LIST_ICON_TEXT_VIEW
, _T("Icon view with &text\tF4"));
212 menuView
->Append(LIST_SMALL_ICON_VIEW
, _T("&Small icon view\tF5"));
213 menuView
->Append(LIST_SMALL_ICON_TEXT_VIEW
, _T("Small icon &view with text\tF6"));
214 menuView
->Append(LIST_VIRTUAL_VIEW
, _T("&Virtual view\tF7"));
215 menuView
->Append(LIST_SMALL_VIRTUAL_VIEW
, _T("Small virtual vie&w\tF8"));
217 menuView
->AppendCheckItem(LIST_MAC_USE_GENERIC
, _T("Mac: Use Generic Control"));
220 wxMenu
*menuList
= new wxMenu
;
221 menuList
->Append(LIST_GOTO
, _T("&Go to item #3\tCtrl-3"));
222 menuList
->Append(LIST_FOCUS_LAST
, _T("&Make last item current\tCtrl-L"));
223 menuList
->Append(LIST_TOGGLE_FIRST
, _T("To&ggle first item\tCtrl-G"));
224 menuList
->Append(LIST_DESELECT_ALL
, _T("&Deselect All\tCtrl-D"));
225 menuList
->Append(LIST_SELECT_ALL
, _T("S&elect All\tCtrl-A"));
226 menuList
->AppendSeparator();
227 menuList
->Append(LIST_SHOW_COL_INFO
, _T("Show &column info\tCtrl-C"));
228 menuList
->Append(LIST_SHOW_SEL_INFO
, _T("Show &selected items\tCtrl-S"));
229 menuList
->Append(LIST_SHOW_VIEW_RECT
, _T("Show &view rect"));
230 #ifdef wxHAS_LISTCTRL_COLUMN_ORDER
231 menuList
->Append(LIST_SET_COL_ORDER
, _T("Se&t columns order\tShift-Ctrl-O"));
232 menuList
->Append(LIST_GET_COL_ORDER
, _T("Show&w columns order\tCtrl-O"));
233 #endif // wxHAS_LISTCTRL_COLUMN_ORDER
234 menuList
->AppendSeparator();
235 menuList
->Append(LIST_SORT
, _T("Sor&t\tCtrl-T"));
236 menuList
->AppendSeparator();
237 menuList
->Append(LIST_ADD
, _T("&Append an item\tCtrl-P"));
238 menuList
->Append(LIST_EDIT
, _T("&Edit the item\tCtrl-E"));
239 menuList
->Append(LIST_DELETE
, _T("&Delete first item\tCtrl-X"));
240 menuList
->Append(LIST_DELETE_ALL
, _T("Delete &all items"));
241 menuList
->AppendSeparator();
242 menuList
->Append(LIST_FREEZE
, _T("Free&ze\tCtrl-Z"));
243 menuList
->Append(LIST_THAW
, _T("Tha&w\tCtrl-W"));
244 menuList
->AppendSeparator();
245 menuList
->AppendCheckItem(LIST_TOGGLE_LINES
, _T("Toggle &lines\tCtrl-I"));
246 menuList
->Append(LIST_TOGGLE_MULTI_SEL
, _T("&Multiple selection\tCtrl-M"),
247 _T("Toggle multiple selection"), true);
249 wxMenu
*menuCol
= new wxMenu
;
250 menuCol
->Append(LIST_SET_FG_COL
, _T("&Foreground colour..."));
251 menuCol
->Append(LIST_SET_BG_COL
, _T("&Background colour..."));
253 wxMenuBar
*menubar
= new wxMenuBar
;
254 menubar
->Append(menuFile
, _T("&File"));
255 menubar
->Append(menuView
, _T("&View"));
256 menubar
->Append(menuList
, _T("&List"));
257 menubar
->Append(menuCol
, _T("&Colour"));
260 m_panel
= new wxPanel(this, wxID_ANY
);
261 m_logWindow
= new wxTextCtrl(m_panel
, wxID_ANY
, wxEmptyString
,
262 wxDefaultPosition
, wxDefaultSize
,
263 wxTE_READONLY
| wxTE_MULTILINE
| wxSUNKEN_BORDER
);
265 m_logOld
= wxLog::SetActiveTarget(new wxLogTextCtrl(m_logWindow
));
267 RecreateList(wxLC_REPORT
| wxLC_SINGLE_SEL
);
270 // this is useful to know specially when debugging :)
271 wxLogMessage("Your version of comctl32.dll is: %d",
272 wxApp::GetComCtl32Version());
277 #endif // wxUSE_STATUSBAR
282 delete wxLog::SetActiveTarget(m_logOld
);
284 delete m_imageListNormal
;
285 delete m_imageListSmall
;
288 void MyFrame::OnSize(wxSizeEvent
& event
)
295 void MyFrame::DoSize()
300 wxSize size
= GetClientSize();
301 wxCoord y
= (2*size
.y
)/3;
302 m_listCtrl
->SetSize(0, 0, size
.x
, y
);
303 m_logWindow
->SetSize(0, y
+ 1, size
.x
, size
.y
- y
-1);
306 bool MyFrame::CheckNonVirtual() const
308 if ( !m_listCtrl
->HasFlag(wxLC_VIRTUAL
) )
311 // "this" == whatever
312 wxLogWarning(_T("Can't do this in virtual view, sorry."));
317 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
322 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
324 wxMessageDialog
dialog(this, _T("List test sample\nJulian Smart (c) 1997"),
325 _T("About list test"), wxOK
|wxCANCEL
);
330 void MyFrame::OnFreeze(wxCommandEvent
& WXUNUSED(event
))
332 wxLogMessage(_T("Freezing the control"));
334 m_listCtrl
->Freeze();
337 void MyFrame::OnThaw(wxCommandEvent
& WXUNUSED(event
))
339 wxLogMessage(_T("Thawing the control"));
344 void MyFrame::OnToggleLines(wxCommandEvent
& event
)
346 m_listCtrl
->SetSingleStyle(wxLC_HRULES
| wxLC_VRULES
, event
.IsChecked());
349 void MyFrame::OnToggleMacUseGeneric(wxCommandEvent
& event
)
351 wxSystemOptions::SetOption(wxT("mac.listctrl.always_use_generic"), event
.IsChecked());
354 void MyFrame::OnGoTo(wxCommandEvent
& WXUNUSED(event
))
357 m_listCtrl
->SetItemState(index
, wxLIST_STATE_FOCUSED
, wxLIST_STATE_FOCUSED
);
359 long sel
= m_listCtrl
->GetNextItem(-1, wxLIST_NEXT_ALL
,
360 wxLIST_STATE_SELECTED
);
362 m_listCtrl
->SetItemState(sel
, 0, wxLIST_STATE_SELECTED
);
363 m_listCtrl
->SetItemState(index
, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
366 void MyFrame::OnFocusLast(wxCommandEvent
& WXUNUSED(event
))
368 long index
= m_listCtrl
->GetItemCount() - 1;
374 m_listCtrl
->SetItemState(index
, wxLIST_STATE_FOCUSED
, wxLIST_STATE_FOCUSED
);
375 m_listCtrl
->EnsureVisible(index
);
378 void MyFrame::OnToggleFirstSel(wxCommandEvent
& WXUNUSED(event
))
380 m_listCtrl
->SetItemState(0, (~m_listCtrl
->GetItemState(0, wxLIST_STATE_SELECTED
) ) & wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
383 void MyFrame::OnDeselectAll(wxCommandEvent
& WXUNUSED(event
))
385 if ( !CheckNonVirtual() )
388 int n
= m_listCtrl
->GetItemCount();
389 for (int i
= 0; i
< n
; i
++)
390 m_listCtrl
->SetItemState(i
,0,wxLIST_STATE_SELECTED
);
393 void MyFrame::OnSelectAll(wxCommandEvent
& WXUNUSED(event
))
395 if ( !CheckNonVirtual() )
398 int n
= m_listCtrl
->GetItemCount();
399 for (int i
= 0; i
< n
; i
++)
400 m_listCtrl
->SetItemState(i
,wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
403 // ----------------------------------------------------------------------------
404 // changing listctrl modes
405 // ----------------------------------------------------------------------------
407 void MyFrame::RecreateList(long flags
, bool withText
)
409 // we could avoid recreating it if we don't set/clear the wxLC_VIRTUAL
410 // style, but it is more trouble to do it than not
412 if ( !m_listCtrl
|| ((flags
& wxLC_VIRTUAL
) !=
413 (m_listCtrl
->GetWindowStyleFlag() & wxLC_VIRTUAL
)) )
418 m_listCtrl
= new MyListCtrl(m_panel
, LIST_CTRL
,
419 wxDefaultPosition
, wxDefaultSize
,
421 wxBORDER_THEME
| wxLC_EDIT_LABELS
);
423 switch ( flags
& wxLC_MASK_TYPE
)
430 InitWithIconItems(withText
);
433 case wxLC_SMALL_ICON
:
434 InitWithIconItems(withText
, true);
438 if ( flags
& wxLC_VIRTUAL
)
439 InitWithVirtualItems();
441 InitWithReportItems();
445 wxFAIL_MSG( _T("unknown listctrl mode") );
451 m_logWindow
->Clear();
454 void MyFrame::OnListView(wxCommandEvent
& WXUNUSED(event
))
456 RecreateList(wxLC_LIST
);
459 void MyFrame::InitWithListItems()
461 for ( int i
= 0; i
< NUM_ITEMS
; i
++ )
463 m_listCtrl
->InsertItem(i
, wxString::Format(_T("Item %d"), i
));
467 void MyFrame::OnReportView(wxCommandEvent
& WXUNUSED(event
))
469 RecreateList(wxLC_REPORT
);
472 void MyFrame::InitWithReportItems()
474 m_listCtrl
->SetImageList(m_imageListSmall
, wxIMAGE_LIST_SMALL
);
476 // note that under MSW for SetColumnWidth() to work we need to create the
477 // items with images initially even if we specify dummy image id
479 itemCol
.SetText(_T("Column 1"));
480 itemCol
.SetImage(-1);
481 m_listCtrl
->InsertColumn(0, itemCol
);
483 itemCol
.SetText(_T("Column 2"));
484 itemCol
.SetAlign(wxLIST_FORMAT_CENTRE
);
485 m_listCtrl
->InsertColumn(1, itemCol
);
487 itemCol
.SetText(_T("Column 3"));
488 itemCol
.SetAlign(wxLIST_FORMAT_RIGHT
);
489 m_listCtrl
->InsertColumn(2, itemCol
);
491 // to speed up inserting we hide the control temporarily
496 for ( int i
= 0; i
< NUM_ITEMS
; i
++ )
498 m_listCtrl
->InsertItemInReportView(i
);
501 m_logWindow
->WriteText(wxString::Format(_T("%d items inserted in %ldms\n"),
502 NUM_ITEMS
, sw
.Time()));
505 // we leave all mask fields to 0 and only change the colour
508 item
.SetTextColour(*wxRED
);
509 m_listCtrl
->SetItem( item
);
512 item
.SetTextColour(*wxGREEN
);
513 m_listCtrl
->SetItem( item
);
515 item
.SetTextColour(*wxLIGHT_GREY
);
516 item
.SetFont(*wxITALIC_FONT
);
517 item
.SetBackgroundColour(*wxRED
);
518 m_listCtrl
->SetItem( item
);
520 m_listCtrl
->SetTextColour(*wxBLUE
);
522 m_listCtrl
->SetColumnWidth( 0, wxLIST_AUTOSIZE
);
523 m_listCtrl
->SetColumnWidth( 1, wxLIST_AUTOSIZE
);
524 m_listCtrl
->SetColumnWidth( 2, wxLIST_AUTOSIZE
);
526 // Set images in columns
527 m_listCtrl
->SetItemColumnImage(1, 1, 0);
533 m_listCtrl
->SetItem(info
);
535 // test SetItemFont too
536 m_listCtrl
->SetItemFont(0, *wxITALIC_FONT
);
539 void MyFrame::InitWithIconItems(bool withText
, bool sameIcon
)
541 m_listCtrl
->SetImageList(m_imageListNormal
, wxIMAGE_LIST_NORMAL
);
542 m_listCtrl
->SetImageList(m_imageListSmall
, wxIMAGE_LIST_SMALL
);
544 for ( int i
= 0; i
< NUM_ICONS
; i
++ )
546 int image
= sameIcon
? 0 : i
;
550 m_listCtrl
->InsertItem(i
, wxString::Format(_T("Label %d"), i
),
555 m_listCtrl
->InsertItem(i
, image
);
560 void MyFrame::OnIconView(wxCommandEvent
& WXUNUSED(event
))
562 RecreateList(wxLC_ICON
, false);
565 void MyFrame::OnIconTextView(wxCommandEvent
& WXUNUSED(event
))
567 RecreateList(wxLC_ICON
);
570 void MyFrame::OnSmallIconView(wxCommandEvent
& WXUNUSED(event
))
572 RecreateList(wxLC_SMALL_ICON
, false);
575 void MyFrame::OnSmallIconTextView(wxCommandEvent
& WXUNUSED(event
))
577 RecreateList(wxLC_SMALL_ICON
);
580 void MyFrame::OnVirtualView(wxCommandEvent
& WXUNUSED(event
))
582 m_smallVirtual
= false;
583 RecreateList(wxLC_REPORT
| wxLC_VIRTUAL
);
586 void MyFrame::OnSmallVirtualView(wxCommandEvent
& WXUNUSED(event
))
588 m_smallVirtual
= true;
589 RecreateList(wxLC_REPORT
| wxLC_VIRTUAL
);
592 void MyFrame::InitWithVirtualItems()
594 m_listCtrl
->SetImageList(m_imageListSmall
, wxIMAGE_LIST_SMALL
);
596 if ( m_smallVirtual
)
598 m_listCtrl
->InsertColumn(0, _T("Animal"));
599 m_listCtrl
->InsertColumn(1, _T("Sound"));
600 m_listCtrl
->SetItemCount(WXSIZEOF(SMALL_VIRTUAL_VIEW_ITEMS
));
604 m_listCtrl
->InsertColumn(0, _T("First Column"));
605 m_listCtrl
->InsertColumn(1, _T("Second Column"));
606 m_listCtrl
->SetColumnWidth(0, 150);
607 m_listCtrl
->SetColumnWidth(1, 150);
608 m_listCtrl
->SetItemCount(1000000);
612 void MyFrame::OnSort(wxCommandEvent
& WXUNUSED(event
))
616 m_listCtrl
->SortItems(MyCompareFunction
, 0);
618 m_logWindow
->WriteText(wxString::Format(_T("Sorting %d items took %ld ms\n"),
619 m_listCtrl
->GetItemCount(),
623 void MyFrame::OnShowSelInfo(wxCommandEvent
& WXUNUSED(event
))
625 int selCount
= m_listCtrl
->GetSelectedItemCount();
626 wxLogMessage(_T("%d items selected:"), selCount
);
628 // don't show too many items
629 size_t shownCount
= 0;
631 long item
= m_listCtrl
->GetNextItem(-1, wxLIST_NEXT_ALL
,
632 wxLIST_STATE_SELECTED
);
635 wxLogMessage(_T("\t%ld (%s)"),
636 item
, m_listCtrl
->GetItemText(item
).c_str());
638 if ( ++shownCount
> 10 )
640 wxLogMessage(_T("\t... more selected items snipped..."));
644 item
= m_listCtrl
->GetNextItem(item
, wxLIST_NEXT_ALL
,
645 wxLIST_STATE_SELECTED
);
649 void MyFrame::OnShowViewRect(wxCommandEvent
& WXUNUSED(event
))
651 const wxRect r
= m_listCtrl
->GetViewRect();
652 wxLogMessage("View rect: (%d, %d)-(%d, %d)",
653 r
.GetLeft(), r
.GetTop(), r
.GetRight(), r
.GetBottom());
656 // ----------------------------------------------------------------------------
657 // column order tests
658 // ----------------------------------------------------------------------------
660 #ifdef wxHAS_LISTCTRL_COLUMN_ORDER
662 static wxString
DumpIntArray(const wxArrayInt
& a
)
665 const size_t count
= a
.size();
666 for ( size_t n
= 0; n
< count
; n
++ )
670 s
+= wxString::Format("%lu", (unsigned long)a
[n
]);
678 void MyFrame::OnSetColOrder(wxCommandEvent
& WXUNUSED(event
))
684 if ( m_listCtrl
->SetColumnsOrder(order
) )
685 wxLogMessage("Column order set to %s", DumpIntArray(order
));
688 void MyFrame::OnGetColOrder(wxCommandEvent
& WXUNUSED(event
))
690 // show what GetColumnsOrder() returns
691 const wxArrayInt order
= m_listCtrl
->GetColumnsOrder();
692 wxString msg
= "Columns order: " +
693 DumpIntArray(m_listCtrl
->GetColumnsOrder()) + "\n";
696 const int count
= m_listCtrl
->GetColumnCount();
698 // show the results of GetColumnOrder() for each column
699 msg
+= "GetColumnOrder() results:\n";
700 for ( n
= 0; n
< count
; n
++ )
702 msg
+= wxString::Format(" %2d -> %2d\n",
703 n
, m_listCtrl
->GetColumnOrder(n
));
706 // and the results of GetColumnIndexFromOrder() too
707 msg
+= "GetColumnIndexFromOrder() results:\n";
708 for ( n
= 0; n
< count
; n
++ )
710 msg
+= wxString::Format(" %2d -> %2d\n",
711 n
, m_listCtrl
->GetColumnIndexFromOrder(n
));
714 wxLogMessage("%s", msg
);
717 #endif // wxHAS_LISTCTRL_COLUMN_ORDER
719 void MyFrame::OnShowColInfo(wxCommandEvent
& WXUNUSED(event
))
721 int count
= m_listCtrl
->GetColumnCount();
722 wxLogMessage(wxT("%d columns:"), count
);
723 for ( int c
= 0; c
< count
; c
++ )
725 wxLogMessage(wxT("\tcolumn %d has width %d"), c
,
726 m_listCtrl
->GetColumnWidth(c
));
730 void MyFrame::OnUpdateShowColInfo(wxUpdateUIEvent
& event
)
732 event
.Enable( (m_listCtrl
->GetWindowStyleFlag() & wxLC_REPORT
) != 0 );
735 void MyFrame::OnToggleMultiSel(wxCommandEvent
& WXUNUSED(event
))
737 long flags
= m_listCtrl
->GetWindowStyleFlag();
738 if ( flags
& wxLC_SINGLE_SEL
)
739 flags
&= ~wxLC_SINGLE_SEL
;
741 flags
|= wxLC_SINGLE_SEL
;
743 m_logWindow
->WriteText(wxString::Format(wxT("Current selection mode: %sle\n"),
744 (flags
& wxLC_SINGLE_SEL
) ? _T("sing") : _T("multip")));
749 void MyFrame::OnUpdateToggleMultiSel(wxUpdateUIEvent
& event
)
751 event
.Check((m_listCtrl
->GetWindowStyleFlag() & wxLC_SINGLE_SEL
) == 0);
754 void MyFrame::OnSetFgColour(wxCommandEvent
& WXUNUSED(event
))
756 m_listCtrl
->SetForegroundColour(wxGetColourFromUser(this));
757 m_listCtrl
->Refresh();
760 void MyFrame::OnSetBgColour(wxCommandEvent
& WXUNUSED(event
))
762 m_listCtrl
->SetBackgroundColour(wxGetColourFromUser(this));
763 m_listCtrl
->Refresh();
766 void MyFrame::OnAdd(wxCommandEvent
& WXUNUSED(event
))
768 m_listCtrl
->InsertItem(m_listCtrl
->GetItemCount(), _T("Appended item"));
771 void MyFrame::OnEdit(wxCommandEvent
& WXUNUSED(event
))
773 long itemCur
= m_listCtrl
->GetNextItem(-1, wxLIST_NEXT_ALL
,
774 wxLIST_STATE_FOCUSED
);
778 m_listCtrl
->EditLabel(itemCur
);
782 m_logWindow
->WriteText(_T("No item to edit"));
786 void MyFrame::OnDelete(wxCommandEvent
& WXUNUSED(event
))
788 if ( m_listCtrl
->GetItemCount() )
790 m_listCtrl
->DeleteItem(0);
794 m_logWindow
->WriteText(_T("Nothing to delete"));
798 void MyFrame::OnDeleteAll(wxCommandEvent
& WXUNUSED(event
))
802 int itemCount
= m_listCtrl
->GetItemCount();
804 m_listCtrl
->DeleteAllItems();
806 m_logWindow
->WriteText(wxString::Format(_T("Deleting %d items took %ld ms\n"),
812 // ----------------------------------------------------------------------------
814 // ----------------------------------------------------------------------------
816 BEGIN_EVENT_TABLE(MyListCtrl
, wxListCtrl
)
817 EVT_LIST_BEGIN_DRAG(LIST_CTRL
, MyListCtrl::OnBeginDrag
)
818 EVT_LIST_BEGIN_RDRAG(LIST_CTRL
, MyListCtrl::OnBeginRDrag
)
819 EVT_LIST_BEGIN_LABEL_EDIT(LIST_CTRL
, MyListCtrl::OnBeginLabelEdit
)
820 EVT_LIST_END_LABEL_EDIT(LIST_CTRL
, MyListCtrl::OnEndLabelEdit
)
821 EVT_LIST_DELETE_ITEM(LIST_CTRL
, MyListCtrl::OnDeleteItem
)
822 EVT_LIST_DELETE_ALL_ITEMS(LIST_CTRL
, MyListCtrl::OnDeleteAllItems
)
823 EVT_LIST_ITEM_SELECTED(LIST_CTRL
, MyListCtrl::OnSelected
)
824 EVT_LIST_ITEM_DESELECTED(LIST_CTRL
, MyListCtrl::OnDeselected
)
825 EVT_LIST_KEY_DOWN(LIST_CTRL
, MyListCtrl::OnListKeyDown
)
826 EVT_LIST_ITEM_ACTIVATED(LIST_CTRL
, MyListCtrl::OnActivated
)
827 EVT_LIST_ITEM_FOCUSED(LIST_CTRL
, MyListCtrl::OnFocused
)
829 EVT_LIST_COL_CLICK(LIST_CTRL
, MyListCtrl::OnColClick
)
830 EVT_LIST_COL_RIGHT_CLICK(LIST_CTRL
, MyListCtrl::OnColRightClick
)
831 EVT_LIST_COL_BEGIN_DRAG(LIST_CTRL
, MyListCtrl::OnColBeginDrag
)
832 EVT_LIST_COL_DRAGGING(LIST_CTRL
, MyListCtrl::OnColDragging
)
833 EVT_LIST_COL_END_DRAG(LIST_CTRL
, MyListCtrl::OnColEndDrag
)
835 EVT_LIST_CACHE_HINT(LIST_CTRL
, MyListCtrl::OnCacheHint
)
838 EVT_CONTEXT_MENU(MyListCtrl::OnContextMenu
)
840 EVT_CHAR(MyListCtrl::OnChar
)
842 EVT_RIGHT_DOWN(MyListCtrl::OnRightClick
)
845 void MyListCtrl::OnCacheHint(wxListEvent
& event
)
847 wxLogMessage( wxT("OnCacheHint: cache items %ld..%ld"),
848 event
.GetCacheFrom(), event
.GetCacheTo() );
851 void MyListCtrl::SetColumnImage(int col
, int image
)
854 item
.SetMask(wxLIST_MASK_IMAGE
);
855 item
.SetImage(image
);
856 SetColumn(col
, item
);
859 void MyListCtrl::OnColClick(wxListEvent
& event
)
861 int col
= event
.GetColumn();
863 // set or unset image
864 static bool x
= false;
866 SetColumnImage(col
, x
? 0 : -1);
868 wxLogMessage( wxT("OnColumnClick at %d."), col
);
871 void MyListCtrl::OnColRightClick(wxListEvent
& event
)
873 int col
= event
.GetColumn();
876 SetColumnImage(col
, -1);
879 // Show popupmenu at position
880 wxMenu
menu(wxT("Test"));
881 menu
.Append(LIST_ABOUT
, _T("&About"));
882 PopupMenu(&menu
, event
.GetPoint());
884 wxLogMessage( wxT("OnColumnRightClick at %d."), event
.GetColumn() );
887 void MyListCtrl::LogColEvent(const wxListEvent
& event
, const wxChar
*name
)
889 const int col
= event
.GetColumn();
891 wxLogMessage(wxT("%s: column %d (width = %d or %d)."),
894 event
.GetItem().GetWidth(),
895 GetColumnWidth(col
));
898 void MyListCtrl::OnColBeginDrag(wxListEvent
& event
)
900 LogColEvent( event
, wxT("OnColBeginDrag") );
902 if ( event
.GetColumn() == 0 )
904 wxLogMessage(_T("Resizing this column shouldn't work."));
910 void MyListCtrl::OnColDragging(wxListEvent
& event
)
912 LogColEvent( event
, wxT("OnColDragging") );
915 void MyListCtrl::OnColEndDrag(wxListEvent
& event
)
917 LogColEvent( event
, wxT("OnColEndDrag") );
920 void MyListCtrl::OnBeginDrag(wxListEvent
& event
)
922 const wxPoint
& pt
= event
.m_pointDrag
;
925 wxLogMessage( wxT("OnBeginDrag at (%d, %d), item %ld."),
926 pt
.x
, pt
.y
, HitTest(pt
, flags
) );
929 void MyListCtrl::OnBeginRDrag(wxListEvent
& event
)
931 wxLogMessage( wxT("OnBeginRDrag at %d,%d."),
932 event
.m_pointDrag
.x
, event
.m_pointDrag
.y
);
935 void MyListCtrl::OnBeginLabelEdit(wxListEvent
& event
)
937 wxLogMessage( wxT("OnBeginLabelEdit: %s"), event
.m_item
.m_text
.c_str());
939 wxTextCtrl
* const text
= GetEditControl();
942 wxLogMessage("BUG: started to edit but no edit control");
946 wxLogMessage("Edit control value: \"%s\"", text
->GetValue());
950 void MyListCtrl::OnEndLabelEdit(wxListEvent
& event
)
952 wxLogMessage( wxT("OnEndLabelEdit: %s"),
954 event
.IsEditCancelled() ?
955 wxString("[cancelled]") :
961 void MyListCtrl::OnDeleteItem(wxListEvent
& event
)
963 LogEvent(event
, _T("OnDeleteItem"));
964 wxLogMessage( wxT("Number of items when delete event is sent: %d"), GetItemCount() );
967 void MyListCtrl::OnDeleteAllItems(wxListEvent
& event
)
969 LogEvent(event
, _T("OnDeleteAllItems"));
972 void MyListCtrl::OnSelected(wxListEvent
& event
)
974 LogEvent(event
, _T("OnSelected"));
976 if ( GetWindowStyle() & wxLC_REPORT
)
979 info
.m_itemId
= event
.m_itemIndex
;
981 info
.m_mask
= wxLIST_MASK_TEXT
;
984 wxLogMessage(wxT("Value of the 2nd field of the selected item: %s"),
985 info
.m_text
.c_str());
989 wxFAIL_MSG(wxT("wxListCtrl::GetItem() failed"));
994 void MyListCtrl::OnDeselected(wxListEvent
& event
)
996 LogEvent(event
, _T("OnDeselected"));
999 void MyListCtrl::OnActivated(wxListEvent
& event
)
1001 LogEvent(event
, _T("OnActivated"));
1004 void MyListCtrl::OnFocused(wxListEvent
& event
)
1006 LogEvent(event
, _T("OnFocused"));
1011 void MyListCtrl::OnListKeyDown(wxListEvent
& event
)
1015 switch ( event
.GetKeyCode() )
1017 case 'C': // colorize
1020 info
.m_itemId
= event
.GetIndex();
1021 if ( info
.m_itemId
== -1 )
1029 wxListItemAttr
*attr
= info
.GetAttributes();
1030 if ( !attr
|| !attr
->HasTextColour() )
1032 info
.SetTextColour(*wxCYAN
);
1036 RefreshItem(info
.m_itemId
);
1042 item
= GetNextItem(-1, wxLIST_NEXT_ALL
, wxLIST_STATE_FOCUSED
);
1043 if ( item
++ == GetItemCount() - 1 )
1048 wxLogMessage(_T("Focusing item %ld"), item
);
1050 SetItemState(item
, wxLIST_STATE_FOCUSED
, wxLIST_STATE_FOCUSED
);
1051 EnsureVisible(item
);
1054 case 'R': // show bounding rectangle
1056 item
= event
.GetIndex();
1058 if ( !GetItemRect(item
, r
) )
1060 wxLogError(_T("Failed to retrieve rect of item %ld"), item
);
1064 wxLogMessage(_T("Bounding rect of item %ld is (%d, %d)-(%d, %d)"),
1065 item
, r
.x
, r
.y
, r
.x
+ r
.width
, r
.y
+ r
.height
);
1069 case '1': // show sub item bounding rectangle
1072 case '4': // this column is invalid but we want to test it too
1073 if ( InReportView() )
1075 int subItem
= event
.GetKeyCode() - '1';
1076 item
= event
.GetIndex();
1078 if ( !GetSubItemRect(item
, subItem
, r
) )
1080 wxLogError(_T("Failed to retrieve rect of item %ld column %d"), item
, subItem
+ 1);
1084 wxLogMessage(_T("Bounding rect of item %ld column %d is (%d, %d)-(%d, %d)"),
1086 r
.x
, r
.y
, r
.x
+ r
.width
, r
.y
+ r
.height
);
1094 if ( m_updated
!= -1 )
1095 RefreshItem(m_updated
);
1097 m_updated
= event
.GetIndex();
1098 if ( m_updated
!= -1 )
1100 // we won't see changes to this item as it's selected, update
1101 // the next one (or the first one if we're on the last item)
1102 if ( ++m_updated
== GetItemCount() )
1105 wxLogMessage("Updating colour of the item %ld", m_updated
);
1106 RefreshItem(m_updated
);
1111 item
= GetNextItem(-1, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1112 while ( item
!= -1 )
1116 wxLogMessage(_T("Item %ld deleted"), item
);
1118 // -1 because the indices were shifted by DeleteItem()
1119 item
= GetNextItem(item
- 1,
1120 wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
);
1125 if ( GetWindowStyle() & wxLC_REPORT
)
1127 if ( GetWindowStyle() & wxLC_VIRTUAL
)
1129 SetItemCount(GetItemCount() + 1);
1133 InsertItemInReportView(event
.GetIndex());
1136 //else: fall through
1139 LogEvent(event
, _T("OnListKeyDown"));
1145 void MyListCtrl::OnChar(wxKeyEvent
& event
)
1147 wxLogMessage(_T("Got char event."));
1149 switch ( event
.GetKeyCode() )
1163 // these are the keys we process ourselves
1171 void MyListCtrl::OnRightClick(wxMouseEvent
& event
)
1173 if ( !event
.ControlDown() )
1181 long item
= HitTest(event
.GetPosition(), flags
, &subitem
);
1186 case wxLIST_HITTEST_ABOVE
: where
= _T("above"); break;
1187 case wxLIST_HITTEST_BELOW
: where
= _T("below"); break;
1188 case wxLIST_HITTEST_NOWHERE
: where
= _T("nowhere near"); break;
1189 case wxLIST_HITTEST_ONITEMICON
: where
= _T("on icon of"); break;
1190 case wxLIST_HITTEST_ONITEMLABEL
: where
= _T("on label of"); break;
1191 case wxLIST_HITTEST_ONITEMRIGHT
: where
= _T("right on"); break;
1192 case wxLIST_HITTEST_TOLEFT
: where
= _T("to the left of"); break;
1193 case wxLIST_HITTEST_TORIGHT
: where
= _T("to the right of"); break;
1194 default: where
= _T("not clear exactly where on"); break;
1197 wxLogMessage(_T("Right double click %s item %ld, subitem %ld"),
1198 where
.c_str(), item
, subitem
);
1201 void MyListCtrl::LogEvent(const wxListEvent
& event
, const wxChar
*eventName
)
1203 wxLogMessage(_T("Item %ld: %s (item text = %s, data = %ld)"),
1204 event
.GetIndex(), eventName
,
1205 event
.GetText().c_str(), event
.GetData());
1208 wxString
MyListCtrl::OnGetItemText(long item
, long column
) const
1210 if ( GetItemCount() == WXSIZEOF(SMALL_VIRTUAL_VIEW_ITEMS
) )
1212 return SMALL_VIRTUAL_VIEW_ITEMS
[item
][column
];
1214 else // "big" virtual control
1216 return wxString::Format(_T("Column %ld of item %ld"), column
, item
);
1220 int MyListCtrl::OnGetItemColumnImage(long item
, long column
) const
1225 if (!(item
% 3) && column
== 1)
1231 wxListItemAttr
*MyListCtrl::OnGetItemAttr(long item
) const
1233 // test to check that RefreshItem() works correctly: when m_updated is
1234 // set to some item and it is refreshed, we highlight the item
1235 if ( item
== m_updated
)
1237 static wxListItemAttr
s_attrHighlight(*wxRED
, wxNullColour
, wxNullFont
);
1238 return &s_attrHighlight
;
1241 return item
% 2 ? NULL
: (wxListItemAttr
*)&m_attr
;
1244 void MyListCtrl::InsertItemInReportView(int i
)
1247 buf
.Printf(_T("This is item %d"), i
);
1248 long tmp
= InsertItem(i
, buf
, 0);
1249 SetItemData(tmp
, i
);
1251 buf
.Printf(_T("Col 1, item %d"), i
);
1252 SetItem(tmp
, 1, buf
);
1254 buf
.Printf(_T("Item %d in column 2"), i
);
1255 SetItem(tmp
, 2, buf
);
1258 #if USE_CONTEXT_MENU
1259 void MyListCtrl::OnContextMenu(wxContextMenuEvent
& event
)
1261 if (GetEditControl() == NULL
)
1263 wxPoint point
= event
.GetPosition();
1265 if ( (point
.x
== -1) && (point
.y
== -1) )
1267 wxSize size
= GetSize();
1268 point
.x
= size
.x
/ 2;
1269 point
.y
= size
.y
/ 2;
1273 point
= ScreenToClient(point
);
1275 ShowContextMenu(point
);
1279 // the user is editing:
1280 // allow the text control to display its context menu
1281 // if it has one (it has on Windows) rather than display our one
1287 void MyListCtrl::ShowContextMenu(const wxPoint
& pos
)
1291 menu
.Append(wxID_ABOUT
, _T("&About"));
1292 menu
.AppendSeparator();
1293 menu
.Append(wxID_EXIT
, _T("E&xit"));
1295 PopupMenu(&menu
, pos
.x
, pos
.y
);