- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想知道,如何停止函数 iniciar
每次我点击按钮self.runButton.clicked.connect(self.iniciar)
程序卡住,我无法执行其他操作。
我希望计时器在函数 iniciar
无限重复时继续工作。
还有按钮 self.runButton1
停止函数 iniciar
。
我的代码:
#!/usr/bin/env python3
# Program created for play audios of time in zapoteco'
#
# Created by: Python 3.6, PyQt5 5.9.2.
#
# Author: Raul Espinosa raul@ninja-code.de
#
# WARNING! All changes made in this file will be lost!
#
# Version 0.2 GUI
import time
import subprocess
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_Form(object):
def setupUi(self, Form):
Form.setObjectName("Form")
Form.resize(383, 263)
palette = QtGui.QPalette()
brush = QtGui.QBrush(QtGui.QColor(164, 0, 0))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.Button, brush)
brush = QtGui.QBrush(QtGui.QColor(138, 226, 52))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.Light, brush)
brush = QtGui.QBrush(QtGui.QColor(164, 0, 0))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.Text, brush)
brush = QtGui.QBrush(QtGui.QColor(173, 127, 168))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.Base, brush)
brush = QtGui.QBrush(QtGui.QColor(114, 159, 207))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.Window, brush)
brush = QtGui.QBrush(QtGui.QColor(0, 0, 0))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.Shadow, brush)
brush = QtGui.QBrush(QtGui.QColor(164, 0, 0))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.Button, brush)
brush = QtGui.QBrush(QtGui.QColor(138, 226, 52))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.Light, brush)
brush = QtGui.QBrush(QtGui.QColor(164, 0, 0))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.Text, brush)
brush = QtGui.QBrush(QtGui.QColor(173, 127, 168))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.Base, brush)
brush = QtGui.QBrush(QtGui.QColor(114, 159, 207))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.Window, brush)
brush = QtGui.QBrush(QtGui.QColor(0, 0, 0))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.Shadow, brush)
brush = QtGui.QBrush(QtGui.QColor(46, 52, 54))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.Button, brush)
brush = QtGui.QBrush(QtGui.QColor(138, 226, 52))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.Light, brush)
brush = QtGui.QBrush(QtGui.QColor(190, 190, 190))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.Text, brush)
brush = QtGui.QBrush(QtGui.QColor(114, 159, 207))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.Base, brush)
brush = QtGui.QBrush(QtGui.QColor(114, 159, 207))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.Window, brush)
brush = QtGui.QBrush(QtGui.QColor(0, 0, 0))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.Shadow, brush)
Form.setPalette(palette)
Form.setPalette(palette)
self.label = QtWidgets.QLabel(Form)
self.label.setGeometry(QtCore.QRect(10, 0, 361, 181))
self.label.setObjectName("label")
self.horizontalSlider = QtWidgets.QSlider(Form)
self.horizontalSlider.setGeometry(QtCore.QRect(110, 240, 160, 16))
self.horizontalSlider.setOrientation(QtCore.Qt.Horizontal)
self.horizontalSlider.setObjectName("horizontalSlider")
self.horizontalSlider.setRange(0,100)
self.horizontalSlider.setSingleStep(1)
self.horizontalSlider.valueChanged.connect(self.valueHandler)
self.runButton = QtWidgets.QPushButton(Form)
self.runButton.setGeometry(QtCore.QRect(50, 180, 80, 25))
self.runButton.setObjectName("runButton")
self.runButton.clicked.connect(self.iniciar)
self.runButton1 = QtWidgets.QPushButton(Form)
self.runButton1.setGeometry(QtCore.QRect(250, 180, 80, 25))
self.runButton1.setObjectName("runButton1")
self.label_2 = QtWidgets.QLabel(Form)
self.label_2.setGeometry(QtCore.QRect(160, 220, 55, 17))
self.label_2.setObjectName("label_2")
self.timer = QtCore.QTimer(Form)
self.timer.timeout.connect(self.Time)
self.timer.start(1000)
self.lcdNumber = QtWidgets.QLCDNumber(Form)
self.lcdNumber.setGeometry(QtCore.QRect(280, 0, 101, 61))
self.lcdNumber.setInputMethodHints(QtCore.Qt.ImhNone)
self.lcdNumber.setFrameShape(QtWidgets.QFrame.NoFrame)
self.lcdNumber.setFrameShadow(QtWidgets.QFrame.Raised)
self.lcdNumber.setSmallDecimalPoint(True)
self.lcdNumber.setDigitCount(5)
self.lcdNumber.setMode(QtWidgets.QLCDNumber.Dec)
self.lcdNumber.setSegmentStyle(QtWidgets.QLCDNumber.Flat)
self.lcdNumber.display(time.strftime("%H"+":"+"%M"))
#tiempo = time.strftime("%H"+":"+"%M")
#print (tiempo)
#self.lcdNumber.setProperty("value", 12:20)
self.lcdNumber.setObjectName("lcdNumber")
self.retranslateUi(Form)
QtCore.QMetaObject.connectSlotsByName(Form)
def Time(self):
self.lcdNumber.display(time.strftime("%H"+":"+"%M"))
def valueHandler(self,value):
scaledValue = float(value)/100
print (scaledValue) , type(scaledValue)
return scaledValue
def retranslateUi(self, Form):
_translate = QtCore.QCoreApplication.translate
Form.setWindowTitle(_translate("Form", "XIGABA"))
Form.setToolTip(_translate("Form", "<html><head/><body><pre style=\" margin-top:0px; margin-bottom:15px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#ffffff;\"><span style=\" font-family:\'monospace\'; background-color:#ffffff;\">Creado con Software Libre.</span></pre></body></html>"))
self.label.setToolTip(_translate("Form", "<html><head/><body><p>Dictador de horario.</p></body></html>"))
self.label.setText(_translate("Form", "<html><head/><body><pre align=\"center\" style=\" margin-top:15px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#729fcf;\"><a name=\"taag_output_text\"/><span style=\" font-family:\'monospace\'; color:#555753; background-color:#729fcf;\">)</span><span style=\" font-family:\'monospace\'; color:#555753; background-color:#729fcf;\"> ( </span></pre><pre align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#729fcf;\"><span style=\" font-family:\'monospace\'; color:#555753; background-color:#729fcf;\"> ( /( )\\ ) ( ( ( ( </span></pre><pre align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#729fcf;\"><span style=\" font-family:\'monospace\'; color:#555753; background-color:#729fcf;\"> )\\()|()/( )\\ ) )\\ ( )\\ )\\ </span></pre><pre align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#729fcf;\"><span style=\" font-family:\'monospace\'; color:#555753; background-color:#729fcf;\">((_)\\ /(_)|()/( ((((_)( )((_|(((_)( </span></pre><pre align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#729fcf;\"><span style=\" font-family:\'monospace\'; color:#555753; background-color:#729fcf;\">__((_|_)) /(_))_)\\ _ )((_)_ )\\ _ )\\ </span></pre><pre align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#729fcf;\"><span style=\" font-family:\'monospace\'; color:#555753; background-color:#729fcf;\">\\ \\/ /_ _|(_)) __(_)_\\(_) _ )(_)_\\(_) </span></pre><pre align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#729fcf;\"><span style=\" font-family:\'monospace\'; color:#555753; background-color:#729fcf;\"> > < | | | (_ |/ _ \\ | _ \\ / _ \\ </span></pre><pre align=\"center\" style=\" margin-top:0px; margin-bottom:15px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#729fcf;\"><span style=\" font-family:\'monospace\'; color:#555753; background-color:#729fcf;\">/_/\\_\\___| \\___/_/ \\_\\|___//_/ \\_\\ </span></pre><pre align=\"center\" style=\" margin-top:0px; margin-bottom:15px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#729fcf;\"><span style=\" font-family:\'monospace\'; font-size:6pt; color:#555753; background-color:#729fcf;\">version 0.2 GUI</span></pre></body></html>"))
self.runButton.setText(_translate("Form", "Iniciar"))
self.runButton1.setText(_translate("Form", "Detener"))
self.label_2.setText(_translate("Form", "<html><head/><body><pre align=\"center\" style=\" margin-top:0px; margin-bottom:15px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#000000;\"><a name=\"taag_output_text\"/><span style=\" font-family:\'monospace\'; color:#ef2929; background-color:#000000;\">VOLUMEN</span></pre></body></html>"))
def iniciar(self):
self.runButton1.setEnabled(True)
position = self.horizontalSlider.value()
scaledValue = float(position)/100
print (scaledValue) , type(scaledValue)
while (True):
time.sleep(0.5)
second_test = time.strftime('%S')
minute_test = time.strftime('%M')
hour_test = time.strftime('%H')
tiempo = time.strftime("%H"+":"+"%M")
print (tiempo)
self.lcdNumber.setProperty("value", tiempo)
if int(minute_test) == int(00) and int(second_test) == int(00):
print ('llego al hora exacta')
filen = 'HRS' + hour_test + '_O.mp3.mp3'
print (filen)
subprocess.Popen(["play", filen, "vol", scaledValue]).communicate()
elif int(second_test) == int(00):
print ('llego al minuto')
filen = 'HRS' + hour_test + '.mp3'
filen2 = 'MIN' + minute_test + '.mp3.mp3'
print (filen)
print (filen2)
subprocess.Popen(["play", filen, "vol", str(scaledValue)]).communicate()
subprocess.Popen(["play", filen2, "vol", str(scaledValue)]).communicate()
if __name__ == "__main__":
import sys
app = QtWidgets.QApplication(sys.argv)
Form = QtWidgets.QWidget()
ui = Ui_Form()
ui.setupUi(Form)
Form.show()
sys.exit(app.exec_())
我用的是python3.6和pyqt5
最佳答案
您使用的 while true 等阻塞循环不适合 GUI,因为它们不允许您执行 GUI 的典型任务,例如检查事件、信号和槽。
在 Qt 中,因此在 PyQt 中,有一些方法可以避免这些问题,一个可能的解决方案是使用线程,实现它们的一种简单方法是使用 QRunnable 和 QThreadPool,但在此之前建议改革你的代码。
Qt Designer 提供了一个可以在widget 中实现设计但它不是widget 的类,创建一个继承自适当widget 的类并使用初始类来填充它是合适的。
class Widget(QtWidgets.QWidget, Ui_Form):
def __init__(self, *args, **kwargs):
QtWidgets.QWidget.__init__(self, *args, **kwargs)
self.setupUi(self)
self.runButton.clicked.connect(self.iniciar)
self.timer.timeout.connect(self.update_time)
self.horizontalSlider.valueChanged.connect(self.valueHandler)
def update_time(self):
self.lcdNumber.display(time.strftime("%H" + ":" + "%M"))
def valueHandler(self, value):
scaledValue = float(value) / 100
print(scaledValue), type(scaledValue)
return scaledValue
def iniciar(self):
self.runButton1.setEnabled(True)
position = self.horizontalSlider.value()
scaledValue = float(position) / 100
print(scaledValue), type(scaledValue)
self.runnable = Runnable(self)
QtCore.QThreadPool.globalInstance().start(self.runnable)
在下一节中,我将实现QRunnable
并传递小部件,该小部件将用于通信和更新 GUI 数据,因为 Qt 的规则是 GUI 不应更新从另一个线程,一个解决方案是使用 QMetaObject.invokeMethod
:
class Runnable(QtCore.QRunnable):
def __init__(self, w, *args, **kwargs):
QtCore.QRunnable.__init__(self, *args, **kwargs)
self.w = w
self.position_initial = self.w.horizontalSlider.value()
def run(self):
scaledValue = float(self.position_initial) / 100
print(scaledValue)
while True:
time.sleep(0.5)
second_test = time.strftime('%S')
minute_test = time.strftime('%M')
hour_test = time.strftime('%H')
tiempo = time.strftime("%H" + ":" + "%M")
print(tiempo)
QtCore.QMetaObject.invokeMethod(self.w.lcdNumber, "display",
QtCore.Qt.QueuedConnection,
QtCore.Q_ARG(str, tiempo))
if int(minute_test) == int(00) and int(second_test) == int(00):
print('llego al hora exacta')
filen = 'HRS' + hour_test + '_O.mp3.mp3'
print(filen)
subprocess.Popen(["play", filen, "vol", scaledValue]).communicate()
elif int(second_test) == int(00):
print('llego al minuto')
filen = 'HRS' + hour_test + '.mp3'
filen2 = 'MIN' + minute_test + '.mp3.mp3'
print(filen)
print(filen2)
subprocess.Popen(["play", filen, "vol", str(scaledValue)]).communicate()
subprocess.Popen(["play", filen2, "vol", str(scaledValue)]).communicate()
然后,按照iniciar
方法中的实现,我们通过QThreadPool
调用runnable:
self.runnable = Runnable(self)
QtCore.QThreadPool.globalInstance().start(self.runnable)
完整代码可以在下面link找到.
附言:
如果你想添加一个停止,我们必须改变一些东西,例如而不是 while True 你应该使用一个标志,并改变标志的状态:
class Runnable(QtCore.QRunnable):
def __init__(self, w, *args, **kwargs):
QtCore.QRunnable.__init__(self, *args, **kwargs)
self.w = w
self.position_initial = self.w.horizontalSlider.value()
self.m_stopped = False
def run(self):
scaledValue = float(self.position_initial) / 100
print(scaledValue)
while not self.m_stopped:
[...]
def stop(self):
self.m_stopped = True
然后我们创建了 detener
方法:
def detener(self):
self.runButton.setEnabled(True)
self.runButton1.setEnabled(False)
self.runnable.stop()
关于python - Pyqt5 如何避免无限循环卡住程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47996657/
我有 3 个列表项,每 3 秒向上旋转一次。我正在使用 transformY 属性来做这件事。问题是,当它到达最后一个元素时,它会循环返回,从而产生重新开始的效果。 如何通过在最后一项之后继续向上旋转
我如何制作一个处理旋转的无限/重复世界,就像在这个游戏中一样: http://bloodfromastone.co.uk/retaliation.html 我通过具有这样的层次结构对我的旋转移动世界进
这个问题已经有答案了: Using explicitly numbered repetition instead of question mark, star and plus (4 个回答) 已关闭
程序说明: I have this program of mine which is intended to read every word from a file (large one) and t
while 循环应该比较这两个对象的 ibsn。正在比较的对象: list[0] = new ReadingMatter ("Words and Stuff", "9-082-1090-1");
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我完全被屏蔽了。我尝试修改 C 中的“警报”信号,以便在秒数到期时读取一个简单的变量。我的代码如下: 在主要部分: int semnal; signal(SIGALRM, alarmHandle
我正在接受多行信息(字符串,直到我稍后解析它们)。例如: 1 5 0 2 9 6 2 9 1 我编写这段代码来分隔行,因为我将不得不以某种方式操作每一行。 Scanner scan = new Sca
我不熟悉 jQuery,并且我有多余的 jQuery 调用,我想将它们放入循环中。 $('.class1').on('click', function () { ... $('.class2').on
我有一个树结构,其中每个节点都有 5 个子节点,并且不允许超过 5 个。我希望以广度优先搜索的方式遍历这棵树。 现在我想使用广度优先搜索方式从选定的父节点计算空节点。 例如 如果给定的父节点为 1,则
目标/动机 我想写一个服务,它应该一直运行。但是当服务已经运行时,应该不可能再次启动该服务。 用例 用户 X 打开页面 myService.php 并通过单击页面上的按钮启动服务。之后关闭浏览器。一段
我正在尝试编译 shogun 工具箱,但遇到了这个错误 C:/shogun-3.0.0/shogun-3.0.0/src/shogun/../shogun/mathematics/Math.h
需要学校的 JavaScript 作业帮助,但不知道该怎么做,希望得到一些提示? 我们应该创建一个 6 面掷骰子程序,用户可以选择应该掷多少个骰子,最少 1 个和最多 5 个骰子。 所用骰子数量的总和
我在无限 ScrollView 中有 5 张图片。 因此,为了使 scrollView 无限/循环,我将图像定位如下: 5 1 2 3 4 5 1含义:最后一张图片第一张图片第二张图片.....最后一
我正在使用 ExTwitter库,并希望能够偶尔终止对流式 API 的调用以更改参数。 我当前的代码看起来像这样: for tweet #finished end 关于elixir - 如何中断(无
我想每 3 秒更改一次 div 的背景。这需要循环,因此一旦最后一个背景图像显示,它就会循环回到第一个背景图像,依此类推。我在这样做时遇到了麻烦。 我之前发过一篇文章,内容非常模糊,没有得到帮助。
我在做this教程,无法让我的页面正确加载。我不断在控制台中收到错误:[$rootScope:infdig]。 我对 Angular 很陌生,但从我读到的内容来看,我在某个地方有一个无限循环。我预计它
所以我试图创建一个无限的 asyncIterator/生成器。该代码应该为“for wait of”循环生成“Hello”和“Hi”,然后永远等待下一个值。问题是它不等待第三个值,也不在循环后打印 2
下图显示了我如何在 HTML5/JS 中制作无限背景滚动。我的连续背景由 X block Canvas 组成。我将在到达下一个 Canvas 之前立即渲染它,并释放上一个 Canvas。这里的问题是动
作为一个业余项目,我正在研究一些自制的素数生成问题,尝试编写一些不同的实现作为自学 C 和 C++ 的方法。当然,生成低素数的最快方法是已经拥有它们,所以我想着手建立一个硬盘素数列表数据文件。我想编写
我是一名优秀的程序员,十分优秀!