我正在尝试创建一个 QAbstractListView 以与 QComboBox 一起使用,该 QComboBox 维护它包含的项目的排序列表。我在下面包含了一些示例代码来说明我的问题。当我更新列表中的项目时,组合框的 currentIndex 不会更新以反映对模型的更改。我试过使用 rowsAboutToBeInserted 和 rowsInserted 信号,但我看不到任何效果(也许我做错了?)。
我的实际用例稍微复杂一些,但例子应该足够了。被排序的项目不仅仅是字符串,并且需要更多的努力来排序并具有与其 DisplayRole 不同的 ItemDataRole。
itemsAdded 和 itemsRemoved 是我自己的函数,它们将连接到我试图代理的另一个列表中的信号。
要触发问题,请按“插入“c”按钮。字符串被正确插入到列表中,但是选择从“e”移动到“d”(即选择索引没有改变)。
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from PyQt4 import QtCore, QtGui
class Model(QtCore.QAbstractListModel):
def __init__(self, *args, **kwargs):
QtCore.QAbstractListModel.__init__(self, *args, **kwargs)
self.items = []
def rowCount(self, parent=QtCore.QModelIndex()):
return len(self.items)
def data(self, index, role=QtCore.Qt.DisplayRole):
if index.isValid() is True:
if role == QtCore.Qt.DisplayRole:
return QtCore.QVariant(self.items[index.row()])
elif role == QtCore.Qt.ItemDataRole:
return QtCore.QVariant(self.items[index.row()])
return QtCore.QVariant()
def itemsAdded(self, items):
# insert items into their sorted position
items = sorted(items)
row = 0
while row < len(self.items) and len(items) > 0:
if items[0] < self.items[row]:
self.items[row:row] = [items.pop(0)]
row += 1
row += 1
# add remaining items to end of list
if len(items) > 0:
self.items.extend(items)
def itemsRemoved(self, items):
# remove items from list
for item in items:
for row in range(0, len(self.items)):
if self.items[row] == item:
self.items.pop(row)
break
def main():
app = QtGui.QApplication([])
w = QtGui.QWidget()
w.resize(300,300)
layout = QtGui.QVBoxLayout()
model = Model()
model.itemsAdded(['a','b','d','e'])
combobox = QtGui.QComboBox()
combobox.setModel(model)
combobox.setCurrentIndex(3)
layout.addWidget(combobox)
def insertC(self):
model.itemsAdded('c')
button = QtGui.QPushButton('Insert "c"')
button.clicked.connect(insertC)
layout.addWidget(button)
w.setLayout(layout)
w.show()
app.exec_()
if __name__ == '__main__':
main()