예제 #1
0
 def __init__(self, owner, model):
     self._table = owner.linkTable
     QStyledItemDelegate.__init__(self, self._table)
     self._parent = owner
     self._model = model
     self._filename = ''
     self._dirname = ''
예제 #2
0
 def __init__(self, owner, model, diag):
     QStyledItemDelegate.__init__(self, owner)
     self._parent = owner
     self._model = model
     self._diag = diag
     self.orange = QColor("#FFA500")
     self.red = QColor("#FF0000")
     self.green = QColor("#008000")
     self.gray = QColor("#C0C0C0")
예제 #3
0
 def __init__(self, parent):
     QStyledItemDelegate.__init__(self, parent)
예제 #4
0
파일: widgets.py 프로젝트: zhuyuuc/spyder
 def __init__(self, parent):
     QStyledItemDelegate.__init__(self, parent)
예제 #5
0
파일: wtree.py 프로젝트: ogiorgis/pyCGNS
 def __init__(self, wtree, model):
     QStyledItemDelegate.__init__(self, wtree)
     self._parent = wtree
     self._mode = CELLTEXT
     self._model = model
예제 #6
0
 def __init__(self, regex):
     QStyledItemDelegate.__init__(self)
     self.__regex = regex
예제 #7
0
파일: widgets.py 프로젝트: zerocewl/spyder
 def __init__(self, parent):
     QStyledItemDelegate.__init__(self, parent)
     self._margin = None
예제 #8
0
파일: wquery.py 프로젝트: ogiorgis/pyCGNS
 def __init__(self, owner, model):
     QStyledItemDelegate.__init__(self, owner._tb)
     self._parent = owner
     self._mode = CELLTEXT
     self._model = model
     self._lastCol = None