コード例 #1
0
ファイル: treeitemcontroller.py プロジェクト: sti87/ricodebug
 def __init__(self, variable):
     """ Constructor
     @param variable   Variable, varible to wrap
     """
     VariableWrapper.__init__(self, variable)
     TreeItem.__init__(self)
     self.valueChanged = False
コード例 #2
0
ファイル: datagraphvw.py プロジェクト: bschen/ricodebug
 def __init__(self, variable, distributedObjects):
     """ Constructor
     @param variable            variables.variable.Variable, Variable to wrap with the new DataGraphVW
     @param distributedObjects  distributedobjects.DistributedObjects, the DistributedObjects-Instance
     """
     VariableWrapper.__init__(self, variable)
     self.distributedObjects = distributedObjects
     self.view = None
     self.templateHandler = None
コード例 #3
0
ファイル: datagraphvw.py プロジェクト: vermak/ricodebug
    def __init__(self, variable, distributedObjects):
        """ Constructor
        @param variable            variables.variable.Variable, Variable to wrap with the new DataGraphVW
        @param distributedObjects  distributedobjects.DistributedObjects, the DistributedObjects-Instance
        """
        VariableWrapper.__init__(self, variable)
        self.distributedObjects = distributedObjects
        self._view = None
        self.templateHandler = None
        self.parentWrapper = None

        self.dirty = True  # true if we need to rerender our stuff
        self.dataChanged.connect(self.setDirty)

        self.source = ""
コード例 #4
0
 def __init__(self, variable):
     """ Constructor
     @param variable    variables.variable.Variable, the variable to wrap
     """
     VariableWrapper.__init__(self, variable)
コード例 #5
0
ファイル: datagraphvw.py プロジェクト: vermak/ricodebug
 def setFilter(self, f):
     VariableWrapper.setFilter(self, f)
     self.setDirty(True)
コード例 #6
0
ファイル: localscontroller.py プロジェクト: bschen/ricodebug
 def __init__(self, variable):
     VariableWrapper.__init__(self, variable)
     TreeItem.__init__(self)
     self.valueChanged = False
     self.visible = True