4

我试图从 PyQt 中的非主线程发送信号,但我不知道做错了什么!当我执行程序时,它会因以下错误而失败:

QObject::connect: Cannot queue arguments of type 'QTextCursor'
(Make sure 'QTextCursor' is registered using qRegisterMetaType().)

这是我的代码:

 class Sender(QtCore.QThread):
        def __init__(self,q):
            super(Sender,self).__init__()
            self.q=q
        def run(self):

            while True:
                pass
                try: line = q.get_nowait()
             # or q.get(timeout=.1)
                except Empty: 
                    pass
                else: 
                   self.emit(QtCore.SIGNAL('tri()')) 
 class Workspace(QMainWindow, Ui_MainWindow):
    """ This class is for managing the whole GUI `Workspace'.
        Currently a Workspace is similar to a MainWindow
    """

    def __init__(self):  
try:
            from Queue import Queue, Empty
        except ImportError:
            while True:
    #from queue import Queue, Empty  # python 3.x
                print "error"

        ON_POSIX = 'posix' in sys.builtin_module_names

        def enqueue_output(out, queue):
            for line in iter(out.readline, b''):
                queue.put(line)
            out.close()

        p= Popen(["java -Xmx256m -jar bin/HelloWorld.jar"],cwd=r'/home/karen/sphinx4-1.0beta5-src/sphinx4-1.0beta5/',stdout=PIPE, shell=True, bufsize= 4024)
        q = Queue()
        t = threading.Thread(target=enqueue_output, args=(p.stdout, q)) 
          t.daemon = True # thread dies with the program
        t.start()
        self.sender= Sender(q)
         self.connect(self.sender, QtCore.SIGNAL('tri()'), self.__action_About)
        self.sender.start()

我认为我将参数发送到线程的方式是错误的......我需要知道如何将参数发送到线程,在我的情况下我需要发送q到工作线程。

4

2 回答 2

2

PyQt5 很新,但是当您尝试从不是“应用程序线程”的线程执行 GUI 操作时,这似乎会发生。我把它放在引号中是因为认为即使在相当简单的 PyQt5 应用程序中QApplication.instance().thread()总是返回相同的对象似乎是错误的。

要做的事情是使用信号/插槽机制从工作线程发送任何类型的数据(在我的情况下,通过扩展创建的线程QtCore.QRunnable,另一种模式显然是QtCore.QThreadand QtCore.QObject.moveToThread,请参见此处)。

然后还包括检查所有可能从非“应用程序线程”接收数据的插槽方法。在执行期间以可视方式记录消息的示例:

def append_message(self, message):
    # this "instance" method is very useful!
    app_thread = QtWidgets.QApplication.instance().thread()
    curr_thread = QtCore.QThread.currentThread()
    if app_thread != curr_thread:
        raise Exception('attempt to call MainWindow.append_message from non-app thread')
    ms_now = datetime.datetime.now().isoformat(sep=' ', timespec='milliseconds')
    self.messages_text_box.insertPlainText(f'{ms_now}: {message}\n')
    # scroll to bottom
    self.messages_text_box.moveCursor(QtGui.QTextCursor.End)

无意中直接从非“应用程序线程”调用它太容易了。

犯这样的错误然后引发异常是好的,因为它会为您提供显示罪魁祸首调用的堆栈跟踪。然后更改调用,使其改为向 GUI 类发送信号,该槽可以是 GUI 类(此处append_message)中的方法,或者是随后调用的方法append_message

在我的示例中,我在上面包含了“滚动到底部”行,因为只有当我添加该行时,这些“无法排队”错误才开始发生。换句话说,完全有可能摆脱一定数量的不合规处理(在这种情况下,在每次调用时添加更多文本)而不会引发任何错误......只有稍后你才会遇到困难。为了防止这种情况,我建议具有 GUI 功能的 GUI 类中的每个方法都应该包括这样的检查!

于 2021-05-22T18:37:04.323 回答
1

确保使用 qRegisterMetaType() 注册了“QTextCursor”。

您是否尝试使用qRegisterMetaType功能?

官方手册

该类用作编组 QVariant 和排队信号和插槽连接中的类型的帮助器。它将类型名称与类型相关联,以便可以在运行时动态创建和销毁它。使用 Q_DECLARE_METATYPE() 声明新类型,使它们可用于 QVariant 和其他基于模板的函数。调用 qRegisterMetaType() 使类型可用于非基于模板的函数,例如排队的信号和槽连接

于 2012-12-03T08:55:09.767 回答