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


Python QThread.currentThread方法代码示例

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


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

示例1: main

# 需要导入模块: from PySide.QtCore import QThread [as 别名]
# 或者: from PySide.QtCore.QThread import currentThread [as 别名]
def main():

    loadtesterplugins()

    qt.mainthread = QThread.currentThread()  # Store current thread
    qt.initialize_view()  # Get the view ready
    dispatch_thread = QThread()  # The QThread to put the dispatcher on
    qt.maindispatch = QTDispatcher(qt.mainview)  # Set up the dispatcher
    qt.qapp.lastWindowClosed.connect(dispatch_thread.quit)  # Connect the close signal to the thread quit signal
    qt.maindispatch.moveToThread(dispatch_thread)  # Move the dispatcher to the new thread
    dispatch_thread.start()  # Start the thread
    qt.mainview.show()  # Show the main window
    res = qt.qapp.exec_()  # Start the event loop, exits when the last window has been closed
    dispatch_thread.wait()  # Wait for the dispatcher thread to finish
    sys.exit(res)
开发者ID:DragonFire168,项目名称:MoodleGradeTool,代码行数:17,代码来源:qgrade.py

示例2: _check_thread

# 需要导入模块: from PySide.QtCore import QThread [as 别名]
# 或者: from PySide.QtCore.QThread import currentThread [as 别名]
 def _check_thread(self):
     if QThread.currentThread() != self._processor.thread():
         err = 'Method must be called from thread owning the loop.'
         raise RuntimeError(err)
开发者ID:geertj,项目名称:looping,代码行数:6,代码来源:pyside.py

示例3: currentThreadName

# 需要导入模块: from PySide.QtCore import QThread [as 别名]
# 或者: from PySide.QtCore.QThread import currentThread [as 别名]
def currentThreadName():
    return QThread.currentThread().objectName()
开发者ID:OSUPychron,项目名称:pychron,代码行数:4,代码来源:thread.py


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