X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/00b6c4e33bdb2fcc1b56d429653963182608674b..4e1c35f810f574af79e649fa37171dfa7fc775ee:/wxPython/demo/VirtualListCtrl.py diff --git a/wxPython/demo/VirtualListCtrl.py b/wxPython/demo/VirtualListCtrl.py index 424d108abb..b30b4caf4c 100644 --- a/wxPython/demo/VirtualListCtrl.py +++ b/wxPython/demo/VirtualListCtrl.py @@ -25,12 +25,36 @@ class TestVirtualList(wxListCtrl): self.attr2 = wxListItemAttr() self.attr2.SetBackgroundColour("light blue") + EVT_LIST_ITEM_SELECTED(self, self.GetId(), self.OnItemSelected) + EVT_LIST_ITEM_ACTIVATED(self, self.GetId(), self.OnItemActivated) + + def OnItemSelected(self, event): + self.currentItem = event.m_itemIndex + self.log.WriteText('OnItemSelected: "%s", "%s", "%s", "%s"\n' % + (self.currentItem, + self.GetItemText(self.currentItem), + self.getColumnText(self.currentItem, 1), + self.getColumnText(self.currentItem, 2))) + + def OnItemActivated(self, event): + self.currentItem = event.m_itemIndex + self.log.WriteText("OnItemActivated: %s\n" % self.GetItemText(self.currentItem)) + + def getColumnText(self, index, col): + item = self.GetItem(index, col) + return item.GetText() + + #--------------------------------------------------- + # These methods are callbacks for implementing the + # "virtualness" of the list... def OnGetItemText(self, item, col): return "Item %d, column %d" % (item, col) + def OnGetItemImage(self, item): - return 0 + return -1 # if used you should return the index in the ImageList + def OnGetItemAttr(self, item): if item % 3 == 1: