我试图在Qt中选择抽象项目视图的项目,给出它们的字符串值。我已经编写了基于它的字符串内容找到任何QModelIndex
的函数。
我现在正试图将我发现的所有QModelIndex
es放入单一选择中。我的方法签名:
// Will select all items that contain any of the strings
// given by 1st argument
virtual void selectItems(const QStringList&) override;
我的实现看起来像这样(但没有正常工作):
void QAbstractItemViewResult::selectItems(const QStringList& list)
{
if(list.size() > 0) {
QItemSelectionModel::SelectionFlags flags = QItemSelectionModel::ClearAndSelect;
QItemSelection selection;
Q_FOREACH(const QString text, list) {
// Find index by string is a method I implemented earlier
// The method works correctly
QModelIndex index(findIndexByString(targetView_, list[0]));
if(index.isValid()) {
// This is an attempt to add model indx into selection
selection.select(index, index);
}
}
// When the selection is created, this should select it in index
targetView_->selectionModel()->select(selection, flags);
}
}
问题是,此代码始终只选择列表中的第一项,例如。对于"B1","C1","A1"
,它看起来像这样:
该表启用了多选:
那么如何以编程方式正确选择多个项目?如果您需要findIndexByString
,可以在此处找到:https://github.com/Darker/qt-gui-test/blob/master/results/QAbstractItemViewResult.cpp#L5
答案 0 :(得分:3)
清除每次迭代的选择。
<德尔>替换:德尔>
QItemSelectionModel::SelectionFlags flags = QItemSelectionModel::ClearAndSelect;
<德尔>由:德尔>
QItemSelectionModel::SelectionFlags flags = QItemSelectionModel::Select;
编辑:您通过list[0]
代替text
:
findIndexByString(targetView_, list[0])
顺便说一下,你应该在循环中使用 const引用:
Q_FOREACH(const QString &text, list) {
如果使用C ++ 11或更高版本,则使用本机版本:
for (const QSring &text : list) {