+void MyFrame::OnFreeze(wxCommandEvent& WXUNUSED(event))
+{
+ wxLogMessage(_T("Freezing the control"));
+
+ m_listCtrl->Freeze();
+}
+
+void MyFrame::OnThaw(wxCommandEvent& WXUNUSED(event))
+{
+ wxLogMessage(_T("Thawing the control"));
+
+ m_listCtrl->Thaw();
+}
+
+void MyFrame::OnToggleLines(wxCommandEvent& event)
+{
+ m_listCtrl->SetSingleStyle(wxLC_HRULES | wxLC_VRULES, event.IsChecked());
+}
+
+void MyFrame::OnToggleMacUseGeneric(wxCommandEvent& event)
+{
+ wxSystemOptions::SetOption(wxT("mac.listctrl.always_use_generic"), event.IsChecked());
+}
+
+void MyFrame::OnGoTo(wxCommandEvent& WXUNUSED(event))
+{
+ long index = 3;
+ m_listCtrl->SetItemState(index, wxLIST_STATE_FOCUSED, wxLIST_STATE_FOCUSED);
+
+ long sel = m_listCtrl->GetNextItem(-1, wxLIST_NEXT_ALL,
+ wxLIST_STATE_SELECTED);
+ if ( sel != -1 )
+ m_listCtrl->SetItemState(sel, 0, wxLIST_STATE_SELECTED);
+ m_listCtrl->SetItemState(index, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
+}
+
+void MyFrame::OnFocusLast(wxCommandEvent& WXUNUSED(event))
+{
+ long index = m_listCtrl->GetItemCount() - 1;
+ if ( index == -1 )
+ {
+ return;
+ }
+
+ m_listCtrl->SetItemState(index, wxLIST_STATE_FOCUSED, wxLIST_STATE_FOCUSED);
+ m_listCtrl->EnsureVisible(index);
+}
+