下面是PyQt4的可运行示例,我使用下面的代码,在关闭窗口后得到了非常奇怪的问题,如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_())
答案 0 :(得分:1)
我从这里得到答案:Error in model view implemention of GUI in pyqt
使用父MaxMemoryAllocationSize
添加模型后,错误就消失了。