• qt-C++笔记之清空QVBoxLayout中的QCheckBox


    qt-C++笔记之清空QVBoxLayout中的QCheckBox

    QVBoxLayout 和 QCheckBox 是两个类,都是 PyQt/PySide 中用于创建图形用户界面 (GUI) 的工具。它们通常与 Qt 库一起使用,Qt 是一个流行的跨平台 GUI 库,可以用于创建桌面应用程序。

    1. QVBoxLayout:

      • QVBoxLayout 是 Qt 中的布局管理器之一,用于在窗口或对话框中管理和布置其他窗口小部件(widget)。布局管理器用于自动调整小部件的大小和位置,以适应窗口的大小和屏幕的分辨率。
      • Q 表示它是 Qt 中的一个类,而 QVBoxLayout 表示垂直布局。垂直布局管理器将小部件按垂直方向排列,一个在另一个下面。你可以将各种小部件添加到 QVBoxLayout 中,并它们将按顺序垂直排列。
    2. QCheckBox:

      • QCheckBox 是 Qt 中的一个小部件,通常用于创建复选框。复选框是一种用户界面元素,允许用户在选项之间进行选择或取消选择。它通常表示两个状态,选中和未选中。
      • 用户可以单击 QCheckBox 来切换选中状态。在编程中,你可以使用 QCheckBox 来获取或设置其当前状态,并根据用户的选择来执行不同的操作。

    这两个类通常一起使用,你可以创建一个包含多个复选框的垂直布局,以便用户可以在其中选择不同的选项。这样的组合在创建选项设置或首选项窗口时非常有用。

    当你需要清空QVBoxLayout中的内容时,除了上面提到的方法,还可以使用以下方法之一:

    1. 使用QLayout::removeWidget方法

      你可以使用QLayout::removeWidget方法逐个从布局中移除小部件,然后删除这些小部件。这将删除布局中的所有小部件,而不需要删除布局中的所有项目,然后再删除它们。

      if (!layoutIsEmpty) {
          QLayoutItem *item;
          while ((item = layout->takeAt(0)) != nullptr) {
              QCheckBox *checkBox = qobject_cast<QCheckBox*>(item->widget());
              if (checkBox) {
                  layout->removeWidget(checkBox);
                  delete checkBox;
              }
              delete item;
          }
      }
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
      • 10
      • 11
    2. 使用QLayoutItem::widget方法检查并删除

      你可以使用QLayoutItem::widget方法来检查QLayoutItem是否是QCheckBox,如果是,则删除它。这也避免了不必要的布局项删除,因为只删除QCheckBox

      if (!layoutIsEmpty) {
          QLayoutItem *item;
          while ((item = layout->takeAt(0)) != nullptr) {
              QCheckBox *checkBox = qobject_cast<QCheckBox*>(item->widget());
              if (checkBox) {
                  delete checkBox;
              }
              delete item;
          }
      }
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
      • 10

    这两种方法都可以帮助你在不清空整个布局的情况下删除QVBoxLayout中的小部件。你可以选择其中一种方法,根据你的实际需求来使用。

    1. 一个完整的测试例程:
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    
    int main(int argc, char *argv[]) {
        QApplication app(argc, argv);
    
        // 创建主窗口
        QWidget window;
        window.setWindowTitle("文件读取示例");
    
        // 创建按钮1
        QPushButton button1("读取文件1");
        // 创建按钮2
        QPushButton button2("读取文件2");
    
        // 创建一个 QVBoxLayout 用于显示 QCheckBox
        QVBoxLayout *layout = new QVBoxLayout(&window);
        window.setLayout(layout);
    
        bool layoutIsEmpty = true; // 用于标记布局是否为空
    
        // 连接按钮1的点击事件
        QObject::connect(&button1, &QPushButton::clicked, [&]() {
            // 如果布局不为空,清空 QVBoxLayout 中的内容
            // 方法1:使用QLayout::removeWidget方法
            if (!layoutIsEmpty) {
                QLayoutItem *item;
                while ((item = layout->takeAt(0)) != nullptr) {
                    QCheckBox *checkBox = qobject_cast<QCheckBox*>(item->widget());
                    if (checkBox) {
                        layout->removeWidget(checkBox);
                        delete checkBox;
                    }
                    delete item;
                }
            }
    
            //        方法2:使用QLayoutItem::widget方法检查并删除
            //        if (!layoutIsEmpty) {
            //            QLayoutItem *item;
            //            while ((item = layout->takeAt(0)) != nullptr) {
            //                QCheckBox *checkBox = qobject_cast(item->widget());
            //                if (checkBox) {
            //                    layout->removeWidget(checkBox);
            //                    delete checkBox;
            //                }
            //                delete item;
            //            }
            //        }
    
            // 读取文件1内容并添加到 QVBoxLayout
            QFile file("/home/user/qt_normal_test/mytest2/a.txt");
            if (file.open(QIODevice::ReadOnly | QIODevice::Text)) {
                QTextStream in(&file);
                for (int i = 0; i < 10 && !in.atEnd(); ++i) {
                    QString line = in.readLine();
                    QCheckBox *checkBox = new QCheckBox(line);
                    layout->addWidget(checkBox);
                }
                file.close();
            } else {
                qDebug() << "Error opening file 1: " << file.errorString();
            }
    
            layoutIsEmpty = false; // 布局不再为空
        });
    
        // 连接按钮2的点击事件
        QObject::connect(&button2, &QPushButton::clicked, [&]() {
            // 如果布局不为空,清空 QVBoxLayout 中的内容
            // 方法1:使用QLayout::removeWidget方法
            if (!layoutIsEmpty) {
                QLayoutItem *item;
                while ((item = layout->takeAt(0)) != nullptr) {
                    QCheckBox *checkBox = qobject_cast<QCheckBox*>(item->widget());
                    if (checkBox) {
                        layout->removeWidget(checkBox);
                        delete checkBox;
                    }
                    delete item;
                }
            }
    
            //        方法2:使用QLayoutItem::widget方法检查并删除
            //        if (!layoutIsEmpty) {
            //            QLayoutItem *item;
            //            while ((item = layout->takeAt(0)) != nullptr) {
            //                QCheckBox *checkBox = qobject_cast(item->widget());
            //                if (checkBox) {
            //                    layout->removeWidget(checkBox);
            //                    delete checkBox;
            //                }
            //                delete item;
            //            }
            //        }
    
            // 读取文件2内容并添加到 QVBoxLayout
            QFile file("/home/user/qt_normal_test/mytest2/b.txt");
            if (file.open(QIODevice::ReadOnly | QIODevice::Text)) {
                QTextStream in(&file);
                for (int i = 0; i < 10 && !in.atEnd(); ++i) {
                    QString line = in.readLine();
                    QCheckBox *checkBox = new QCheckBox(line);
                    layout->addWidget(checkBox);
                }
                file.close();
            } else {
                qDebug() << "Error opening file 2: " << file.errorString();
            }
    
            layoutIsEmpty = false; // 布局不再为空
        });
    
        // 将按钮添加到主窗口
        layout->addWidget(&button1);
        layout->addWidget(&button2);
    
        window.show();
    
        return app.exec();
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
  • 相关阅读:
    基于webrtc浏览器截图
    Hadoop(一)Hadoop核心架构与安装
    VB.net:VB.net编程语言学习之ADO.net基本名称空间与类的简介、案例应用(实现与SQL数据库编程案例)之详细攻略
    荣获国家高新技术企业认证,苹芯科技领航AI芯片产业发展
    同是负值像素,为何在matplotlib和opencv上显示不一样?
    含文档+PPT+源码等]精品基于Uniapp+SSM实现的日常饮食管理APP[包运行成功]计算机毕业设计Android项目源码
    速锐得解码匹配特斯拉电动汽车安全性能检测车架号及BMS电池数据
    HTML中自定义鼠标右键菜单
    WPS如何共享文件和文件夹
    ubuntu更新python版本
  • 原文地址:https://blog.csdn.net/weixin_43297891/article/details/133896260