本文整理汇总了Python中MT.getRegisteredNodes方法的典型用法代码示例。如果您正苦于以下问题:Python MT.getRegisteredNodes方法的具体用法?Python MT.getRegisteredNodes怎么用?Python MT.getRegisteredNodes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MT
的用法示例。
在下文中一共展示了MT.getRegisteredNodes方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: initList
# 需要导入模块: import MT [as 别名]
# 或者: from MT import getRegisteredNodes [as 别名]
def initList(self):
nodeTypes = MT.getRegisteredNodes()
for nt in nodeTypes:
currItem = self.invisibleRootItem();
for c in nt.split("."):
exists = False
for i in range(currItem.childCount()):
child = currItem.child(i)
if child is None: continue
if c == child.text(0):
currItem = child
exists = True
continue
if not exists:
item = QTreeWidgetItem([c, nt])
currItem.addChild(item)
currItem = item