(cls, title, gtitle='Graph', labelx='X-Unit', labely='Y-Unit')
| 136 | |
| 137 | @classmethod |
| 138 | def get_frame(cls, title, gtitle='Graph', labelx='X-Unit', labely='Y-Unit'): |
| 139 | if PlotManager.get(title) == None: |
| 140 | PlotManager.add(cls(IPy.curapp, title)) |
| 141 | PlotManager.get(title).set_title_label(gtitle, labelx, labely) |
| 142 | return PlotManager.get(title) |
| 143 | |
| 144 | def __init__( self, parent, title): |
| 145 | wx.Frame.__init__ ( self, parent, id = wx.ID_ANY, |
no test coverage detected