Qt树形控件QTreeView使用1——节点的添加删除操作_qtreeview删除节点后有空行(1)

img
img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上C C++开发知识点,真正体系化!

由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新

如果你需要这些资料,可以戳这里获取

使用
model->indexFromItem(itemProject).row()可以不用记得当前的条目是第几行。

对于复杂的目录生成见下面这段代码:

    QStandardItemModel* model = new QStandardItemModel(ui->treeView_Pro);
    model->setHorizontalHeaderLabels(QStringList()<<QStringLiteral("项目名")<<QStringLiteral("信息"));
    QStandardItem* itemProject = new QStandardItem(m_publicIconMap[QStringLiteral("treeItem_Project")],QStringLiteral("项目"));
    model->appendRow(itemProject);
    model->setItem(model->indexFromItem(itemProject).row(),1,new QStandardItem(QStringLiteral("项目信息说明")));
    QStandardItem* itemFolder = new QStandardItem(m_publicIconMap[QStringLiteral("treeItem_folder")],QStringLiteral("文件夹1"));
    itemProject->appendRow(itemFolder);
    itemProject->setChild(itemFolder->index().row(),1,new QStandardItem(QStringLiteral("信息说明")));
    itemFolder = new QStandardItem(m_publicIconMap[QStringLiteral("treeItem_folder")],QStringLiteral("文件夹2"));
    itemProject->appendRow(itemFolder);
    for(int i=0;i<5;++i){
        QStandardItem* itemgroup = newQStandardItem(m_publicIconMap[QStringLiteral("treeItem_group")],QStringLiteral("组%1").arg(i+1));
        itemFolder->appendRow(itemgroup);
        for(int j=0;j<(i+1);++j){
            QStandardItem* itemchannel = newQStandardItem(m_publicIconMap[QStringLiteral("treeItem_channel")],QStringLiteral("频道%1").arg(j+1));
            itemgroup->appendRow(itemchannel);
            itemgroup->setChild(itemchannel->index().row(),1,new QStandardItem(QStringLiteral("频道%1信息说明").arg(j+1)));
        }
    }
    itemProject->setChild(itemFolder->index().row(),1,new QStandardItem(QStringLiteral("文件夹2信息说明")));
    ui->treeView_Pro->setModel(model);

效果:

1.3 条目的其他操作

1.3.1 获取当前选中的条目

通过QTreeView函数
currentIndex
()可以获取当前选中条目的QModelIndex,QModelIndex可以看做是QStandardItem的数据封装,知道
QModelIndex就可以知道QStandardItem,通过QStandardItemModel的
itemFromIndex
函数即可得到QModelIndex对应的QStandardItem。

如:

QStandardItemModel*
 
model
 =
 
static_cast<
QStandardItemModel*>(
ui->
treeView->
model());

QModelIndex
 
currentIndex
 =
 
ui->
treeView->
currentIndex();

QStandardItem*
 
currentItem
 =
 
model->
itemFromIndex(
currentIndex
);

这里编一个小程序获取当前选中的树形条目

代码如下:

void Widget::on_treeView_clicked(const QModelIndex &index)
{
 QString str;
 str += QStringLiteral("当前选中:%1\nrow:%2,column:%3\n").arg(index.data().toString())
                       .arg(index.row()).arg(index.column());
 str += QStringLiteral("父级:%1\n").arg(index.parent().data().toString());
 ui->label_realTime->setText(str);
}

on_treeView_clicked
(
const
 
QModelIndex
 
&
index
)是树形控件项目点击的槽响应函数

程序运行结果如下:
当点击频道1时,显示频道1,

当点击旁边的信息说明时选中的是频道1旁边的信息说明条目

有时候,“频道1”和“频道1信息说明”是属于同一个条目,再选择“频道1信息说明”时,我们可能想得到的是旁边位于最左边的“频道1”,于是就涉及到兄弟节点的获取。

1.3.2 兄弟节点获取

节点间无父子关系,有并列关系的就称为兄弟节点,如下图红框内的10个节点都属于兄弟节点。

最常用的兄弟节点获取是“左右”节点,例如点击“频道1”要知道频道1的信息,就需要获取“频道1”右边的兄弟节点“频道1信息说明”

QModelIndex QAbstractItemModel::sibling(int row, int column, const QModelIndex & index)

QModelIndex QModelIndex::sibling(int row, int column) const

都可以用于获取兄弟节点信息

例如把
on_treeView_clicked
(
const
 
QModelIndex
 
&
index
)的代码改一下,每点击一条目,无论点击哪里,都能获取它的“名称”和“信息”:

