EVT_MENU(LIST_THAW, MyFrame::OnThaw)
EVT_UPDATE_UI(LIST_SHOW_COL_INFO, MyFrame::OnUpdateShowColInfo)
+ EVT_UPDATE_UI(LIST_TOGGLE_MULTI_SEL, MyFrame::OnUpdateToggleMultiSel)
END_EVENT_TABLE()
BEGIN_EVENT_TABLE(MyListCtrl, wxListCtrl)
m_logWindow->SetSize(0, y + 1, size.x, size.y - y);
}
+bool MyFrame::CheckNonVirtual() const
+{
+ if ( !m_listCtrl->HasFlag(wxLC_VIRTUAL) )
+ return true;
+
+ // "this" == whatever
+ wxLogWarning(_T("Can't do this in virtual view, sorry."));
+
+ return false;
+}
+
void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
{
Close(TRUE);
void MyFrame::OnDeselectAll(wxCommandEvent& WXUNUSED(event))
{
+ if ( !CheckNonVirtual() )
+ return;
+
int n = m_listCtrl->GetItemCount();
for (int i = 0; i < n; i++)
m_listCtrl->SetItemState(i,0,wxLIST_STATE_SELECTED);
void MyFrame::OnSelectAll(wxCommandEvent& WXUNUSED(event))
{
+ if ( !CheckNonVirtual() )
+ return;
+
int n = m_listCtrl->GetItemCount();
for (int i = 0; i < n; i++)
m_listCtrl->SetItemState(i,wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
RecreateList(flags);
}
+void MyFrame::OnUpdateToggleMultiSel(wxUpdateUIEvent& event)
+{
+ event.Check((m_listCtrl->GetWindowStyleFlag() & wxLC_SINGLE_SEL) == 0);
+}
+
void MyFrame::OnSetFgColour(wxCommandEvent& WXUNUSED(event))
{
m_listCtrl->SetForegroundColour(wxGetColourFromUser(this));