其他分享
首页 > 其他分享> > Qt开发之路54---QListView同时删除被选中的多行

Qt开发之路54---QListView同时删除被选中的多行

作者:互联网

一:设置属性

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

	setSelectionMode(QAbstractItemView::ExtendedSelection);

二:获取选中的行

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

	QModelIndexList indexList = selectedIndexes();

三:倒序排列行号

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

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

	//获取行号
 	QList<int> rowList;
    rowList.clear();
    for(int i = 0; i < indexList.size(); i++){
        index = indexList[i];
        rowList << index.row();
    }
	
	//降序 排列
    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,删除,int,54,行号,QListView,倒序,indexList
来源: https://blog.csdn.net/weixin_43229139/article/details/121496989