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