MCPcopy Create free account
hub / github.com/Image-Py/imagepy / __init__

Method __init__

imagepy/ui/tableframe.py:79–83  ·  view source on GitHub ↗
(self, parent)

Source from the content-addressed store, hash-verified

77
78class TableNoteBook(aui.AuiNotebook):
79 def __init__(self, parent):
80 aui.AuiNotebook.__init__( self, parent, wx.ID_ANY,
81 wx.DefaultPosition, wx.DefaultSize, aui.AUI_NB_DEFAULT_STYLE )
82 self.Bind( aui.EVT_AUINOTEBOOK_PAGE_CHANGED, self.on_pagevalid)
83 self.Bind( aui.EVT_AUINOTEBOOK_PAGE_CLOSE, self.on_close)
84
85 def add_page(self, panel, tps):
86 self.AddPage(panel, tps.title, True, wx.NullBitmap )

Callers

nothing calls this directly

Calls 2

__init__Method · 0.45
BindMethod · 0.45

Tested by

no test coverage detected