本文整理汇总了Python中PySide.QtCore.QThread.usleep方法的典型用法代码示例。如果您正苦于以下问题:Python QThread.usleep方法的具体用法?Python QThread.usleep怎么用?Python QThread.usleep使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PySide.QtCore.QThread
的用法示例。
在下文中一共展示了QThread.usleep方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: bool
# 需要导入模块: from PySide.QtCore import QThread [as 别名]
# 或者: from PySide.QtCore.QThread import usleep [as 别名]
x = bool(0)
y = bool(1)
# define key event (not used currently)
# f = QtGui.QKeyEvent(QtCore.QEvent.KeyPress, 0, QtCore.Qt.KeypadModifier, QtCore.QString(), x, 1)
# icon widget
icon = Icon()
# allow for keyboard input when widget is activated
icon.setFocusPolicy(QtCore.Qt.StrongFocus)
# enable widget to accept keyboard input
icon.setEnabled(y)
# show icon
icon.show()
# allow user to enter input for 'interval' seconds
interval = 10
timeLength = now() + interval
start = now()
print "now =", start
print "input allowed until", timeLength, "\n"
while True:
new_time = now()
app.processEvents()
last_time = new_time
QThread.usleep(100)
# sys.exit(app.exec_())