2

我有一个简单的对话框,其中包含三个我想要不断更新的进度条(显示系统资源使用情况)。通过阅读文档,QTimer这是每毫秒触发一个函数的正确方法x(这将更新进度条)。但是,我无法让它工作,我也不知道为什么。将定时器超时信号连接到更新函数似乎相对简单,但它似乎永远不会触发。

这是我的代码:

import sys
from PyQt4 import QtGui, QtCore
import psutil

class Tiny_System_Monitor(QtGui.QWidget):
    def __init__(self):
        super(Tiny_System_Monitor, self).__init__()
        self.initUI()

    def initUI(self):
        mainLayout = QtGui.QHBoxLayout()

        self.cpu_progressBar = QtGui.QProgressBar()
        self.cpu_progressBar.setTextVisible(False)
        self.cpu_progressBar.setOrientation(QtCore.Qt.Vertical)
        mainLayout.addWidget(self.cpu_progressBar)

        self.vm_progressBar = QtGui.QProgressBar()
        self.vm_progressBar.setOrientation(QtCore.Qt.Vertical)
        mainLayout.addWidget(self.vm_progressBar)

        self.swap_progressBar = QtGui.QProgressBar()
        self.swap_progressBar.setOrientation(QtCore.Qt.Vertical)
        mainLayout.addWidget(self.swap_progressBar)

        self.setLayout(mainLayout)

        timer = QtCore.QTimer()
        timer.timeout.connect(self.updateMeters)
        timer.start(1000)

    def updateMeters(self):
        cpuPercent = psutil.cpu_percent()
        vmPercent = getattr(psutil.virtual_memory(), "percent")
        swapPercent = getattr(psutil.swap_memory(), "percent")

        self.cpu_progressBar.setValue(cpuPercent)
        self.vm_progressBar.setValue(vmPercent)
        self.swap_progressBar.setValue(swapPercent)
        print "updated meters"

def main():
    app = QtGui.QApplication(sys.argv)
    ex = Tiny_System_Monitor()

    ex.show()
    sys.exit(app.exec_())

if __name__ == '__main__':
    main()
4

1 回答 1

3

您必须保留对计时器对象的引用,否则initUI返回时将立即进行垃圾收集:

class Tiny_System_Monitor(QtGui.QWidget):
    ...
    def initUI(self):
        ...    
        self.timer = QtCore.QTimer()
        self.timer.timeout.connect(self.updateMeters)
        self.timer.start(1000)
于 2017-10-25T19:12:54.653 回答