其他分享
首页 > 其他分享> > Qt开发之路55---QTableView同时(整行)删除被选中的多行

Qt开发之路55---QTableView同时(整行)删除被选中的多行

作者:互联网

一:设置属性

设置为整行选择和多选属性,可通过鼠标拖拽、按下Ctrl或Shift键操作多选

	setSelectionBehavior(QAbstractItemView::SelectRows);
    setSelectionMode(QAbstractItemView::ExtendedSelection);

二:获取选中的列表

通过QModelIndexList selectedIndexes() const 获取选中的列表

	 QModelIndexList indexList = selectedIndexes();

三:筛选行号

indexList 列表中包含了不同行和列的item;
我们要删除整行,所以要筛选出行号;
利用QMap的属性,可以筛选如下:

    //map自动顺序行号
    QMap<int,int> rowMap;
    rowMap.clear();
    for(int i = 0; i < indexList.size(); i++){
        rowMap.insert(indexList[i].row(), 0);
    }

四:倒序排列行号

通过上述获取的indexList是根据鼠标点击的顺序排列的,是无序的。
由于删除一行后,原有的行号会发生变化,若先删除前面的行,后面的行号就会变化。
因此,从后面删除就可以规避这个问题。

如下,对行号进行倒序排列:

   //行号
    QList<int> rowList;
    rowList.clear();
    rowList = rowMap.keys();

    //降序 排序
    qSort(rowList.begin(), rowList.end(), cmpAB);
	
	bool cmpAB(int a,int b)
	{
	    return b<a;
	}

四:倒序删除

如下,按行号进行倒序删除:

    for(int i = 0; i < rowList.size(); i++){

        m_model.removeRow(rowList[i]);
    }

标签:rowList,Qt,删除,55,行号,整行,rowMap,倒序,indexList
来源: https://blog.csdn.net/weixin_43229139/article/details/121496820