3

使用python, pyside,我得到这个错误:

    self.setCheckState(value)
TypeError: could not convert 'BooleanEditor' to 'QCheckBox'

除了许多谷歌的结果只显示“TypeError:无法转换”而不是“可以”,我仍然不知道如何解决这个问题。

代码片段:

class Editor(QGraphicsLayoutItem): 
    def __init__(self, name):
        QGraphicsLayoutItem.__init__(self)
        :
    :
    def update_value(self, value):
        pass

class BooleanEditor(Editor, QCheckBox):
    def __init__(self, parent, name, value, min, max):
        Editor.__init__(self, name)
        QCheckBox.__init__(self)

        self.update_value(value)

    def update_value(self, value):
        self.old_value = value
        self.setCheckState(value)  # Error occurs here. 

setCheckState 收到的“值”将是Qt.CheckState。根据调试打印,运行时,“值”Qt.Unchecked如预期的那样是 (== 0)。

请注意,BooleanEditor使用multiple inheritance. 我正在将wxWidget应用程序(其他人制作的)移植到Qt,现在我不想更改此设计,因为它来自原始(这意味着这里的多重继承本身不应该是原因,因为原始应用程序工作正常)。

环境)pyside 1.1.0、python 2.7.3、Ubuntu 12.04


Update-1) 正如@Luke Woodward 建议的那样,我尝试将超类的顺序交换为BooleanEditor(QCheckBox, Editor),然后在不同部分得到不同的错误。

class PaneGroup(GroupView, QFrame):
    def __init__(self, parent, group, config, top = None):
        GroupView.__init__(self, group, top) 
        QFrame.__init__(self)
        :
        sizer = QGraphicsGridLayout()
        :        
        for param_descr in self.params:
            name = param_descr['name']
            type, val, min, max, description = param_descr['type'], config[name], param_descr['min'], param_descr['max'], param_descr['description']
            try:
                enum = eval(param_descr['edit_method'])['enum']
                editor = self.top.EnumEditor(self, name, val, enum)
            except:
                editor = self.top._editor_types[type](self, name, val, min, max)
            self.top.editors[name] = editor
            sizer.addItem(editor, row, 1) # Error occurs here

错误:

TypeError: could not convert 'BooleanEditor' to 'QGraphicsLayoutItem'

对我来说,这似乎是一个关于多重继承初始化的问题..

4

1 回答 1

0

我很糟糕,原来我使用PyQt4的是PySide. 当我使用PySide时,不会发生错误(如@phihag 的要点所示),而使用PyQt4会产生相同的结果。这实际上很好奇,但我现在不会进一步调查。

使用以下代码进行复制。

#!/usr/bin/env python    
import sys
from PySide.QtCore import Qt
from PySide.QtGui import QApplication, QCheckBox, QGraphicsLayoutItem
#from PyQt4.QtCore import Qt
#from PyQt4.QtGui import QApplication, QCheckBox, QGraphicsLayoutItem

class Editor(QGraphicsLayoutItem):
    def __init__(self, name):
        QGraphicsLayoutItem.__init__(self)
    def update_value(self, value):
        pass

class BooleanEditor(Editor, QCheckBox):
    def __init__(self, value):
        Editor.__init__(self, "foo")
        QCheckBox.__init__(self)

        self.update_value(value)

    def update_value(self, value):
        self.old_value = value
        self.setCheckState(value) # Error occurs here
        print("End of update_value")

if __name__ == "__main__":
    qApp = QApplication(sys.argv)
    BooleanEditor(Qt.Checked)

PS。为什么我不知道我在使用PyQt?对于我使用哪一个,我取决于我一直在使用的这个框架(qt_guiROS机器人操作系统中调用),它没有明确告诉我正在使用哪个(它是开源项目,文档工作正在进行中) ...在破解它的代码后,我发现默认是PyQt.

于 2012-09-13T02:32:42.817 回答