(self, parent, *args, **kwargs)
| 56 | |
| 57 | class NavigationBar(wx.Panel): |
| 58 | def __init__(self, parent, *args, **kwargs): |
| 59 | wx.Panel.__init__(self, parent, *args, **kwargs) |
| 60 | |
| 61 | self.bitmapDir = os.path.join(os.path.dirname( |
| 62 | os.path.abspath(__file__)), "images") |
| 63 | |
| 64 | self._InitComponents() |
| 65 | self._LayoutComponents() |
| 66 | self._InitEventHandlers() |
| 67 | |
| 68 | def _InitComponents(self): |
| 69 | self.backBtn = buttons.GenBitmapButton(self, -1, |
nothing calls this directly
no test coverage detected