Applied patch [ 920076 ] [listctrl sample] Keep multiselect menu item in sync
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26316 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
		@@ -78,6 +78,7 @@ BEGIN_EVENT_TABLE(MyFrame, wxFrame)
 | 
				
			|||||||
    EVT_MENU(LIST_THAW, MyFrame::OnThaw)
 | 
					    EVT_MENU(LIST_THAW, MyFrame::OnThaw)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    EVT_UPDATE_UI(LIST_SHOW_COL_INFO, MyFrame::OnUpdateShowColInfo)
 | 
					    EVT_UPDATE_UI(LIST_SHOW_COL_INFO, MyFrame::OnUpdateShowColInfo)
 | 
				
			||||||
 | 
					    EVT_UPDATE_UI(LIST_TOGGLE_MULTI_SEL, MyFrame::OnUpdateToggleMultiSel)    
 | 
				
			||||||
END_EVENT_TABLE()
 | 
					END_EVENT_TABLE()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
BEGIN_EVENT_TABLE(MyListCtrl, wxListCtrl)
 | 
					BEGIN_EVENT_TABLE(MyListCtrl, wxListCtrl)
 | 
				
			||||||
@@ -591,6 +592,11 @@ void MyFrame::OnToggleMultiSel(wxCommandEvent& WXUNUSED(event))
 | 
				
			|||||||
    RecreateList(flags);
 | 
					    RecreateList(flags);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void MyFrame::OnUpdateToggleMultiSel(wxUpdateUIEvent& event)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					     event.Check((m_listCtrl->GetWindowStyleFlag() & wxLC_SINGLE_SEL) == 0);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void MyFrame::OnSetFgColour(wxCommandEvent& WXUNUSED(event))
 | 
					void MyFrame::OnSetFgColour(wxCommandEvent& WXUNUSED(event))
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    m_listCtrl->SetForegroundColour(wxGetColourFromUser(this));
 | 
					    m_listCtrl->SetForegroundColour(wxGetColourFromUser(this));
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -115,6 +115,7 @@ protected:
 | 
				
			|||||||
    void OnThaw(wxCommandEvent& event);
 | 
					    void OnThaw(wxCommandEvent& event);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    void OnUpdateShowColInfo(wxUpdateUIEvent& event);
 | 
					    void OnUpdateShowColInfo(wxUpdateUIEvent& event);
 | 
				
			||||||
 | 
					    void OnUpdateToggleMultiSel(wxUpdateUIEvent& event);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    wxImageList *m_imageListNormal;
 | 
					    wxImageList *m_imageListNormal;
 | 
				
			||||||
    wxImageList *m_imageListSmall;
 | 
					    wxImageList *m_imageListSmall;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user