Esempio n. 1
0
	def __init__(self, cellId, path=None, cons=None, props=None):
		CellSkin.__init__(self, cellId, path or "", cons)
		self.canSeek = False
		self.imageReplaced = False
		self.fileNotFound = False
		self.sought = False
		self.posterImage = None
Esempio n. 2
0
 def __init__(self, cellId, path=None, cons=None, props=None):
     CellSkin.__init__(self, cellId, path or "", cons)
     self.canSeek = False
     self.imageReplaced = False
     self.fileNotFound = False
     self.sought = False
     self.posterImage = None
Esempio n. 3
0
 def __init__(self,
              cellId,
              text=None,
              cons=None,
              props=None,
              editable=True):
     CellSkin.__init__(self, cellId, text or "", cons, props)
     self.initData = self._data
     self.editable = editable
Esempio n. 4
0
 def remove(self, scene, cached=True):
     if self.loaded and not cached:
         self.initData = self.data
     CellSkin.remove(self, scene, cached)
Esempio n. 5
0
	def remove(self, scene, cached=True):
		if self.loaded and not cached:
			self.initData = self.data
		CellSkin.remove(self, scene, cached)
Esempio n. 6
0
	def __init__(self, cellId, text=None, cons=None, props=None, editable=True):
		CellSkin.__init__(self, cellId, text or "", cons, props)
		self.initData = self._data
		self.editable = editable