如何从QTreeview中删除所有行和子行

时间:2011-08-14 11:26:38

标签: c++ qt

我不知道为什么我在从qtreeview

中删除所有行和子行时遇到问题

我正在使用QStandardItemModel作为模型。现在这是我的代码不起作用。

可能是什么问题?

QModelIndex FirstQModelIndex;
QModelIndex parentQModelIndex;
int iMdlChidCound = m_model->hasChildren();
if(iMdlChidCound > 0)
{
    // only if there at list 1 row in the view 
    FirstQModelIndex = m_model->item(0,0)->index();
    QStandardItem* feedItem = m_model->itemFromIndex(FirstQModelIndex);
    // get the parent of the first row its the header row 
    QStandardItem* parentItem = feedItem->parent();


    // here im getting exception 
    int parent_rows= parentItem->hasChildren();
    parentQModelIndex = m_model->indexFromItem(parentItem);


    // now i like to delete all the rows under the header , and its dosnt work 
    if(parent_rows>0)
    {
        bool b = feedItem->model()->removeRows(0,y,parentQModelIndex);
    }
}

2 个答案:

答案 0 :(得分:8)

看起来很多你正在做的事情是多余的。如果您的唯一目标是从模型中删除所有行,则可以使用QStandardItemModel::clear

在你的代码中,你以一种你不需要的方式在模型和项目之间跳跃。

if(m_model->hasChildren()) {
    m_model->removeRows(0, m_model->rowCount());
}

那应该做你想要的。

答案 1 :(得分:1)

QStandardItemModel ::明确()

清除所有项目,包括标题行。