void Widget::on_treeView_clicked(const QModelIndex &index)
{
    QString str;
    str += QStringLiteral("当前选中:%1\nrow:%2,column:%3\n").arg(index.data().toString())
                        .arg(index.row()).arg(index.column());
    str += QStringLiteral("父级:%1\n").arg(index.parent().data().toString());
    QString name,info;
    if(index.column() == 0)
    {
        name = index.data().toString();
        info = index.sibling(index.row(),1).data().toString();
    }
    else
    {
        name = index.sibling(index.row(),0).data().toString();
        info = index.data().toString();
    }
    str += QStringLiteral("名称:%1\n信息:%2").arg(name).arg(info);
    ui->label_realTime->setText(str);
}

1.3.3 寻找可见顶层

所谓可见顶层是目录树的可见最顶层父节点,如下图红框所示

QStandardItem * QStandardItemModel::invisibleRootItem()函数并不是得到我们想要的这个顶层节点,它得到的是所有节点的最终根节点,因此,得到顶层节点需要自己写操作,下面是根据任意一个节点获取其可见顶层节点的代码:

QStandardItem* getTopParent(QStandardItem* item)
{
    QStandardItem* secondItem = item;
    while(item->parent()!= 0)
    {
        secondItem = item->parent();
        item = secondItem;
    }
    if(secondItem->index().column() != 0)
    {
         QStandardItemModel* model = static_cast<QStandardItemModel*>(ui->treeView->model());
         secondItem = model->itemFromIndex(secondItem->index().sibling(secondItem->index().row(),0));
    }
    return secondItem;
}
QModelIndex getTopParent(QModelIndex itemIndex)
{
    QModelIndex secondItem = itemIndex;
    while(itemIndex.parent().isValid())
    {
        secondItem = itemIndex.parent();
        itemIndex = secondItem;
    }
    if(secondItem.column() != 0)
    {
         secondItem = secondItem.sibling(secondItem.row(),0);
    }
    return secondItem;
}

根据任意节点信息找到其最后的父级节点

使用如下:

QString
 
top
 =
 
getTopParent(
index).
data().
toString();

str
 +=
 
QStringLiteral(
“顶层节点名:%1\n”).
arg(
top);

效果:

img
img

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以添加戳这里获取

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

kFCMA==/dissolve/70/gravity/SouthEast)

[外链图片转存中…(img-3hGZfBgl-1715841504401)]
[外链图片转存中…(img-uHcW1cPn-1715841504401)]

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以添加戳这里获取

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

删除QTreeWidget中指定文本的节点,你可以使用QTreeWidget的findItems方法来查找匹配的节点,然后使用QTreeWidget的takeTopLevelItem或者QTreeWidgetItem的parent()->takeChild方法来删除节点。 以下是一个示例代码,演示如何删除指定文本的节点: ```cpp // 创建一个QTreeWidget对象 QTreeWidget* treeWidget = new QTreeWidget(); // 创建根节点 QTreeWidgetItem* rootItem = new QTreeWidgetItem(treeWidget); rootItem->setText(0, "Root"); // 创建子节点 QTreeWidgetItem* childItem1 = new QTreeWidgetItem(rootItem); childItem1->setText(0, "Child 1"); QTreeWidgetItem* childItem2 = new QTreeWidgetItem(rootItem); childItem2->setText(0, "Child 2"); // 查找并删除指定文本的节点 QString textToRemove = "Child 1"; QList<QTreeWidgetItem*> items = treeWidget->findItems(textToRemove, Qt::MatchExactly, 0); if (!items.isEmpty()) { QTreeWidgetItem* itemToRemove = items.first(); if (itemToRemove->parent() != nullptr) { itemToRemove->parent()->takeChild(treeWidget->indexOfTopLevelItem(itemToRemove)); } else { treeWidget->takeTopLevelItem(treeWidget->indexOfTopLevelItem(itemToRemove)); } delete itemToRemove; // 如果需要释放内存,可以删除节点 } // 输出删除节点后的树形结构 treeWidget->show(); ``` 在上述示例中,我们首先创建了一个QTreeWidget对象treeWidget,并创建了一个根节点rootItem。然后,我们使用QTreeWidgetItem的构造函数创建了两个子节点childItem1和childItem2,并设置了它们的文本。 接下来,我们使用findItems方法查找匹配指定文本的节点。在这个例子中,我们要删除文本为"Child 1"的节点。如果找到匹配的节点,我们先获取其父节点,然后使用takeChild方法从父节点删除节点。如果节点没有父节点,则使用takeTopLevelItem方法从树形结构中删除节点。 最后,我们可以选择使用delete操作删除节点以释放内存,如果不需要释放内存,则可以省略此步骤。 请注意,上述代码只删除了第一个匹配的节点。如果要删除所有匹配的节点,可以使用循环遍历并删除它们。 希望这可以帮助到你!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值