本文整理汇总了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()
示例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()
示例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()