Show how to get the right position for HitTest from a mouse event position
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24103 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -68,6 +68,20 @@ class TestPanel(wxPanel):
|
|||||||
|
|
||||||
self.tree.Expand(self.root)
|
self.tree.Expand(self.root)
|
||||||
|
|
||||||
|
EVT_RIGHT_UP(self.tree.GetMainWindow(), self.OnRightUp)
|
||||||
|
|
||||||
|
|
||||||
|
def OnRightUp(self, evt):
|
||||||
|
# Convert the position from being relative to the subwindow to
|
||||||
|
# being relative to the outer treelist window so HitTest will
|
||||||
|
# have the point it is expecting.
|
||||||
|
pos = evt.GetPosition()
|
||||||
|
pos = self.tree.GetMainWindow().ClientToScreen(pos)
|
||||||
|
pos = self.tree.ScreenToClient(pos)
|
||||||
|
item, flags, col = self.tree.HitTest(pos)
|
||||||
|
if item:
|
||||||
|
print flags, col, self.tree.GetItemText(item, col)
|
||||||
|
|
||||||
|
|
||||||
def OnSize(self, evt):
|
def OnSize(self, evt):
|
||||||
self.tree.SetSize(self.GetSize())
|
self.tree.SetSize(self.GetSize())
|
||||||
|
Reference in New Issue
Block a user