def newGraph(self, context, windowName):
        win = GrapherWindow(self, context, windowName)
        self.winDict[windowName] = win
#        self.winList.append(win)
        win.show()
        return win
Exemplo n.º 2
0
 def newGraph(self, context):
     win = GrapherWindow(self, context)
     self.winList.append(win)
     win.show()
     return win
Exemplo n.º 3
0
 def newGraph(self, context, windowName):
     win = GrapherWindow(self, context, windowName)
     self.winDict[windowName] = win
     #        self.winList.append(win)
     win.show()
     return win
Exemplo n.º 4
0
 def newGraph(self, context):
     win = GrapherWindow(self, context)
     self.winList.append(win)
     win.show()
     return win