Qcombobox在C++ Qt中删除和添加项目

Qcombobox remove and add item in C++ Qt

在 Qtableview2 的第 1 列中创建组合框并从 Qtableview1 的第 1 列传递值 所以我将 column1 table1 值存储在 Qstringlist 中并传递给 combobox

void cymodel::rowvalues() {
    QAbstractItemModel* table1 = ui.tableView->model();
    QAbstractItemModel* table2 = ui.tableView_2->model();
    QStringList colvallist1;

    for (int r = 0, maxI = table1->rowCount(); r < maxI; ++r)
        colvallist1.append(table1->data(table1->index(r, 0)).toString());//store value in stringlist
        for (int i = 0, maxI = table2->rowCount(); i < maxI; ++i)//for all rows
        {
            const QModelIndex idx = table2->index(i, 1);
            QComboBox* combo = qobject_cast<QComboBox*>(ui.tableView_2->indexWidget(idx));
            if (!combo)
            {
                combo = new QComboBox(); // make combo  
                ui.tableView_2->setIndexWidget(idx, combo);// add combo
            }
        //    combo->model()->removeRows(0, combo->count(), combo->rootModelIndex());
            colvallist1.removeDuplicates(); // clear duplicates in colvallist1
            colvallist1.removeAll(QString("")); //remove empty row data
            combo->setPlaceholderText(QString(" "));
            combo->addItems(colvallist1);
}
}

connect(ui.tableView->model(), &QAbstractItemModel::dataChanged, this,
              &cymodel::rowvalues);

每次使用 removerows() 删除所有项目,如果我在 column0 table1 中添加一些值,然后在组合框中 select 并再次在 table1 Column0 中添加值,此时组合框 selection 消失 但是如果我不使用 removerows() 那么当我将新项目添加到组合框时它会多次添加,比如添加 2 个值然后我在 table1 col 中再添加 2 个然后在组合框中它变成 4

那么,如何添加出现在 colvallist1 中但尚未出现在组合中的那些并删除那些未出现在 colvallist1 中的??

谢谢大家帮忙!!

谢谢,我解决了这个.. 删除组合框中不在 colvallist1.. 中的项目而不更改选择 这是代码--

void cymodel::rowvalues() {
    QAbstractItemModel* table1 = ui.tableView->model();
    QAbstractItemModel* table2 = ui.tableView_2->model();
    QStringList colvallist1;

    for (int r = 0, maxI = table1->rowCount(); r < maxI; ++r)
        colvallist1.append(table1->data(table1->index(r, 0)).toString());//store value in stringlist
        for (int i = 0, maxI = table2->rowCount(); i < maxI; ++i)//for all rows
        {
            const QModelIndex idx = table2->index(i, 1);
            QComboBox* combo1 = qobject_cast<QComboBox*>(ui.tableView_2- 
             >indexWidget(idx));
        if (!combo1)
        {
            combo1 = new QComboBox(); // make combo  
            ui.tableView_2->setIndexWidget(idx, combo);// add combo
        }
        colvallist1.removeDuplicates(); // clear duplicates in colvallist1
        colvallist1.removeAll(QString("")); //remove empty row data
        combo1->setPlaceholderText(QString(" "))
        QString selected = combo1->currentText();
        int indx = combo1->currentIndex();
        combo1->clear();
        combo1->addItems(colvallist1);
        combo1->findData(selected);
        combo1->setCurrentIndex(indx);
        combo1->setCurrentText(selected); 
      }