(self, fittingView, iconID, formatSpec=(3, 0, 3))
| 38 | stickPrefixToValue = False |
| 39 | |
| 40 | def __init__(self, fittingView, iconID, formatSpec=(3, 0, 3)): |
| 41 | ViewColumn.__init__(self, fittingView) |
| 42 | self.imageId = fittingView.imageList.GetImageIndex(iconID, 'icons') |
| 43 | self.bitmap = BitmapLoader.getBitmap(iconID, 'icons') |
| 44 | self.mask = wx.LIST_MASK_TEXT |
| 45 | self.formatSpec = formatSpec |
| 46 | |
| 47 | @abstractmethod |
| 48 | def _getValue(self, fit): |
nothing calls this directly
no test coverage detected