#include "wx/colordlg.h" // for wxGetColourFromUser
#include "wx/settings.h"
#include "wx/sysopt.h"
+#include "wx/numdlg.h"
#include "listtest.h"
{ _T("Sheep"), _T("baaah") },
};
-// number of items in list/report view
-static const int NUM_ITEMS = 10;
-
// number of items in icon/small icon view
static const int NUM_ICONS = 9;
EVT_MENU(LIST_VIRTUAL_VIEW, MyFrame::OnVirtualView)
EVT_MENU(LIST_SMALL_VIRTUAL_VIEW, MyFrame::OnSmallVirtualView)
+ EVT_MENU(LIST_SET_ITEMS_COUNT, MyFrame::OnSetItemsCount)
+
EVT_MENU(LIST_GOTO, MyFrame::OnGoTo)
EVT_MENU(LIST_FOCUS_LAST, MyFrame::OnFocusLast)
EVT_MENU(LIST_TOGGLE_FIRST, MyFrame::OnToggleFirstSel)
#ifdef __WXOSX__
EVT_MENU(LIST_MAC_USE_GENERIC, MyFrame::OnToggleMacUseGeneric)
#endif // __WXOSX__
+ EVT_MENU(LIST_FIND, MyFrame::OnFind)
EVT_UPDATE_UI(LIST_SHOW_COL_INFO, MyFrame::OnUpdateShowColInfo)
EVT_UPDATE_UI(LIST_TOGGLE_MULTI_SEL, MyFrame::OnUpdateToggleMultiSel)
m_listCtrl = NULL;
m_logWindow = NULL;
m_smallVirtual = false;
+ m_numListItems = 10;
// Give it an icon
SetIcon( wxICON(mondrian) );
menuView->Append(LIST_SMALL_ICON_TEXT_VIEW, _T("Small icon &view with text\tF6"));
menuView->Append(LIST_VIRTUAL_VIEW, _T("&Virtual view\tF7"));
menuView->Append(LIST_SMALL_VIRTUAL_VIEW, _T("Small virtual vie&w\tF8"));
-#ifdef __WXMAC__
+ menuView->AppendSeparator();
+ menuView->Append(LIST_SET_ITEMS_COUNT, "Set &number of items");
+#ifdef __WXOSX__
+ menuView->AppendSeparator();
menuView->AppendCheckItem(LIST_MAC_USE_GENERIC, _T("Mac: Use Generic Control"));
#endif
#endif // wxHAS_LISTCTRL_COLUMN_ORDER
menuList->AppendSeparator();
menuList->Append(LIST_SORT, _T("Sor&t\tCtrl-T"));
+ menuList->Append(LIST_FIND, "Test Find() performance");
menuList->AppendSeparator();
menuList->Append(LIST_ADD, _T("&Append an item\tCtrl-P"));
menuList->Append(LIST_EDIT, _T("&Edit the item\tCtrl-E"));
void MyFrame::InitWithListItems()
{
- for ( int i = 0; i < NUM_ITEMS; i++ )
+ for ( int i = 0; i < m_numListItems; i++ )
{
m_listCtrl->InsertItem(i, wxString::Format(_T("Item %d"), i));
}
wxStopWatch sw;
- for ( int i = 0; i < NUM_ITEMS; i++ )
+ for ( int i = 0; i < m_numListItems; i++ )
{
m_listCtrl->InsertItemInReportView(i);
}
m_logWindow->WriteText(wxString::Format(_T("%d items inserted in %ldms\n"),
- NUM_ITEMS, sw.Time()));
+ m_numListItems, sw.Time()));
m_listCtrl->Show();
// we leave all mask fields to 0 and only change the colour
RecreateList(wxLC_REPORT | wxLC_VIRTUAL);
}
+void MyFrame::OnSetItemsCount(wxCommandEvent& WXUNUSED(event))
+{
+ int numItems = wxGetNumberFromUser
+ (
+ "Enter the initial number of items for "
+ "the list and report views",
+ "Number of items:",
+ "wxWidgets wxListCtrl sample",
+ m_numListItems,
+ 0,
+ 10000,
+ this
+ );
+ if ( numItems == -1 || numItems == m_numListItems )
+ return;
+
+ m_numListItems = numItems;
+
+ if ( m_listCtrl->HasFlag(wxLC_REPORT) &&
+ !m_listCtrl->HasFlag(wxLC_VIRTUAL) )
+ RecreateList(wxLC_REPORT);
+ else if ( m_listCtrl->HasFlag(wxLC_LIST) )
+ RecreateList(wxLC_LIST);
+}
+
void MyFrame::InitWithVirtualItems()
{
m_listCtrl->SetImageList(m_imageListSmall, wxIMAGE_LIST_SMALL);
sw.Time()));
}
+void MyFrame::OnFind(wxCommandEvent& WXUNUSED(event))
+{
+ wxStopWatch sw;
+
+ const int itemCount = m_listCtrl->GetItemCount();
+ for ( int i = 0; i < itemCount; i++ )
+ m_listCtrl->FindItem(-1, i);
+
+ wxLogMessage("Calling Find() for all %d items took %ld ms",
+ itemCount, sw.Time());
+}
+
void MyFrame::OnShowSelInfo(wxCommandEvent& WXUNUSED(event))
{
int selCount = m_listCtrl->GetSelectedItemCount();