(cls, name, parent, location)
| 53 | |
| 54 | @classmethod |
| 55 | def getStaticBitmap(cls, name, parent, location): |
| 56 | bitmap = cls.getBitmap(name or 0, location) |
| 57 | if bitmap is None: |
| 58 | return None |
| 59 | static = wx.StaticBitmap(parent) |
| 60 | static.SetBitmap(bitmap) |
| 61 | return static |
| 62 | |
| 63 | @classmethod |
| 64 | def getBitmap(cls, name, location): |
no test coverage detected