如何使用QItemSelectionModel为QComboBox

How to use QItemSelectionModel for QComboBox?

本文关键字:QComboBox QItemSelectionModel 何使用      更新时间:2023-10-16

如何使用QItemSelectionModel for QComboBox?

BaseModel *baseModel = new BaseModel(data, this);
QItemSelectionModel baseModelSelected(baseModel);
ui->tableView->setModel(baseModel);
ui->comboBox->setModel(baseModel);
ui->tableView->setSelectionModel(baseModelSelected);
ui->comboBox->setSelectionModel(baseModelSelected); // can't
QComboBox

允许您共享选择模型。但是,您可以使用视图的选择模型在用户选择列表中的新项时更新组合框。

例如:

QStringListModel* model = new QStringListModel(QStringList() << "Op1" << "Opt2" << "Opt3" << "Opt4");
QListView* view = new QListView();
view->setModel(model);
QComboBox* combobox = new QComboBox();
combobox->setMinimumWidth(200);
combobox->setModel(model);
QWidget* w = new QWidget();
QHBoxLayout* layout = new QHBoxLayout(w);
layout->addWidget(view);
layout->addWidget(combobox);
QObject::connect(view->selectionModel(), &QItemSelectionModel::selectionChanged, [=](
                 QItemSelection const& newSelection, QItemSelection const& previousSelection) {
    if (newSelection.isEmpty())
        return; // No selected item in the view. Do nothing
    // First selected item
    QString const item = newSelection.indexes().first().data().toString();
    combobox->setCurrentText(item);
});