Deprecations
[wxWidgets.git] / samples / listctrl / listtest.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: listctrl.cpp
3 // Purpose: wxListCtrl sample
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation
14 #pragma interface
15 #endif
16
17 // For compilers that support precompilation, includes "wx/wx.h".
18 #include "wx/wxprec.h"
19
20 #ifdef __BORLANDC__
21 #pragma hdrstop
22 #endif
23
24 #ifndef WX_PRECOMP
25 #include "wx/wx.h"
26 #endif
27
28 #ifndef __WXMSW__
29 #include "mondrian.xpm"
30
31 #include "bitmaps/toolbrai.xpm"
32 #include "bitmaps/toolchar.xpm"
33 #include "bitmaps/tooldata.xpm"
34 #include "bitmaps/toolnote.xpm"
35 #include "bitmaps/tooltodo.xpm"
36 #include "bitmaps/toolchec.xpm"
37 #include "bitmaps/toolgame.xpm"
38 #include "bitmaps/tooltime.xpm"
39 #include "bitmaps/toolword.xpm"
40 #include "bitmaps/small1.xpm"
41 #endif
42
43 #include "wx/imaglist.h"
44 #include "wx/listctrl.h"
45 #include "wx/timer.h" // for wxStopWatch
46 #include "wx/colordlg.h" // for wxGetColourFromUser
47
48 #include "listtest.h"
49
50 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
51 EVT_SIZE(MyFrame::OnSize)
52
53 EVT_MENU(LIST_QUIT, MyFrame::OnQuit)
54 EVT_MENU(LIST_ABOUT, MyFrame::OnAbout)
55 EVT_MENU(LIST_LIST_VIEW, MyFrame::OnListView)
56 EVT_MENU(LIST_REPORT_VIEW, MyFrame::OnReportView)
57 EVT_MENU(LIST_ICON_VIEW, MyFrame::OnIconView)
58 EVT_MENU(LIST_ICON_TEXT_VIEW, MyFrame::OnIconTextView)
59 EVT_MENU(LIST_SMALL_ICON_VIEW, MyFrame::OnSmallIconView)
60 EVT_MENU(LIST_SMALL_ICON_TEXT_VIEW, MyFrame::OnSmallIconTextView)
61 EVT_MENU(LIST_VIRTUAL_VIEW, MyFrame::OnVirtualView)
62
63 EVT_MENU(LIST_FOCUS_LAST, MyFrame::OnFocusLast)
64 EVT_MENU(LIST_TOGGLE_FIRST, MyFrame::OnToggleFirstSel)
65 EVT_MENU(LIST_DESELECT_ALL, MyFrame::OnDeselectAll)
66 EVT_MENU(LIST_SELECT_ALL, MyFrame::OnSelectAll)
67 EVT_MENU(LIST_DELETE, MyFrame::OnDelete)
68 EVT_MENU(LIST_ADD, MyFrame::OnAdd)
69 EVT_MENU(LIST_EDIT, MyFrame::OnEdit)
70 EVT_MENU(LIST_DELETE_ALL, MyFrame::OnDeleteAll)
71 EVT_MENU(LIST_SORT, MyFrame::OnSort)
72 EVT_MENU(LIST_SET_FG_COL, MyFrame::OnSetFgColour)
73 EVT_MENU(LIST_SET_BG_COL, MyFrame::OnSetBgColour)
74 EVT_MENU(LIST_TOGGLE_MULTI_SEL, MyFrame::OnToggleMultiSel)
75 EVT_MENU(LIST_SHOW_COL_INFO, MyFrame::OnShowColInfo)
76 EVT_MENU(LIST_SHOW_SEL_INFO, MyFrame::OnShowSelInfo)
77 EVT_MENU(LIST_FREEZE, MyFrame::OnFreeze)
78 EVT_MENU(LIST_THAW, MyFrame::OnThaw)
79 EVT_MENU(LIST_TOGGLE_LINES, MyFrame::OnToggleLines)
80
81 EVT_UPDATE_UI(LIST_SHOW_COL_INFO, MyFrame::OnUpdateShowColInfo)
82 EVT_UPDATE_UI(LIST_TOGGLE_MULTI_SEL, MyFrame::OnUpdateToggleMultiSel)
83 END_EVENT_TABLE()
84
85 BEGIN_EVENT_TABLE(MyListCtrl, wxListCtrl)
86 EVT_LIST_BEGIN_DRAG(LIST_CTRL, MyListCtrl::OnBeginDrag)
87 EVT_LIST_BEGIN_RDRAG(LIST_CTRL, MyListCtrl::OnBeginRDrag)
88 EVT_LIST_BEGIN_LABEL_EDIT(LIST_CTRL, MyListCtrl::OnBeginLabelEdit)
89 EVT_LIST_END_LABEL_EDIT(LIST_CTRL, MyListCtrl::OnEndLabelEdit)
90 EVT_LIST_DELETE_ITEM(LIST_CTRL, MyListCtrl::OnDeleteItem)
91 EVT_LIST_DELETE_ALL_ITEMS(LIST_CTRL, MyListCtrl::OnDeleteAllItems)
92 #if WXWIN_COMPATIBILITY_2_4
93 EVT_LIST_GET_INFO(LIST_CTRL, MyListCtrl::OnGetInfo)
94 EVT_LIST_SET_INFO(LIST_CTRL, MyListCtrl::OnSetInfo)
95 #endif
96 EVT_LIST_ITEM_SELECTED(LIST_CTRL, MyListCtrl::OnSelected)
97 EVT_LIST_ITEM_DESELECTED(LIST_CTRL, MyListCtrl::OnDeselected)
98 EVT_LIST_KEY_DOWN(LIST_CTRL, MyListCtrl::OnListKeyDown)
99 EVT_LIST_ITEM_ACTIVATED(LIST_CTRL, MyListCtrl::OnActivated)
100 EVT_LIST_ITEM_FOCUSED(LIST_CTRL, MyListCtrl::OnFocused)
101
102 EVT_LIST_COL_CLICK(LIST_CTRL, MyListCtrl::OnColClick)
103 EVT_LIST_COL_RIGHT_CLICK(LIST_CTRL, MyListCtrl::OnColRightClick)
104 EVT_LIST_COL_BEGIN_DRAG(LIST_CTRL, MyListCtrl::OnColBeginDrag)
105 EVT_LIST_COL_DRAGGING(LIST_CTRL, MyListCtrl::OnColDragging)
106 EVT_LIST_COL_END_DRAG(LIST_CTRL, MyListCtrl::OnColEndDrag)
107
108 EVT_LIST_CACHE_HINT(LIST_CTRL, MyListCtrl::OnCacheHint)
109
110 EVT_CHAR(MyListCtrl::OnChar)
111 END_EVENT_TABLE()
112
113 IMPLEMENT_APP(MyApp)
114
115 // number of items in list/report view
116 static const int NUM_ITEMS = 30;
117
118 // number of items in icon/small icon view
119 static const int NUM_ICONS = 9;
120
121 int wxCALLBACK MyCompareFunction(long item1, long item2, long WXUNUSED(sortData))
122 {
123 // inverse the order
124 if (item1 < item2)
125 return -1;
126 if (item1 > item2)
127 return 1;
128
129 return 0;
130 }
131
132 // `Main program' equivalent, creating windows and returning main app frame
133 bool MyApp::OnInit()
134 {
135 // Create the main frame window
136 MyFrame *frame = new MyFrame(wxT("wxListCtrl Test"), 50, 50, 450, 340);
137
138 // Show the frame
139 frame->Show(true);
140
141 SetTopWindow(frame);
142
143 return true;
144 }
145
146 // My frame constructor
147 MyFrame::MyFrame(const wxChar *title, int x, int y, int w, int h)
148 : wxFrame((wxFrame *)NULL, wxID_ANY, title, wxPoint(x, y), wxSize(w, h))
149 {
150 m_listCtrl = (MyListCtrl *) NULL;
151 m_logWindow = (wxTextCtrl *) NULL;
152
153 // Give it an icon
154 SetIcon( wxICON(mondrian) );
155
156 // Make an image list containing large icons
157 m_imageListNormal = new wxImageList(32, 32, true);
158 m_imageListSmall = new wxImageList(16, 16, true);
159
160 #ifdef __WXMSW__
161 m_imageListNormal->Add( wxIcon(_T("icon1"), wxBITMAP_TYPE_ICO_RESOURCE) );
162 m_imageListNormal->Add( wxIcon(_T("icon2"), wxBITMAP_TYPE_ICO_RESOURCE) );
163 m_imageListNormal->Add( wxIcon(_T("icon3"), wxBITMAP_TYPE_ICO_RESOURCE) );
164 m_imageListNormal->Add( wxIcon(_T("icon4"), wxBITMAP_TYPE_ICO_RESOURCE) );
165 m_imageListNormal->Add( wxIcon(_T("icon5"), wxBITMAP_TYPE_ICO_RESOURCE) );
166 m_imageListNormal->Add( wxIcon(_T("icon6"), wxBITMAP_TYPE_ICO_RESOURCE) );
167 m_imageListNormal->Add( wxIcon(_T("icon7"), wxBITMAP_TYPE_ICO_RESOURCE) );
168 m_imageListNormal->Add( wxIcon(_T("icon8"), wxBITMAP_TYPE_ICO_RESOURCE) );
169 m_imageListNormal->Add( wxIcon(_T("icon9"), wxBITMAP_TYPE_ICO_RESOURCE) );
170
171 m_imageListSmall->Add( wxIcon(_T("iconsmall"), wxBITMAP_TYPE_ICO_RESOURCE) );
172
173 #else
174 m_imageListNormal->Add( wxIcon( toolbrai_xpm ) );
175 m_imageListNormal->Add( wxIcon( toolchar_xpm ) );
176 m_imageListNormal->Add( wxIcon( tooldata_xpm ) );
177 m_imageListNormal->Add( wxIcon( toolnote_xpm ) );
178 m_imageListNormal->Add( wxIcon( tooltodo_xpm ) );
179 m_imageListNormal->Add( wxIcon( toolchec_xpm ) );
180 m_imageListNormal->Add( wxIcon( toolgame_xpm ) );
181 m_imageListNormal->Add( wxIcon( tooltime_xpm ) );
182 m_imageListNormal->Add( wxIcon( toolword_xpm ) );
183
184 m_imageListSmall->Add( wxIcon( small1_xpm) );
185 #endif
186
187 // Make a menubar
188 wxMenu *menuFile = new wxMenu;
189 menuFile->Append(LIST_ABOUT, _T("&About"));
190 menuFile->AppendSeparator();
191 menuFile->Append(LIST_QUIT, _T("E&xit\tAlt-X"));
192
193 wxMenu *menuView = new wxMenu;
194 menuView->Append(LIST_LIST_VIEW, _T("&List view\tF1"));
195 menuView->Append(LIST_REPORT_VIEW, _T("&Report view\tF2"));
196 menuView->Append(LIST_ICON_VIEW, _T("&Icon view\tF3"));
197 menuView->Append(LIST_ICON_TEXT_VIEW, _T("Icon view with &text\tF4"));
198 menuView->Append(LIST_SMALL_ICON_VIEW, _T("&Small icon view\tF5"));
199 menuView->Append(LIST_SMALL_ICON_TEXT_VIEW, _T("Small icon &view with text\tF6"));
200 menuView->Append(LIST_VIRTUAL_VIEW, _T("Virtual view\tF7"));
201
202 wxMenu *menuList = new wxMenu;
203 menuList->Append(LIST_FOCUS_LAST, _T("&Make last item current\tCtrl-L"));
204 menuList->Append(LIST_TOGGLE_FIRST, _T("To&ggle first item\tCtrl-G"));
205 menuList->Append(LIST_DESELECT_ALL, _T("&Deselect All\tCtrl-D"));
206 menuList->Append(LIST_SELECT_ALL, _T("S&elect All\tCtrl-A"));
207 menuList->AppendSeparator();
208 menuList->Append(LIST_SHOW_COL_INFO, _T("Show &column info\tCtrl-C"));
209 menuList->Append(LIST_SHOW_SEL_INFO, _T("Show &selected items\tCtrl-S"));
210 menuList->AppendSeparator();
211 menuList->Append(LIST_SORT, _T("&Sort\tCtrl-S"));
212 menuList->AppendSeparator();
213 menuList->Append(LIST_ADD, _T("&Append an item\tCtrl-P"));
214 menuList->Append(LIST_EDIT, _T("&Edit the item\tCtrl-E"));
215 menuList->Append(LIST_DELETE, _T("&Delete first item\tCtrl-X"));
216 menuList->Append(LIST_DELETE_ALL, _T("Delete &all items"));
217 menuList->AppendSeparator();
218 menuList->Append(LIST_FREEZE, _T("Free&ze\tCtrl-Z"));
219 menuList->Append(LIST_THAW, _T("Tha&w\tCtrl-W"));
220 menuList->AppendSeparator();
221 menuList->AppendCheckItem(LIST_TOGGLE_LINES, _T("Toggle &lines\tCtrl-I"));
222 menuList->Append(LIST_TOGGLE_MULTI_SEL, _T("&Multiple selection\tCtrl-M"),
223 _T("Toggle multiple selection"), true);
224
225 wxMenu *menuCol = new wxMenu;
226 menuCol->Append(LIST_SET_FG_COL, _T("&Foreground colour..."));
227 menuCol->Append(LIST_SET_BG_COL, _T("&Background colour..."));
228
229 wxMenuBar *menubar = new wxMenuBar;
230 menubar->Append(menuFile, _T("&File"));
231 menubar->Append(menuView, _T("&View"));
232 menubar->Append(menuList, _T("&List"));
233 menubar->Append(menuCol, _T("&Colour"));
234 SetMenuBar(menubar);
235
236 m_panel = new wxPanel(this, wxID_ANY);
237 m_logWindow = new wxTextCtrl(m_panel, wxID_ANY, wxEmptyString,
238 wxDefaultPosition, wxDefaultSize,
239 wxTE_MULTILINE | wxSUNKEN_BORDER);
240
241 m_logOld = wxLog::SetActiveTarget(new wxLogTextCtrl(m_logWindow));
242
243 RecreateList(wxLC_REPORT | wxLC_SINGLE_SEL);
244
245 #if wxUSE_STATUSBAR
246 CreateStatusBar(3);
247 #endif // wxUSE_STATUSBAR
248 }
249
250 MyFrame::~MyFrame()
251 {
252 delete wxLog::SetActiveTarget(m_logOld);
253
254 delete m_imageListNormal;
255 delete m_imageListSmall;
256 }
257
258 void MyFrame::OnSize(wxSizeEvent& event)
259 {
260 DoSize();
261
262 event.Skip();
263 }
264
265 void MyFrame::DoSize()
266 {
267 if ( !m_logWindow )
268 return;
269
270 wxSize size = GetClientSize();
271 wxCoord y = (2*size.y)/3;
272 m_listCtrl->SetSize(0, 0, size.x, y);
273 m_logWindow->SetSize(0, y + 1, size.x, size.y - y);
274 }
275
276 bool MyFrame::CheckNonVirtual() const
277 {
278 if ( !m_listCtrl->HasFlag(wxLC_VIRTUAL) )
279 return true;
280
281 // "this" == whatever
282 wxLogWarning(_T("Can't do this in virtual view, sorry."));
283
284 return false;
285 }
286
287 void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
288 {
289 Close(true);
290 }
291
292 void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
293 {
294 wxMessageDialog dialog(this, _T("List test sample\nJulian Smart (c) 1997"),
295 _T("About list test"), wxOK|wxCANCEL);
296
297 dialog.ShowModal();
298 }
299
300 void MyFrame::OnFreeze(wxCommandEvent& WXUNUSED(event))
301 {
302 wxLogMessage(_T("Freezing the control"));
303
304 m_listCtrl->Freeze();
305 }
306
307 void MyFrame::OnThaw(wxCommandEvent& WXUNUSED(event))
308 {
309 wxLogMessage(_T("Thawing the control"));
310
311 m_listCtrl->Thaw();
312 }
313
314 void MyFrame::OnToggleLines(wxCommandEvent& event)
315 {
316 m_listCtrl->SetSingleStyle(wxLC_HRULES | wxLC_VRULES, event.IsChecked());
317 }
318
319 void MyFrame::OnFocusLast(wxCommandEvent& WXUNUSED(event))
320 {
321 long index = m_listCtrl->GetItemCount() - 1;
322 if ( index == -1 )
323 {
324 return;
325 }
326
327 m_listCtrl->SetItemState(index, wxLIST_STATE_FOCUSED, wxLIST_STATE_FOCUSED);
328 m_listCtrl->EnsureVisible(index);
329 }
330
331 void MyFrame::OnToggleFirstSel(wxCommandEvent& WXUNUSED(event))
332 {
333 m_listCtrl->SetItemState(0, (~m_listCtrl->GetItemState(0, wxLIST_STATE_SELECTED) ) & wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
334 }
335
336 void MyFrame::OnDeselectAll(wxCommandEvent& WXUNUSED(event))
337 {
338 if ( !CheckNonVirtual() )
339 return;
340
341 int n = m_listCtrl->GetItemCount();
342 for (int i = 0; i < n; i++)
343 m_listCtrl->SetItemState(i,0,wxLIST_STATE_SELECTED);
344 }
345
346 void MyFrame::OnSelectAll(wxCommandEvent& WXUNUSED(event))
347 {
348 if ( !CheckNonVirtual() )
349 return;
350
351 int n = m_listCtrl->GetItemCount();
352 for (int i = 0; i < n; i++)
353 m_listCtrl->SetItemState(i,wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
354 }
355
356 // ----------------------------------------------------------------------------
357 // changing listctrl modes
358 // ----------------------------------------------------------------------------
359
360 void MyFrame::RecreateList(long flags, bool withText)
361 {
362 // we could avoid recreating it if we don't set/clear the wxLC_VIRTUAL
363 // style, but it is more trouble to do it than not
364 #if 0
365 if ( !m_listCtrl || ((flags & wxLC_VIRTUAL) !=
366 (m_listCtrl->GetWindowStyleFlag() & wxLC_VIRTUAL)) )
367 #endif
368 {
369 delete m_listCtrl;
370
371 m_listCtrl = new MyListCtrl(m_panel, LIST_CTRL,
372 wxDefaultPosition, wxDefaultSize,
373 flags |
374 wxSUNKEN_BORDER | wxLC_EDIT_LABELS);
375
376 switch ( flags & wxLC_MASK_TYPE )
377 {
378 case wxLC_LIST:
379 InitWithListItems();
380 break;
381
382 case wxLC_ICON:
383 InitWithIconItems(withText);
384 break;
385
386 case wxLC_SMALL_ICON:
387 InitWithIconItems(withText, true);
388 break;
389
390 case wxLC_REPORT:
391 if ( flags & wxLC_VIRTUAL )
392 InitWithVirtualItems();
393 else
394 InitWithReportItems();
395 break;
396
397 default:
398 wxFAIL_MSG( _T("unknown listctrl mode") );
399 }
400 }
401
402 DoSize();
403
404 m_logWindow->Clear();
405 }
406
407 void MyFrame::OnListView(wxCommandEvent& WXUNUSED(event))
408 {
409 RecreateList(wxLC_LIST);
410 }
411
412 void MyFrame::InitWithListItems()
413 {
414 for ( int i = 0; i < NUM_ITEMS; i++ )
415 {
416 m_listCtrl->InsertItem(i, wxString::Format(_T("Item %d"), i));
417 }
418 }
419
420 void MyFrame::OnReportView(wxCommandEvent& WXUNUSED(event))
421 {
422 RecreateList(wxLC_REPORT);
423 }
424
425 void MyFrame::InitWithReportItems()
426 {
427 m_listCtrl->SetImageList(m_imageListSmall, wxIMAGE_LIST_SMALL);
428
429 // note that under MSW for SetColumnWidth() to work we need to create the
430 // items with images initially even if we specify dummy image id
431 wxListItem itemCol;
432 itemCol.SetText(_T("Column 1"));
433 itemCol.SetImage(-1);
434 m_listCtrl->InsertColumn(0, itemCol);
435
436 itemCol.SetText(_T("Column 2"));
437 itemCol.SetAlign(wxLIST_FORMAT_CENTRE);
438 m_listCtrl->InsertColumn(1, itemCol);
439
440 itemCol.SetText(_T("Column 3"));
441 itemCol.SetAlign(wxLIST_FORMAT_RIGHT);
442 m_listCtrl->InsertColumn(2, itemCol);
443
444 // to speed up inserting we hide the control temporarily
445 m_listCtrl->Hide();
446
447 wxStopWatch sw;
448
449 for ( int i = 0; i < NUM_ITEMS; i++ )
450 {
451 m_listCtrl->InsertItemInReportView(i);
452 }
453
454 m_logWindow->WriteText(wxString::Format(_T("%d items inserted in %ldms\n"),
455 NUM_ITEMS, sw.Time()));
456 m_listCtrl->Show();
457
458 // we leave all mask fields to 0 and only change the colour
459 wxListItem item;
460 item.m_itemId = 0;
461 item.SetTextColour(*wxRED);
462 m_listCtrl->SetItem( item );
463
464 item.m_itemId = 2;
465 item.SetTextColour(*wxGREEN);
466 m_listCtrl->SetItem( item );
467 item.m_itemId = 4;
468 item.SetTextColour(*wxLIGHT_GREY);
469 item.SetFont(*wxITALIC_FONT);
470 item.SetBackgroundColour(*wxRED);
471 m_listCtrl->SetItem( item );
472
473 m_listCtrl->SetTextColour(*wxBLUE);
474 m_listCtrl->SetBackgroundColour(*wxLIGHT_GREY);
475
476 m_listCtrl->SetColumnWidth( 0, wxLIST_AUTOSIZE );
477 m_listCtrl->SetColumnWidth( 1, wxLIST_AUTOSIZE );
478 m_listCtrl->SetColumnWidth( 2, wxLIST_AUTOSIZE );
479 }
480
481 void MyFrame::InitWithIconItems(bool withText, bool sameIcon)
482 {
483 m_listCtrl->SetImageList(m_imageListNormal, wxIMAGE_LIST_NORMAL);
484 m_listCtrl->SetImageList(m_imageListSmall, wxIMAGE_LIST_SMALL);
485
486 for ( int i = 0; i < NUM_ICONS; i++ )
487 {
488 int image = sameIcon ? 0 : i;
489
490 if ( withText )
491 {
492 m_listCtrl->InsertItem(i, wxString::Format(_T("Label %d"), i),
493 image);
494 }
495 else
496 {
497 m_listCtrl->InsertItem(i, image);
498 }
499 }
500 }
501
502 void MyFrame::OnIconView(wxCommandEvent& WXUNUSED(event))
503 {
504 RecreateList(wxLC_ICON, false);
505 }
506
507 void MyFrame::OnIconTextView(wxCommandEvent& WXUNUSED(event))
508 {
509 RecreateList(wxLC_ICON);
510 }
511
512 void MyFrame::OnSmallIconView(wxCommandEvent& WXUNUSED(event))
513 {
514 RecreateList(wxLC_SMALL_ICON, false);
515 }
516
517 void MyFrame::OnSmallIconTextView(wxCommandEvent& WXUNUSED(event))
518 {
519 RecreateList(wxLC_SMALL_ICON);
520 }
521
522 void MyFrame::OnVirtualView(wxCommandEvent& WXUNUSED(event))
523 {
524 RecreateList(wxLC_REPORT | wxLC_VIRTUAL);
525 }
526
527 void MyFrame::InitWithVirtualItems()
528 {
529 m_listCtrl->SetImageList(m_imageListSmall, wxIMAGE_LIST_SMALL);
530
531 m_listCtrl->InsertColumn(0, _T("First Column"));
532 m_listCtrl->InsertColumn(1, _T("Second Column"));
533 m_listCtrl->SetColumnWidth(0, 150);
534 m_listCtrl->SetColumnWidth(1, 150);
535
536 m_listCtrl->SetItemCount(1000000);
537 }
538
539 void MyFrame::OnSort(wxCommandEvent& WXUNUSED(event))
540 {
541 wxStopWatch sw;
542
543 m_listCtrl->SortItems(MyCompareFunction, 0);
544
545 m_logWindow->WriteText(wxString::Format(_T("Sorting %d items took %ld ms\n"),
546 m_listCtrl->GetItemCount(),
547 sw.Time()));
548 }
549
550 void MyFrame::OnShowSelInfo(wxCommandEvent& WXUNUSED(event))
551 {
552 int selCount = m_listCtrl->GetSelectedItemCount();
553 wxLogMessage(_T("%d items selected:"), selCount);
554
555 // don't show too many items
556 size_t shownCount = 0;
557
558 long item = m_listCtrl->GetNextItem(-1, wxLIST_NEXT_ALL,
559 wxLIST_STATE_SELECTED);
560 while ( item != -1 )
561 {
562 wxLogMessage(_T("\t%ld (%s)"),
563 item, m_listCtrl->GetItemText(item).c_str());
564
565 if ( ++shownCount > 10 )
566 {
567 wxLogMessage(_T("\t... more selected items snipped..."));
568 break;
569 }
570
571 item = m_listCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
572 wxLIST_STATE_SELECTED);
573 }
574 }
575
576 void MyFrame::OnShowColInfo(wxCommandEvent& WXUNUSED(event))
577 {
578 int count = m_listCtrl->GetColumnCount();
579 wxLogMessage(wxT("%d columns:"), count);
580 for ( int c = 0; c < count; c++ )
581 {
582 wxLogMessage(wxT("\tcolumn %d has width %d"), c,
583 m_listCtrl->GetColumnWidth(c));
584 }
585 }
586
587 void MyFrame::OnUpdateShowColInfo(wxUpdateUIEvent& event)
588 {
589 event.Enable( (m_listCtrl->GetWindowStyleFlag() & wxLC_REPORT) != 0 );
590 }
591
592 void MyFrame::OnToggleMultiSel(wxCommandEvent& WXUNUSED(event))
593 {
594 long flags = m_listCtrl->GetWindowStyleFlag();
595 if ( flags & wxLC_SINGLE_SEL )
596 flags &= ~wxLC_SINGLE_SEL;
597 else
598 flags |= wxLC_SINGLE_SEL;
599
600 m_logWindow->WriteText(wxString::Format(wxT("Current selection mode: %sle\n"),
601 (flags & wxLC_SINGLE_SEL) ? _T("sing") : _T("multip")));
602
603 RecreateList(flags);
604 }
605
606 void MyFrame::OnUpdateToggleMultiSel(wxUpdateUIEvent& event)
607 {
608 event.Check((m_listCtrl->GetWindowStyleFlag() & wxLC_SINGLE_SEL) == 0);
609 }
610
611 void MyFrame::OnSetFgColour(wxCommandEvent& WXUNUSED(event))
612 {
613 m_listCtrl->SetForegroundColour(wxGetColourFromUser(this));
614 m_listCtrl->Refresh();
615 }
616
617 void MyFrame::OnSetBgColour(wxCommandEvent& WXUNUSED(event))
618 {
619 m_listCtrl->SetBackgroundColour(wxGetColourFromUser(this));
620 m_listCtrl->Refresh();
621 }
622
623 void MyFrame::OnAdd(wxCommandEvent& WXUNUSED(event))
624 {
625 m_listCtrl->InsertItem(m_listCtrl->GetItemCount(), _T("Appended item"));
626 }
627
628 void MyFrame::OnEdit(wxCommandEvent& WXUNUSED(event))
629 {
630 long itemCur = m_listCtrl->GetNextItem(-1, wxLIST_NEXT_ALL,
631 wxLIST_STATE_FOCUSED);
632
633 if ( itemCur != -1 )
634 {
635 m_listCtrl->EditLabel(itemCur);
636 }
637 else
638 {
639 m_logWindow->WriteText(_T("No item to edit"));
640 }
641 }
642
643 void MyFrame::OnDelete(wxCommandEvent& WXUNUSED(event))
644 {
645 if ( m_listCtrl->GetItemCount() )
646 {
647 m_listCtrl->DeleteItem(0);
648 }
649 else
650 {
651 m_logWindow->WriteText(_T("Nothing to delete"));
652 }
653 }
654
655 void MyFrame::OnDeleteAll(wxCommandEvent& WXUNUSED(event))
656 {
657 wxStopWatch sw;
658
659 m_listCtrl->DeleteAllItems();
660
661 m_logWindow->WriteText(wxString::Format(_T("Deleting %d items took %ld ms\n"),
662 m_listCtrl->GetItemCount(),
663 sw.Time()));
664 }
665
666 // MyListCtrl
667
668 void MyListCtrl::OnCacheHint(wxListEvent& event)
669 {
670 wxLogMessage( wxT("OnCacheHint: cache items %ld..%ld"),
671 event.GetCacheFrom(), event.GetCacheTo() );
672 }
673
674 void MyListCtrl::SetColumnImage(int col, int image)
675 {
676 wxListItem item;
677 item.SetMask(wxLIST_MASK_IMAGE);
678 item.SetImage(image);
679 SetColumn(col, item);
680 }
681
682 void MyListCtrl::OnColClick(wxListEvent& event)
683 {
684 int col = event.GetColumn();
685 SetColumnImage(col, 0);
686
687 wxLogMessage( wxT("OnColumnClick at %d."), col );
688 }
689
690 void MyListCtrl::OnColRightClick(wxListEvent& event)
691 {
692 int col = event.GetColumn();
693 if ( col != -1 )
694 {
695 SetColumnImage(col, -1);
696 }
697
698 // Show popupmenu at position
699 wxMenu menu(wxT("Test"));
700 menu.Append(LIST_ABOUT, _T("&About"));
701 PopupMenu(&menu, event.GetPoint());
702
703 wxLogMessage( wxT("OnColumnRightClick at %d."), event.GetColumn() );
704 }
705
706 void MyListCtrl::LogColEvent(const wxListEvent& event, const wxChar *name)
707 {
708 const int col = event.GetColumn();
709
710 wxLogMessage(wxT("%s: column %d (width = %d or %d)."),
711 name,
712 col,
713 event.GetItem().GetWidth(),
714 GetColumnWidth(col));
715 }
716
717 void MyListCtrl::OnColBeginDrag(wxListEvent& event)
718 {
719 LogColEvent( event, wxT("OnColBeginDrag") );
720
721 if ( event.GetColumn() == 0 )
722 {
723 wxLogMessage(_T("Resizing this column shouldn't work."));
724
725 event.Veto();
726 }
727 }
728
729 void MyListCtrl::OnColDragging(wxListEvent& event)
730 {
731 LogColEvent( event, wxT("OnColDragging") );
732 }
733
734 void MyListCtrl::OnColEndDrag(wxListEvent& event)
735 {
736 LogColEvent( event, wxT("OnColEndDrag") );
737 }
738
739 void MyListCtrl::OnBeginDrag(wxListEvent& event)
740 {
741 const wxPoint& pt = event.m_pointDrag;
742
743 int flags;
744 wxLogMessage( wxT("OnBeginDrag at (%d, %d), item %ld."),
745 pt.x, pt.y, HitTest(pt, flags) );
746 }
747
748 void MyListCtrl::OnBeginRDrag(wxListEvent& event)
749 {
750 wxLogMessage( wxT("OnBeginRDrag at %d,%d."),
751 event.m_pointDrag.x, event.m_pointDrag.y );
752 }
753
754 void MyListCtrl::OnBeginLabelEdit(wxListEvent& event)
755 {
756 wxLogMessage( wxT("OnBeginLabelEdit: %s"), event.m_item.m_text.c_str());
757 }
758
759 void MyListCtrl::OnEndLabelEdit(wxListEvent& event)
760 {
761 wxLogMessage( wxT("OnEndLabelEdit: %s"),
762 event.IsEditCancelled() ? _T("[cancelled]")
763 : event.m_item.m_text.c_str());
764 }
765
766 void MyListCtrl::OnDeleteItem(wxListEvent& event)
767 {
768 LogEvent(event, _T("OnDeleteItem"));
769 }
770
771 void MyListCtrl::OnDeleteAllItems(wxListEvent& event)
772 {
773 LogEvent(event, _T("OnDeleteAllItems"));
774 }
775
776 #if WXWIN_COMPATIBILITY_2_4
777 void MyListCtrl::OnGetInfo(wxListEvent& event)
778 {
779 wxString msg;
780
781 msg << _T("OnGetInfo (") << event.m_item.m_itemId << _T(", ") << event.m_item.m_col << _T(")");
782 if ( event.m_item.m_mask & wxLIST_MASK_STATE )
783 msg << _T(" wxLIST_MASK_STATE");
784 if ( event.m_item.m_mask & wxLIST_MASK_TEXT )
785 msg << _T(" wxLIST_MASK_TEXT");
786 if ( event.m_item.m_mask & wxLIST_MASK_IMAGE )
787 msg << _T(" wxLIST_MASK_IMAGE");
788 if ( event.m_item.m_mask & wxLIST_MASK_DATA )
789 msg << _T(" wxLIST_MASK_DATA");
790 if ( event.m_item.m_mask & wxLIST_SET_ITEM )
791 msg << _T(" wxLIST_SET_ITEM");
792 if ( event.m_item.m_mask & wxLIST_MASK_WIDTH )
793 msg << _T(" wxLIST_MASK_WIDTH");
794 if ( event.m_item.m_mask & wxLIST_MASK_FORMAT )
795 msg << _T(" wxLIST_MASK_WIDTH");
796
797 if ( event.m_item.m_mask & wxLIST_MASK_TEXT )
798 {
799 event.m_item.m_text = _T("My callback text");
800 }
801
802 wxLogMessage(msg);
803 }
804
805 void MyListCtrl::OnSetInfo(wxListEvent& event)
806 {
807 LogEvent(event, _T("OnSetInfo"));
808 }
809 #endif
810
811 void MyListCtrl::OnSelected(wxListEvent& event)
812 {
813 LogEvent(event, _T("OnSelected"));
814
815 if ( GetWindowStyle() & wxLC_REPORT )
816 {
817 wxListItem info;
818 info.m_itemId = event.m_itemIndex;
819 info.m_col = 1;
820 info.m_mask = wxLIST_MASK_TEXT;
821 if ( GetItem(info) )
822 {
823 wxLogMessage(wxT("Value of the 2nd field of the selected item: %s"),
824 info.m_text.c_str());
825 }
826 else
827 {
828 wxFAIL_MSG(wxT("wxListCtrl::GetItem() failed"));
829 }
830 }
831 }
832
833 void MyListCtrl::OnDeselected(wxListEvent& event)
834 {
835 LogEvent(event, _T("OnDeselected"));
836 }
837
838 void MyListCtrl::OnActivated(wxListEvent& event)
839 {
840 LogEvent(event, _T("OnActivated"));
841 }
842
843 void MyListCtrl::OnFocused(wxListEvent& event)
844 {
845 LogEvent(event, _T("OnFocused"));
846
847 event.Skip();
848 }
849
850 void MyListCtrl::OnListKeyDown(wxListEvent& event)
851 {
852 switch ( event.GetKeyCode() )
853 {
854 case 'c': // colorize
855 case 'C':
856 {
857 wxListItem info;
858 info.m_itemId = event.GetIndex();
859 GetItem(info);
860
861 wxListItemAttr *attr = info.GetAttributes();
862 if ( !attr || !attr->HasTextColour() )
863 {
864 info.SetTextColour(*wxCYAN);
865
866 SetItem(info);
867
868 RefreshItem(info.m_itemId);
869 }
870 }
871 break;
872
873 case 'n': // next
874 case 'N':
875 {
876 long item = GetNextItem(-1,
877 wxLIST_NEXT_ALL, wxLIST_STATE_FOCUSED);
878 if ( item++ == GetItemCount() - 1 )
879 {
880 item = 0;
881 }
882
883 wxLogMessage(_T("Focusing item %ld"), item);
884
885 SetItemState(item, wxLIST_STATE_FOCUSED, wxLIST_STATE_FOCUSED);
886 EnsureVisible(item);
887 }
888 break;
889
890 case WXK_DELETE:
891 {
892 long item = GetNextItem(-1,
893 wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
894 while ( item != -1 )
895 {
896 DeleteItem(item);
897
898 wxLogMessage(_T("Item %ld deleted"), item);
899
900 // -1 because the indices were shifted by DeleteItem()
901 item = GetNextItem(item - 1,
902 wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
903 }
904 }
905 break;
906
907 case WXK_INSERT:
908 if ( GetWindowStyle() & wxLC_REPORT )
909 {
910 if ( GetWindowStyle() & wxLC_VIRTUAL )
911 {
912 SetItemCount(GetItemCount() + 1);
913 }
914 else // !virtual
915 {
916 InsertItemInReportView(event.GetIndex());
917 }
918 }
919 //else: fall through
920
921 default:
922 LogEvent(event, _T("OnListKeyDown"));
923
924 event.Skip();
925 }
926 }
927
928 void MyListCtrl::OnChar(wxKeyEvent& event)
929 {
930 wxLogMessage(_T("Got char event."));
931
932 switch ( event.GetKeyCode() )
933 {
934 case 'n':
935 case 'N':
936 case 'c':
937 case 'C':
938 // these are the keys we process ourselves
939 break;
940
941 default:
942 event.Skip();
943 }
944 }
945
946 void MyListCtrl::LogEvent(const wxListEvent& event, const wxChar *eventName)
947 {
948 wxLogMessage(_T("Item %ld: %s (item text = %s, data = %ld)"),
949 event.GetIndex(), eventName,
950 event.GetText().c_str(), event.GetData());
951 }
952
953 wxString MyListCtrl::OnGetItemText(long item, long column) const
954 {
955 return wxString::Format(_T("Column %ld of item %ld"), column, item);
956 }
957
958 int MyListCtrl::OnGetItemImage(long WXUNUSED(item)) const
959 {
960 return 0;
961 }
962
963 wxListItemAttr *MyListCtrl::OnGetItemAttr(long item) const
964 {
965 return item % 2 ? NULL : (wxListItemAttr *)&m_attr;
966 }
967
968 void MyListCtrl::InsertItemInReportView(int i)
969 {
970 wxString buf;
971 buf.Printf(_T("This is item %d"), i);
972 long tmp = InsertItem(i, buf, 0);
973 SetItemData(tmp, i);
974
975 buf.Printf(_T("Col 1, item %d"), i);
976 SetItem(i, 1, buf);
977
978 buf.Printf(_T("Item %d in column 2"), i);
979 SetItem(i, 2, buf);
980 }
981