(self, iconFile, location="icons")
| 44 | self.Bind(wx.EVT_TREE_ITEM_COLLAPSED, self.OnCollapsed) |
| 45 | |
| 46 | def addImage(self, iconFile, location="icons"): |
| 47 | if iconFile is None: |
| 48 | return -1 |
| 49 | return self.imageList.GetImageIndex(iconFile, location) |
| 50 | |
| 51 | def expandLookup(self, event): |
| 52 | """Process market tree expands""" |
no test coverage detected