(self, fittingView, params)
| 41 | name = 'Capacitor Usage' |
| 42 | |
| 43 | def __init__(self, fittingView, params): |
| 44 | ViewColumn.__init__(self, fittingView) |
| 45 | |
| 46 | self.mask = wx.LIST_MASK_IMAGE |
| 47 | |
| 48 | Attribute.getInstance().getAttributeInfo('capacitorNeed') |
| 49 | self.imageId = fittingView.imageList.GetImageIndex('capacitorRecharge_small', 'gui') |
| 50 | self.bitmap = BitmapLoader.getBitmap('capacitorRecharge_small', 'gui') |
| 51 | |
| 52 | def getText(self, mod): |
| 53 | if isinstance(mod, Mode): |
nothing calls this directly
no test coverage detected