当前位置: 首页>>代码示例>>Python>>正文


Python GUISkin.close方法代码示例

本文整理汇总了Python中Components.GUISkin.GUISkin.close方法的典型用法代码示例。如果您正苦于以下问题:Python GUISkin.close方法的具体用法?Python GUISkin.close怎么用?Python GUISkin.close使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Components.GUISkin.GUISkin的用法示例。


在下文中一共展示了GUISkin.close方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: doClose

# 需要导入模块: from Components.GUISkin import GUISkin [as 别名]
# 或者: from Components.GUISkin.GUISkin import close [as 别名]
	def doClose(self):
		self.hide()
		for x in self.onClose:
			x()

		# fixup circular references
		del self.helpList
		GUISkin.close(self)

		# first disconnect all render from their sources.
		# we might split this out into a "unskin"-call,
		# but currently we destroy the screen afterwards
		# anyway.
		for val in self.renderer:
			val.disconnectAll()  # disconnected converter/sources and probably destroy them. Sources will not be destroyed.

		del self.session
		for (name, val) in self.items():
			val.destroy()
			del self[name]

		self.renderer = [ ]

		# really delete all elements now
		self.__dict__.clear()
开发者ID:openmips,项目名称:stbgui,代码行数:27,代码来源:Screen.py

示例2: doClose

# 需要导入模块: from Components.GUISkin import GUISkin [as 别名]
# 或者: from Components.GUISkin.GUISkin import close [as 别名]
	def doClose(self):
		self.hide()
		for x in self.onClose:
			x()
		
		# fixup circular references
		del self.helpList
		GUISkin.close(self)

		# first disconnect all render from their sources.
		# we might split this out into a "unskin"-call,
		# but currently we destroy the screen afterwards
		# anyway.
		for val in self.renderer:
			val.disconnectAll()  # disconnected converter/sources and probably destroy them. Sources will not be destroyed.

		del self.session

		# we can have multiple dict entries with different names but same Element
		# but we dont can call destroy multiple times
		for name in self.keys():
			val = self[name]
			del self[name] # remove from dict
			if val is not None: # is not a duplicate...
				val.destroy()
				for (n, v) in self.items():
					if v == val: # check if it is the same Element
						self[n] = None # mark as duplicate

		self.renderer = [ ]

		# really delete all elements now
		self.__dict__.clear()
开发者ID:st7TEAM,项目名称:dreambox,代码行数:35,代码来源:Screen.py

示例3: doClose

# 需要导入模块: from Components.GUISkin import GUISkin [as 别名]
# 或者: from Components.GUISkin.GUISkin import close [as 别名]
    def doClose(self):
        self.hide()
        for x in self.onClose:
            x()

        del self.helpList
        GUISkin.close(self)
        for val in self.renderer:
            val.disconnectAll()

        del self.session
        for name, val in self.items():
            val.destroy()
            del self[name]

        self.renderer = []
        self.__dict__.clear()
开发者ID:kingvuplus,项目名称:eg-e2,代码行数:19,代码来源:Screen.py


注:本文中的Components.GUISkin.GUISkin.close方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。