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


Python QCoreApplication.instance方法代码示例

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


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

示例1: deletefile

# 需要导入模块: from PyQt.QtCore import QCoreApplication [as 别名]
# 或者: from PyQt.QtCore.QCoreApplication import instance [as 别名]
 def deletefile(layer):
     try:
         os.remove(filename)
     except:
         file(filename, "w").close()
         assert os.path.getsize(filename) == 0, "removal and truncation of {} failed".format(filename)
     # print "Deleted file - sleeping"
     time.sleep(1)
     QCoreApplication.instance().processEvents()
开发者ID:Clayton-Davis,项目名称:QGIS,代码行数:11,代码来源:test_qgsdelimitedtextprovider.py

示例2: rewritefile

# 需要导入模块: from PyQt.QtCore import QCoreApplication [as 别名]
# 或者: from PyQt.QtCore.QCoreApplication import instance [as 别名]
 def rewritefile(layer):
     with file(filename, 'w') as f:
         f.write("name,size,id\ntoad,small,5\nmole,medium,6\nbadger,big,7\n")
     # print "Rewritten file - sleeping"
     time.sleep(1)
     QCoreApplication.instance().processEvents()
开发者ID:Clayton-Davis,项目名称:QGIS,代码行数:8,代码来源:test_qgsdelimitedtextprovider.py

示例3: appendfile

# 需要导入模块: from PyQt.QtCore import QCoreApplication [as 别名]
# 或者: from PyQt.QtCore.QCoreApplication import instance [as 别名]
 def appendfile(layer):
     with file(filename, 'a') as f:
         f.write('3,tigger\n')
     # print "Appended to file - sleeping"
     time.sleep(1)
     QCoreApplication.instance().processEvents()
开发者ID:Clayton-Davis,项目名称:QGIS,代码行数:8,代码来源:test_qgsdelimitedtextprovider.py


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