class VariableController(QObject): _instance = None @classmethod def CreateInstance(cls, watchview): if not cls._instance: cls._instance = cls(watchview) @classmethod def getInstance(cls): if not cls._instance: raise "VariableController has no Instance!" return cls._instance def __init__(self, watchview): QObject.__init__(self) #signalproxy self.signalProxy = SignalProxy.getInstance() QObject.connect(self.signalProxy, SIGNAL('AddWatch(QString)'), self.addWatch) # views self.watchview = watchview # controllers self.debugController = DebugController.getInstance() # factory self.vwFactory = WatchVWFactory() self.variableList = VariableList(self.vwFactory) # models self.variableModel = self.debugController.variableModel; def addWatch(self, watch): var = self.variableList.addVar(watch) QObject.connect(var, SIGNAL('changed()'), self.varChanged) for item in self.variableList: print item.getExp() + " " + item.getValue() def varChanged(self): print "variable changed" def removeSelected(self, row, parent): self.variableModel.removeRow(row, parent);
class DataGraphController(QObject): """ the Controller for the DataGraph """ def __init__(self, distributedObjects): """ Constructor <br> Creates a DataGraphView, a DataGraphVWFactory and a VariableList <br> Listens to the following Signals: SignalProxy::insertDockWidgets() and SignalProxy::cleanupModels() @param distributedObjects distributedobjects.DistributedObjects, the DistributedObjects-Instance """ QObject.__init__(self) # controllers ## @var distributedObjects # distributedobjects.DistributedObjects, the DistributedObjects-Instance self.distributedObjects = distributedObjects ## @var signalProxy # signalproxy.SignalProxy, the SignalProxy-Instance from the DistributedObjects self.signalProxy = distributedObjects.signalProxy ## @var debugController # debugcontroller.DebugController, the DebugController-Instance from the DistributedObjects self.debugController = distributedObjects.debugController ## @var variablePool # variables.variablepool.VariablePool, the variablePool-Instance from the DistributedObjects self.variablePool = distributedObjects.variablePool # views ## @var data_graph_view # datagraph.datagraphview.DataGraphView, private, self-created DataGraphView <br> # GUI-Element that shows the DataGraphView self.data_graph_view = DataGraphView(None, self) # models ## @var vwFactory # datagraph.datagraphvwfactory.DataGraphVWFactory, private, self-created DataGraphVWFactory self.vwFactory = DataGraphVWFactory(self.distributedObjects) ## @var variableList # variables.variablelist.VariableList, private, self-created VariableList self.variableList = VariableList(self.vwFactory, self.distributedObjects) self.pointerList = [] #register with session manager to save Graph self.signalProxy.emitRegisterWithSessionManager(self, "Graph") # connect signals #QObject.connect(self.variableList, SIGNAL('reset()'), self.repaintDataGraph) QObject.connect(self.signalProxy, SIGNAL('insertDockWidgets()'), self.insertDockWidgets) QObject.connect(self.signalProxy, SIGNAL('cleanupModels()'), self.clearDataGraph) def insertDockWidgets(self): """ adds the Datagraph-DockWidget to the GUI <br> this function is connected to the signal SignalProxy::insertDockWidgets() """ self.dataGraphDock = QDockWidget("Graph") self.dataGraphDock.setObjectName("DataGraphView") self.dataGraphDock.setWidget(self.data_graph_view) self.signalProxy.addDockWidget(Qt.LeftDockWidgetArea, self.dataGraphDock, True) def addWatch(self, watch, xPos=0, yPos=0): """ adds the Variable watch to the VariableList and its wrapper to the DataGraph @param watch variables.variable.Variable, the Variable to watch to add @param xPos Integer, the X-Coordinate of the Position where to add the Variable @param yPos Integer, the Y-Coordinate of the Position where to add the Variable """ varWrapper = self.variableList.addVarByName(watch) self.addVar(varWrapper, xPos, yPos, False) return varWrapper def addVar(self, varWrapper, xPos=0, yPos=0, addVarToList=True): """ adds the given VariableWrapper varWrapper to the DataGraph and - if addVarToList is true - also to the VariableList @param varWrapper variables.variablewrapper.VariableWrapper, the VariableWrapper to add @param xPos Integer, the X-Coordinate of the Position where to add the VariableWrapper @param yPos Integer, the Y-Coordinate of the Position where to add the VariableWrapper @param addVarToList Boolean, tells if varWrapper should be added to the VariableList too """ varWrapper.createView() try: varWrapper.getView().render() except: from mako import exceptions logging.error("Caught exception while rendering template: %s", exceptions.text_error_template().render()) varWrapper.setXPos(xPos) varWrapper.setYPos(yPos) self.data_graph_view.addItem(varWrapper.getView()) if addVarToList: self.variableList.addVar(varWrapper) QObject.connect(varWrapper, SIGNAL('replace(PyQt_PyObject, PyQt_PyObject)'), self.replaceVariable) def replaceVariable(self, pendingVar, newVar): """ replaces existing variable in list with new one @param pendingVar variables.variable.Variable, the pending Variable to replace with newVar @param newVar variables.variable.Variable, the new Variable pendingVar is replaced with """ self.removeVar(pendingVar) newVW = newVar.makeWrapper(self.vwFactory) self.addVar(newVW, pendingVar.getXPos(), pendingVar.getYPos()) #for pointer in pendingVar.getView().getIncomingPointers(): # self.addPointer(pointer.getFromView(), newVW.getView()) #for pointer in pendingVar.getView().getOutgoingPointers(): # self.addPointer(newVW.getView(), pointer.getToView()) def removeVar(self, varWrapper): """ removes the given varWrapper from the DataGraphView and the PointerList @param varWrapper variables.variablewrapper.VariableWrapper, the VariableWrapper to remove """ self.variableList.removeVar(varWrapper) self.data_graph_view.removeItem(varWrapper.getView()) def addPointer(self, fromView, toView): """ fromView and toView are QGraphicsWebViews @param fromView datagraph.htmlvariableview.HtmlVariableView, starting point of the Pointer @param toView datagraph.htmlvariableview.HtmlVariableView, end point of the Pointer """ pointer = Pointer(None, fromView, toView, self.distributedObjects) self.data_graph_view.addItem(pointer) self.pointerList.append(pointer) def removePointer(self, pointer): """ removes the given pointer from the DataGraphView and the PointerList @param pointer datagraph.pointer.Pointer, pointer to remove """ self.data_graph_view.removeItem(pointer) self.pointerList.remove(pointer) def clearDataGraph(self): """ clears the DataGraphView and the VariableList <br> this function is connected to the signal SignalProxy::cleanupModels() """ self.variableList.clear() self.data_graph_view.clear() def saveSession(self, xmlHandler): """ Insert session info to xml file @param xmlHandler sessionmanager.XmlHandler, handler to write to the session-xml-file """ dgWatches = xmlHandler.createNode("GraphWatches") for vw in self.variableList: xmlHandler.createNode("Watch", dgWatches, {'expression': vw.getExp(), 'xPos': vw.getXPos(), 'yPos': vw.getYPos()}) #dgPointers = xmlHandler.createNode("Pointers") #for pointer in self.pointerList: # xmlHandler.createNode("Pointer", dgPointers, { 'expFrom': pointer.fromView.var.getExp(), 'expTo': pointer.toView.var.getExp() }) def loadSession(self, xmlHandler): """ load session info to xml file @param xmlHandler sessionmanager.XmlHandler, handler to read from the session-xml-file """ dgParent = xmlHandler.getNode("GraphWatches") if dgParent != None: childnodes = dgParent.childNodes() for i in range(childnodes.size()): attr = xmlHandler.getAttributes(childnodes.at(i)) self.addWatch(attr["expression"], int(attr["xPos"]), int(attr["yPos"]))