MCPcopy Create free account
hub / github.com/cztomczak/cefpython / __init__

Method __init__

src/cefpython3.wx/chromectrl.py:58–66  ·  view source on GitHub ↗
(self, parent, *args, **kwargs)

Source from the content-addressed store, hash-verified

56
57class 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,

Callers

nothing calls this directly

Calls 4

_InitComponentsMethod · 0.95
_LayoutComponentsMethod · 0.95
_InitEventHandlersMethod · 0.95
__init__Method · 0.45

Tested by

no test coverage detected