X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/107ff6689aefa5022ad0ea864ef54e7aaf933c1a..4aab34290a0c966bffc9e529dae5666b5db77c96:/samples/listctrl/listtest.cpp diff --git a/samples/listctrl/listtest.cpp b/samples/listctrl/listtest.cpp index 7250a74c38..b4252ebb22 100644 --- a/samples/listctrl/listtest.cpp +++ b/samples/listctrl/listtest.cpp @@ -42,6 +42,7 @@ #include "wx/timer.h" // for wxStopWatch #include "wx/colordlg.h" // for wxGetColourFromUser #include "wx/settings.h" +#include "wx/sysopt.h" #include "listtest.h" @@ -91,6 +92,7 @@ BEGIN_EVENT_TABLE(MyFrame, wxFrame) EVT_MENU(LIST_FREEZE, MyFrame::OnFreeze) EVT_MENU(LIST_THAW, MyFrame::OnThaw) EVT_MENU(LIST_TOGGLE_LINES, MyFrame::OnToggleLines) + EVT_MENU(LIST_MAC_USE_GENERIC, MyFrame::OnToggleMacUseGeneric) EVT_UPDATE_UI(LIST_SHOW_COL_INFO, MyFrame::OnUpdateShowColInfo) EVT_UPDATE_UI(LIST_TOGGLE_MULTI_SEL, MyFrame::OnUpdateToggleMultiSel) @@ -125,6 +127,8 @@ BEGIN_EVENT_TABLE(MyListCtrl, wxListCtrl) EVT_CONTEXT_MENU(MyListCtrl::OnContextMenu) #endif EVT_CHAR(MyListCtrl::OnChar) + + EVT_RIGHT_DOWN(MyListCtrl::OnRightClick) END_EVENT_TABLE() IMPLEMENT_APP(MyApp) @@ -162,15 +166,15 @@ bool MyApp::OnInit() // My frame constructor MyFrame::MyFrame(const wxChar *title) - : wxFrame(NULL, wxID_ANY, title, wxDefaultPosition, wxDefaultSize)) + : wxFrame(NULL, wxID_ANY, title) { - if (wxSystemSettings::GetScreenType() > wxSYS_SCREEN_SMALL) - SetSize(wxSize(450, 340)); - m_listCtrl = NULL; m_logWindow = NULL; m_smallVirtual = false; + if (wxSystemSettings::GetScreenType() > wxSYS_SCREEN_SMALL) + SetSize(wxSize(450, 340)); + // Give it an icon SetIcon( wxICON(mondrian) ); @@ -220,6 +224,9 @@ MyFrame::MyFrame(const wxChar *title) 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->AppendCheckItem(LIST_MAC_USE_GENERIC, _T("Mac: Use Generic Control")); +#endif wxMenu *menuList = new wxMenu; menuList->Append(LIST_FOCUS_LAST, _T("&Make last item current\tCtrl-L")); @@ -338,6 +345,11 @@ 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::OnFocusLast(wxCommandEvent& WXUNUSED(event)) { long index = m_listCtrl->GetItemCount() - 1; @@ -704,7 +716,7 @@ void MyFrame::OnDeleteAll(wxCommandEvent& WXUNUSED(event)) { wxStopWatch sw; - size_t itemCount = m_listCtrl->GetItemCount(); + int itemCount = m_listCtrl->GetItemCount(); m_listCtrl->DeleteAllItems(); @@ -820,6 +832,7 @@ void MyListCtrl::OnEndLabelEdit(wxListEvent& event) void MyListCtrl::OnDeleteItem(wxListEvent& event) { LogEvent(event, _T("OnDeleteItem")); + wxLogMessage( wxT("Number of items when delete event is sent: %d"), GetItemCount() ); } void MyListCtrl::OnDeleteAllItems(wxListEvent& event) @@ -912,6 +925,12 @@ void MyListCtrl::OnListKeyDown(wxListEvent& event) { wxListItem info; info.m_itemId = event.GetIndex(); + if ( info.m_itemId == -1 ) + { + // no item + break; + } + GetItem(info); wxListItemAttr *attr = info.GetAttributes(); @@ -1009,6 +1028,36 @@ void MyListCtrl::OnChar(wxKeyEvent& event) } } +void MyListCtrl::OnRightClick(wxMouseEvent& event) +{ + if ( !event.ControlDown() ) + { + event.Skip(); + return; + } + + int flags; + long subitem; + long item = HitTest(event.GetPosition(), flags, &subitem); + + wxString where; + switch ( flags ) + { + case wxLIST_HITTEST_ABOVE: where = _T("above"); break; + case wxLIST_HITTEST_BELOW: where = _T("below"); break; + case wxLIST_HITTEST_NOWHERE: where = _T("nowhere near"); break; + case wxLIST_HITTEST_ONITEMICON: where = _T("on icon of"); break; + case wxLIST_HITTEST_ONITEMLABEL: where = _T("on label of"); break; + case wxLIST_HITTEST_ONITEMRIGHT: where = _T("right on"); break; + case wxLIST_HITTEST_TOLEFT: where = _T("to the left of"); break; + case wxLIST_HITTEST_TORIGHT: where = _T("to the right of"); break; + default: where = _T("not clear exactly where on"); break; + } + + wxLogMessage(_T("Right double click %s item %ld, subitem %ld"), + where.c_str(), item, subitem); +} + void MyListCtrl::LogEvent(const wxListEvent& event, const wxChar *eventName) { wxLogMessage(_T("Item %ld: %s (item text = %s, data = %ld)"), @@ -1052,10 +1101,10 @@ void MyListCtrl::InsertItemInReportView(int i) SetItemData(tmp, i); buf.Printf(_T("Col 1, item %d"), i); - SetItem(i, 1, buf); + SetItem(tmp, 1, buf); buf.Printf(_T("Item %d in column 2"), i); - SetItem(i, 2, buf); + SetItem(tmp, 2, buf); } #if USE_CONTEXT_MENU @@ -1084,4 +1133,3 @@ void MyListCtrl::ShowContextMenu(const wxPoint& pos) PopupMenu(&menu, pos.x, pos.y); } -