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

Method __init__

imagepy/ui/widgets/normal.py:354–361  ·  view source on GitHub ↗
(self, parent, title)

Source from the content-addressed store, hash-verified

352
353class Label(wx.Panel):
354 def __init__(self, parent, title):
355 wx.Panel.__init__(self, parent)
356 sizer = wx.BoxSizer(wx.VERTICAL)
357 lab_title = wx.StaticText( self, wx.ID_ANY, title,
358 wx.DefaultPosition, wx.DefaultSize, wx.ALIGN_CENTRE )
359 lab_title.Wrap( -1 )
360 sizer.Add( lab_title, 0, wx.ALL, 5 )
361 self.SetSizer(sizer)
362
363 def Bind(self, z, f): pass
364 def SetValue(self, v): pass

Callers 8

__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected