Fix for coordinates in wxEVT_COMMAND_LIST_COL_RIGHT_CLICK [patch #1019696] with test code in the sample.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29013 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -686,6 +686,11 @@ void MyListCtrl::OnColRightClick(wxListEvent& event)
|
|||||||
SetColumnImage(col, -1);
|
SetColumnImage(col, -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Show popupmenu at position
|
||||||
|
wxMenu menu(wxT("Test"));
|
||||||
|
menu.Append(LIST_ABOUT, _T("&About"));
|
||||||
|
PopupMenu(&menu, event.GetPoint());
|
||||||
|
|
||||||
wxLogMessage( wxT("OnColumnRightClick at %d."), event.GetColumn() );
|
wxLogMessage( wxT("OnColumnRightClick at %d."), event.GetColumn() );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1743,7 +1743,7 @@ bool wxListCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
|
|||||||
wxLogLastError(_T("GetCursorPos"));
|
wxLogLastError(_T("GetCursorPos"));
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( !::ScreenToClient(hwndHdr, &ptClick) )
|
if ( !::ScreenToClient(GetHwnd(), &ptClick) )
|
||||||
{
|
{
|
||||||
wxLogLastError(_T("ScreenToClient(listctrl header)"));
|
wxLogLastError(_T("ScreenToClient(listctrl header)"));
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user