I’m looking for a way to show tooltips whenever the user hovers the
mouse on a column header of a wx.ListCtrl, is this possible?
I tried binding wx.EVT_MOTION but it looks like it works only for the
list items, not the headers.. Am I doing something wrong?
Thanks in advance!
(wxPython 2.8.9.1 on Xubuntu 9.04)
I don’t think this is possible at the present moment, the EVT_MOTION only picks up coords via GetPosition() when you are within the list itself, the columns do not appear to register a coord when you hover over them.
I was able to find this link where it appears they are working on such ability in wx.lib.agw.UltimateListCtrl, you might want to ask on the wxpython mailing list to see if/when this feature might be released.