python - TypeError : PyQt4. QtCore.QVariantAnimation 表示 C++ 抽象类,无法实例化

标签 python pyqt pyqt5 pyqt4 qvariantanimation

我有这个 PyQt5 代码片段,我正在尝试将其转换为 PyQt4。 PyQt5 版本运行得很好,但是当我尝试转换为 PyQt4 时,出现此错误。我删除了 QtWidgets 但仍然收到此错误。我还尝试实例化 self.animation = QtCore.QVariantAnimation() ,但仍然遇到相同的错误。

Traceback (most recent call last):
  File ".\test1.py", line 29, in <module>
    lineedit = LineEdit()
  File ".\test1.py", line 13, in __init__
    valueChanged=self.on_color_change,
TypeError: PyQt4.QtCore.QVariantAnimation represents a C++ abstract class and cannot be instantiated

工作 PyQt5 版本

import sys
from PyQt5 import QtCore, QtGui, QtWidgets

class LineEdit(QtWidgets.QLineEdit):
    def __init__(self):
        super(LineEdit, self).__init__()
        self.textChanged.connect(self.start_animation)

        self.animation = QtCore.QVariantAnimation(
            startValue=QtGui.QColor(255, 127, 127),
            endValue=QtGui.QColor(255, 255, 255),
            duration=1000,
            valueChanged=self.on_color_change,
        )

    @QtCore.pyqtSlot()
    def start_animation(self):
        if self.animation.state() == QtCore.QAbstractAnimation.Running:
            self.animation.stop()
        self.animation.start()

    @QtCore.pyqtSlot(QtCore.QVariant)
    @QtCore.pyqtSlot(QtGui.QColor)
    def on_color_change(self, color):
        self.setStyleSheet("QLineEdit{background-color: %s}" % (color.name(),))

if __name__ == "__main__":
    app = QtWidgets.QApplication(sys.argv)
    lineedit = LineEdit()
    lineedit.show()
    sys.exit(app.exec_())

损坏的 PyQt4 版本

import sys
from PyQt4 import QtCore, QtGui

class LineEdit(QtGui.QLineEdit):
    def __init__(self):
        super(LineEdit, self).__init__()
        self.textChanged.connect(self.start_animation)

        self.animation = QtCore.QVariantAnimation(
            startValue=QtGui.QColor(255, 127, 127),
            endValue=QtGui.QColor(255, 255, 255),
            duration=1000,
            valueChanged=self.on_color_change,
        )

    @QtCore.pyqtSlot()
    def start_animation(self):
        if self.animation.state() == QtCore.QAbstractAnimation.Running:
            self.animation.stop()
        self.animation.start()

    @QtCore.pyqtSlot(QtCore.QVariant)
    @QtCore.pyqtSlot(QtGui.QColor)
    def on_color_change(self, color):
        self.setStyleSheet("QLineEdit{background-color: %s}" % (color.name(),))

if __name__ == "__main__":
    app = QtGui.QApplication(sys.argv)
    lineedit = LineEdit()
    lineedit.show()
    sys.exit(app.exec_())

有人知道如何解决这个问题吗?

最佳答案

在 Qt4 中 updateCurrentValue() 是一个需要实现的纯虚方法,在 Qt5 中它被更改为只是一个虚方法,在第一种情况下 C++ 强制实现它,但随着 Qt5 的变化它不再需要,所以解决方案是实现该方法:

# ...
class VariantAnimation(QtCore.QVariantAnimation):
    def updateCurrentValue(self, value):
        pass


class LineEdit(QtGui.QLineEdit):
    def __init__(self):
        super(LineEdit, self).__init__()
        self.textChanged.connect(self.start_animation)

        self.animation = VariantAnimation(
            startValue=QtGui.QColor(255, 127, 127),
            endValue=QtGui.QColor(255, 255, 255),
            duration=1000,
            valueChanged=self.on_color_change,
        )

    # ...

    @QtCore.pyqtSlot(QtCore.QVariant)
    @QtCore.pyqtSlot(QtGui.QColor)
    def on_color_change(self, color):
        if isinstance(color, QtCore.QVariant):
            color = QtGui.QColor(color)
        self.setStyleSheet("QLineEdit{background-color: %s}" % (color.name(),))
    # ...

关于python - TypeError : PyQt4. QtCore.QVariantAnimation 表示 C++ 抽象类,无法实例化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56572976/

相关文章:

python - 从列表中的层次结构创建嵌套字典

python - 如何使用PyCharm查看SQLite数据库中的哪些数据?

python - 制作一个可停止的简单秒表

python - QListWidget 所选项目按行排序

python - 在 python 中打包字典列表

python - 使用 python HL7 解析多条消息

python - 在QGraphicsItem上添加动画时遇到的一个问题

python - 使用 QPainter 叠加两个具有 alpha 值的像素图

python - Pyqt5中KeyEvent的正确处理,捕获KeyPressEvent的问题

python - 对象中的 AttributeError 没有属性 'toHtml' - pyqt5