• Qtreeview改变当前节点的名称


    setContextMenuPolicy(Qt::CustomContextMenu); 

    通过创建一个结构体对象,将该对象绑定到该节点上,并且进行该节点的信息保存.

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. // 定义一个结构体 Name
    8. struct Name {
    9. QString name;
    10. int value;
    11. };
    12. int main(int argc, char *argv[]) {
    13. QApplication app(argc, argv);
    14. // 创建一个标准项模型
    15. QStandardItemModel model;
    16. // 创建根节点
    17. QStandardItem* rootNode = new QStandardItem("Root Node");
    18. // 创建 Name 结构体的实例
    19. Name nameData;
    20. nameData.name = "John";
    21. nameData.value = 42;
    22. // 将 Name 结构体实例保存为 QVariant,并关联到根节点上
    23. QVariant customData = QVariant::fromValue(nameData);
    24. // 创建一个标准项,并设置其文本为 Name 结构体的 name 成员
    25. QStandardItem* item = new QStandardItem(customData.value().name);
    26. // 将关联的 QVariant 数据保存到标准项的 UserRole 角色上
    27. item->setData(customData, Qt::UserRole);
    28. // 将标准项添加到根节点下
    29. rootNode->appendRow(item);
    30. // 将根节点添加到模型中
    31. model.appendRow(rootNode);
    32. // 创建树形视图并设置模型
    33. QTreeView treeView;
    34. treeView.setModel(&model);
    35. // 显示树形视图
    36. treeView.show();
    37. // 获得标签的名字
    38. QString name = item->text();
    39. QVariant retrievedData = item->data(Qt::UserRole); // 获取关联的 QVariant 数据
    40. // read data from iten
    41. Name retrievedNameData = retrievedData.value(); // 将 QVariant 转换为 Name 结构体的实例
    42. qDebug() << "Name: " << retrievedNameData.name;
    43. qDebug() << "Value: " << retrievedNameData.value;
    44. qDebug() << "name: " << name;
    45. return app.exec();
    46. }

    void QStandardItem::setData(const QVariant &value, int role = Qt::UserRole + 1)

    将给定角色的项数据设置为指定

    1. //将自定义的结构体对象绑定对象
    2. void QStandardItem::setData(const QVariant &value, int role = Qt::UserRole + 1)

    改变当前的节点的名称

    1. QObject::connect(&treeView, &QTreeView::doubleClicked, [&](const QModelIndex &index) {
    2. if (index.isValid()) {
    3. // 获取当前节点的文本
    4. QString oldName = index.data().toString();
    5. // 使用QLineEdit进行编辑
    6. QLineEdit *edit = new QLineEdit();
    7. edit->setText(oldName);
    8. edit->setAlignment(Qt::AlignCenter);
    9. // 将QLineEdit作为节点的编辑器
    10. treeView.setIndexWidget(index, edit);
    11. // 当编辑器失去焦点时,保存新的节点名称
    12. QObject::connect(edit, &QLineEdit::editingFinished, [=]() {
    13. QString newName = edit->text();
    14. // 保存新的节点名称,这里你可以将其存储到合适的数据结构中
    15. qDebug() << "节点" << oldName << "被重命名为" << newName;
    16. // 移除编辑器,显示新的节点名称
    17. treeView.setIndexWidget(index, nullptr);
    18. // 更新模型中的数据
    19. model.setData(index, newName);
    20. });
    21. }
    22. });

    右键点击事件

    1. void MainWindow::slotTreeMenu(const QPoint &pos)
    2. {
    3. QModelIndex curIndex = ui->treeView->indexAt(pos); //当前点击的元素的index
    4. QModelIndex index = curIndex.sibling(curIndex.row(),0); //该行的第1列元素的index
    5. if (index.isValid())
    6. {
    7. if(index.parent() != ui->treeView->rootIndex()) //不是一级节点,因为只对二级节点往其他年级移动
    8. {
    9. QMenu menu;
    10. QAction* actionParent = menu.addAction(QStringLiteral("移动到年级")); //父菜单
    11. QMenu* subMenu = new QMenu(&menu); //子菜单
    12. subMenu->addAction(QStringLiteral("1年级"), this, SLOT(slotTreeMenuMove(bool)));
    13. subMenu->addAction(QStringLiteral("2年级"), this, SLOT(slotTreeMenuMove(bool)));
    14. subMenu->addAction(QStringLiteral("3年级"), this, SLOT(slotTreeMenuMove(bool)));
    15. actionParent->setMenu(subMenu);
    16. menu.exec(QCursor::pos());
    17. }
    18. }
    19. }
    20. void MainWindow::slotTreeMenuMove(bool checked)
    21. {
    22. //通过action的文本可以判断选择的哪个子菜单,如果文本不够用也可以用data接口
    23. QAction* action = qobject_cast(sender());
    24. QString grade = action->text();
    25. //执行移动
    26. //...
    27. }

    要先设置菜单策略,使用接口:

    setContextMenuPolicy(Qt::CustomContextMenu); 

    建立对应的时间连接

    connect(t, &QTreeView::customContextMenuRequested, this, &MainWindow::slotTreeMenu);

    带有图标的点击事件

    1. menu.addAction(QIcon(":/image/add.png"),QStringLiteral("添加"), this, SLOT(slotTreeMenuAdd(bool)));
    2. menu.addAction(QIcon(":/image/delete.png"),QStringLiteral("删除"), this, SLOT(slotTreeMenuDelete(bool)));

    设计多级的列表

     

    1. void MainWindow::slotTreeMenu(const QPoint &pos)
    2. {
    3. QModelIndex curIndex = ui->treeView->indexAt(pos); //当前点击的元素的index
    4. QModelIndex index = curIndex.sibling(curIndex.row(),0); //该行的第1列元素的index
    5. if (index.isValid())
    6. {
    7. if(index.parent() != ui->treeView->rootIndex()) //不是一级节点,因为只对二级节点往其他年级移动
    8. {
    9. QMenu menu;
    10. QAction* actionParent = menu.addAction(QStringLiteral("移动到年级")); //父菜单
    11. QMenu* subMenu = new QMenu(&menu); //子菜单
    12. subMenu->addAction(QStringLiteral("1年级"), this, SLOT(slotTreeMenuMove(bool)));
    13. subMenu->addAction(QStringLiteral("2年级"), this, SLOT(slotTreeMenuMove(bool)));
    14. subMenu->addAction(QStringLiteral("3年级"), this, SLOT(slotTreeMenuMove(bool)));
    15. actionParent->setMenu(subMenu);
    16. menu.exec(QCursor::pos());
    17. }
    18. }
    19. }
    20. void MainWindow::slotTreeMenuMove(bool checked)
    21. {
    22. //通过action的文本可以判断选择的哪个子菜单,如果文本不够用也可以用data接口
    23. QAction* action = qobject_cast(sender());
    24. QString grade = action->text();
    25. //执行移动
    26. //...
    27. }

    右键菜单事件 

    1. void contextMenuEvent(QContextMenuEvent* event) override {
    2. QModelIndex index = indexAt(event->pos());
    3. if (index.isValid()) {
    4. QMenu contextMenu(this);
    5. QAction* action1 = contextMenu.addAction("Action 1");
    6. QAction* action2 = contextMenu.addAction("Action 2");
    7. // 连接菜单项的点击事件到槽函数
    8. connect(action1, &QAction::triggered, this, [=]() {
    9. handleAction1(index);
    10. });
    11. connect(action2, &QAction::triggered, this, [=]() {
    12. handleAction2(index);
    13. });
    14. contextMenu.exec(event->globalPos());
    15. }
    16. }

    QVariant 

    QVariant类的作用类似于最常见的Qt数据类型的联合.因为C++禁止联合体包含具有非默认构造函数或析构函数的类型,所以大多数有趣的Qt类不能在联合体中使用。如果没有QVariant,这将是QObject::property()和数据库工作等的问题。

    一个QVariant对象一次只保存一个typeId()的值。(Some类型是多值的,例如字符串列表。)你可以找出变量的类型T,使用convert()将其转换为不同的类型,使用其中一个toT()函数获取其值(例如,toSize()),并检查是否可以使用canConvert()将该类型转换为特定类型。

    名为toT()的方法(例如toInt(),toString())都是常量。如果您请求存储的类型,它们将返回存储对象的副本。如果你请求一个可以从存储的类型生成的类型,toT()会复制和转换,并保持对象本身不变。如果请求无法从存储类型生成的类型,则结果取决于该类型;有关详细信息,请参阅函数文档。

    1. QDataStream out(...);
    2. QVariant v(123); // The variant now contains an int
    3. int x = v.toInt(); // x = 123
    4. out << v; // Writes a type tag and an int to out
    5. v = QVariant(tr("hello")); // The variant now contains a QString
    6. int y = v.toInt(); // y = 0 since v cannot be converted to an int
    7. QString s = v.toString(); // s = tr("hello") (see QObject::tr())
    8. out << v; // Writes a type tag and a QString to out
    9. ...
    10. QDataStream in(...); // (opening the previously written stream)
    11. in >> v; // Reads an Int variant
    12. int z = v.toInt(); // z = 123
    13. qDebug("Type is %s", // prints "Type is int"
    14. v.typeName());
    15. v = v.toInt() + 100; // The variant now holds the value 223
    16. v = QVariant(QStringList()); // The variant now holds a QStringList

    QVariant值存储在变体中,可以轻松构建任意类型的任意复杂数据结构。这是非常强大和通用的,但可能证明比在标准数据结构中存储特定类型更少的内存和速度效率。

    1. QVariant x; // x.isNull() == true
    2. QVariant y = QVariant::fromValue(nullptr); // y.isNull() == true

    因为QVariant是Qt Core模块的一部分,它不能提供Qt GUI中定义的数据类型的转换函数,可以使用QVariant::value()或qvariant_cast()模板函数,也就是说,没有toColor()功能。相反,您可以使用QVariant::value()或qvariant_cast()模板函数。举例来说:

    1. QVariant variant;
    2. ...
    3. QColor color = variant.value();

     QVariant::setValue(T &&value)

    1. QVariant v;
    2. v.setValue(5);
    3. int i = v.toInt(); // i is now 5
    4. QString s = v.toString(); // s is now "5"
    5. MyCustomStruct c;
    6. v.setValue(c);
    7. ...
    8. MyCustomStruct c2 = v.value();

    QVariant QVariant::fromValue(const T &value)

    返回一个包含value副本的QVariant。在其他方面与setValue()完全相同。

    1. MyCustomStruct s;
    2. return QVariant::fromValue(s);

  • 相关阅读:
    渲染噪点多怎么解决?渲染噪点多的原因及处理方法
    Ant Design Pro基础框架搭建
    RocketMQ源码分析:延迟消息
    websocket协议详解
    MongoDB数据的导入与导出
    【算法】迷宫问题
    MIGO新增页签增强
    mysql—表单二
    NLP工具——自制zero-shot事件抽取器
    java数据结构与算法刷题-----LeetCode27:移除元素
  • 原文地址:https://blog.csdn.net/qq_44632658/article/details/133847140