當前位置: 首頁>>代碼示例>>Python>>正文


Python VariableText.VariableText類代碼示例

本文整理匯總了Python中VariableText.VariableText的典型用法代碼示例。如果您正苦於以下問題:Python VariableText類的具體用法?Python VariableText怎麽用?Python VariableText使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了VariableText類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

 def __init__(self, text = '', onClick = None):
     if not onClick:
         onClick = []
     GUIComponent.__init__(self)
     VariableText.__init__(self)
     self.setText(text)
     self.onClick = onClick
開發者ID:kingvuplus,項目名稱:boom,代碼行數:7,代碼來源:Button.py

示例2: __init__

	def __init__(self, path, type, update = True):
		GUIComponent.__init__(self)
		VariableText.__init__(self)
		self.type = type
		self.path = path
		if update:
			self.update()
開發者ID:Anubisko,項目名稱:enigma2,代碼行數:7,代碼來源:DiskInfo.py

示例3: __init__

	def __init__(self):
		VariableText.__init__(self)
		GUIComponent.__init__(self)
		self.doClock()
		
		self.clockTimer = eTimer()
		self.clockTimer.callback.append(self.doClock)
開發者ID:dazulrich,項目名稱:dvbapp,代碼行數:7,代碼來源:Clock.py

示例4: __init__

 def __init__(self, text = '', maxSize = False, visible_width = False, type = TEXT, currPos = 0, allMarked = True):
     NumericalTextInput.__init__(self, self.right)
     GUIComponent.__init__(self)
     VariableText.__init__(self)
     self.type = type
     self.allmarked = allMarked and text != '' and type != self.PIN
     self.maxSize = maxSize
     self.currPos = currPos
     self.visible_width = visible_width
     self.offset = 0
     self.overwrite = maxSize
     self.setText(text)
開發者ID:kingvuplus,項目名稱:eg-e2,代碼行數:12,代碼來源:Input.py

示例5: __init__

	def __init__(self, text="", maxSize = False, visible_width = False, type = TEXT):
		NumericalTextInput.__init__(self, self.right)
		GUIComponent.__init__(self)
		VariableText.__init__(self)
		self.type = type
		self.allmarked = (text != "") and (type != self.PIN)
		self.maxSize = maxSize
		self.currPos = 0
		self.visible_width = visible_width
		self.offset = 0
		self.overwrite = maxSize
		self.setText(text)
開發者ID:fairbird,項目名稱:Blackhole-OpenATV,代碼行數:12,代碼來源:Input.py

示例6: __init__

	def __init__(self, text=""):
		GUIComponent.__init__(self)
		VariableText.__init__(self)
		self.setText(text)
開發者ID:HasBahCa,項目名稱:enigma2,代碼行數:4,代碼來源:Label.py

示例7: __init__

	def __init__(self, text="", onClick = [ ]):
		GUIComponent.__init__(self)
		VariableText.__init__(self)
		self.setText(text)
		self.onClick = onClick
開發者ID:4doe,項目名稱:enigma2-old,代碼行數:5,代碼來源:Button.py

示例8: __init__

 def __init__(self, navcore, eventmap):
     GUIComponent.__init__(self)
     VariableText.__init__(self)
     PerServiceBase.__init__(self, navcore, eventmap)
開發者ID:kingvuplus,項目名稱:boom,代碼行數:4,代碼來源:PerServiceDisplay.py


注:本文中的VariableText.VariableText類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。