繁体   English   中英

PyQt,带有QStringModel的QComboBox导致QObject :: startTimer:QTimer仅可用于以QThread开头的线程

[英]PyQt, QComboBox with QStringModel cause QObject::startTimer: QTimer can only be used with threads started with QThread

以下是PyQt4的可运行示例,我使用下面的代码,遇到了一个非常奇怪的问题,例如QObject::startTimer: QTimer can only be used with threads started with QThread关闭窗口后QObject::startTimer: QTimer can only be used with threads started with QThread

combo = ExtendedComboBox()
# combo.addItems(string_list)
combo.setModel(QStringListModel(string_list))

一旦更改为以下代码,一切都将正常运行:

combo = ExtendedComboBox()
combo.addItems(string_list)
# combo.setModel(QStringListModel(string_list))

您的每条评论都值得赞赏:)

在此处附加完整代码:

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from PyQt4.QtCore import Qt
from PyQt4.QtGui import QCompleter, QComboBox, QSortFilterProxyModel, QDialog


class ExtendedComboBox(QComboBox):
    def __init__(self, parent=None):
        super(ExtendedComboBox, self).__init__(parent)

        self.setFocusPolicy(Qt.StrongFocus)
        self.setEditable(True)

        # add a filter model to filter matching items
        self.pFilterModel = QSortFilterProxyModel(self)
        self.pFilterModel.setFilterCaseSensitivity(Qt.CaseInsensitive)
        self.pFilterModel.setSourceModel(self.model())

        # add a completer, which uses the filter model
        self.completer = QCompleter(self.pFilterModel, self)
        # always show all (filtered) completions
        self.completer.setCompletionMode(QCompleter.UnfilteredPopupCompletion)
        self.setCompleter(self.completer)

        # connect signals
        self.lineEdit().textEdited[unicode].connect(self.pFilterModel.setFilterFixedString)
        self.completer.activated.connect(self.on_completer_activated)


    # on selection of an item from the completer, select the corresponding item from combobox
    def on_completer_activated(self, text):
        if text:
            index = self.findText(text)
            self.setCurrentIndex(index)


    # on model change, update the models of the filter and completer as well
    def setModel(self, model):
        super(ExtendedComboBox, self).setModel(model)
        self.pFilterModel.setSourceModel(model)
        self.completer.setModel(self.pFilterModel)


    # on model column change, update the model column of the filter and completer as well
    def setModelColumn(self, column):
        self.completer.setCompletionColumn(column)
        self.pFilterModel.setFilterKeyColumn(column)
        super(ExtendedComboBox, self).setModelColumn(column)


if __name__ == "__main__":
    import sys
    from PyQt4.QtGui import QStringListModel, QApplication, \
        QStandardItemModel, QStandardItem, QVBoxLayout, QHBoxLayout, \
        QMainWindow

    app = QApplication(sys.argv)
    # win = QDialog()
    # win.setMinimumSize(400, 400)
    # layout = QHBoxLayout()
    # win.setLayout(layout)
    string_list = ['hola muchachos', 'adios amigos', 'hello world', 'good bye']
    combo = ExtendedComboBox()
    # combo.addItems(string_list)
    combo.setModel(QStringListModel(string_list))
    # model = QStandardItemModel()
    # for i, word in enumerate(['hola', 'adios', 'hello', 'good bye']):
    #     item = QStandardItem(word)
    #     model.setItem(i, 0, item)
    #
    # combo.setModel(model)
    # layout.addWidget(combo)
    combo.show()
    # win.show()

    sys.exit(app.exec_())

我从这里得到了答案: pyqt中GUI的模型视图实现中的错误

在添加带有父combo.setModel(QStringListModel(string_list, combo)) ,错误消失了。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM