1 from .PlotSelectionList
import PlotSelectionList
5 class PlotSelectionFrame(wx.Frame):
7 Window for the plot selector.
10 def __init__(self, parent, plotter):
13 wx.Frame.__init__(self, parent, title=
'Plot Selection', size=(sizeX, sizeY))
15 self.
sizer = wx.BoxSizer(wx.VERTICAL)
16 self.SetSizer(self.
sizer)
19 self.
sizer.Add(self.
list, 1, wx.LEFT | wx.TOP | wx.EXPAND)