C++ Qt 学习(九):模型视图代理

news2024/11/24 12:19:31

1. Qt 模型视图代理

  • Qt 模型视图代理,也可以称为 MVD 模式
    • 模型(model)、视图(view)、代理(delegate)
    • 主要用来显示编辑数据

在这里插入图片描述

1.1 模型

  • 模型 (Model) 是视图与原始数据之间的接口
    • 原始数据可以是:数据库的一个数据表、内存中的一个 StringList,磁盘文件结构
    • QAbstractItemModel 是所有模型的祖宗类,其它 model 类都派生于它

在这里插入图片描述

1.2 视图

  • 视图 (View) 是显示和编辑数据的界面组件
    • 主要的视图组件有 QListView、QTreeView 和 QTableView
    • QListWidget、QTreeWidget 和 QTableWidget 是视图类的简化版
      • 它们不使用数据模型,而是将数据直接存储在组件的每个项里
    • QAbstractItemView 是所有视图的祖宗类,其它 view 类都派生于它

在这里插入图片描述

1.3 代理

  • 代理 (Delegate) 为视图组件提供数据编辑器
    • 如在表格组件中,编辑一个单元格的数据时,缺省是使用一个 QLineEdit 编辑框
    • 代理负责从数据模型获取相应的数据,然后显示在编辑器里,修改数据后,又将其保存到数据模型中

2. QTableView 应用

在这里插入图片描述

  • tableView.pro
    QT       += core gui
    
    // 使用 QAxObject 需添加下行
    // The QAxObject class provides a QObject that wraps a COM object.
    greaterThan(QT_MAJOR_VERSION, 4): QT += widgets axcontainer
    

2.1 widget.ui

在这里插入图片描述

2.2 主窗口

2.2.1 widget.h
#ifndef WIDGET_H
#define WIDGET_H

#include <QWidget>
#include <QStandardItemModel>
#include <QItemSelectionModel>
#include "cintspindelegate.h"
#include "cfloatspindelegate.h"
#include "ccomboboxdelegate.h"

QT_BEGIN_NAMESPACE
namespace Ui { class Widget; }
QT_END_NAMESPACE

class Widget : public QWidget {
    Q_OBJECT

public:
    Widget(QWidget *parent = nullptr);
    ~Widget();

private slots:
    void on_btnOpenExcel_clicked();
    void on_btnReshowData_clicked();
    void OnCurrentChanged(const QModelIndex &current, const QModelIndex &previous);
    void on_btnAppendLast_clicked();
    void on_btnAppend_clicked();
    void on_btnDeleteSelectedLine_clicked();

private:
    Ui::Widget *ui;

    QStandardItemModel  *m_pItemModel;        // 数据模型
    QItemSelectionModel *m_pSelectionModel;   // Item 选择模型

    CIntSpinDelegate    m_intSpinDelegate;    // 整型数 spinbox 代理
    CFloatSpinDelegate  m_floatSpinDelegate;  // 浮点数 spinbox 代理
    CComboBoxDelegate   m_comboBoxDelegate;   // combobox 代理
};
#endif // WIDGET_H
2.2.2 widget.cpp
#include "widget.h"
#include "ui_widget.h"
#include <QAxObject>
#include <QFileDialog>
#include <QStandardPaths>

static const int COLUMN_COUNT = 7;

Widget::Widget(QWidget *parent) : QWidget(parent), ui(new Ui::Widget) {
    ui->setupUi(this);
    showMaximized();

    m_pItemModel = new QStandardItemModel(1, COLUMN_COUNT, this);
    m_pSelectionModel = new QItemSelectionModel(m_pItemModel);  // Item 选择模型

    // 选择当前单元格变化时的信号与槽
    connect(m_pSelectionModel, &QItemSelectionModel::currentChanged, this, &Widget::OnCurrentChanged);

    ui->tableView->setModel(m_pItemModel);                // 设置数据模型
    ui->tableView->setSelectionModel(m_pSelectionModel);  // 设置选择模型
    ui->tableView->setSelectionMode(QAbstractItemView::ExtendedSelection);
    ui->tableView->setSelectionBehavior(QAbstractItemView::SelectItems);

    // 给第 3,4,5 列设置自定义代理组件
    ui->tableView->setItemDelegateForColumn(3, &m_floatSpinDelegate);
    ui->tableView->setItemDelegateForColumn(4, &m_intSpinDelegate);
    ui->tableView->setItemDelegateForColumn(5, &m_comboBoxDelegate);
}

Widget::~Widget() {
    delete ui;
}

// 打开 excel
void Widget::on_btnOpenExcel_clicked() {
    QAxObject *excel = new QAxObject(this);
    excel->setControl("Excel.Application");
    excel->setProperty("Visible", false);  // 显示窗体看效果,选择 ture 将会看到 excel 表格被打开
    excel->setProperty("DisplayAlerts", true);
    QAxObject *workbooks = excel->querySubObject("WorkBooks");  // 获取工作簿(excel文件)集合

    QString str = QFileDialog::getOpenFileName(this, u8"打开excel",
                                               "D:/MyQtCreatorProject/9_2_tableView",
                                               u8"Excel 文件(*.xls *.xlsx)");

    // 打开刚才选定的 excel
    workbooks->dynamicCall("Open(const QString&)", str);
    QAxObject *workbook = excel->querySubObject("ActiveWorkBook");
    QAxObject *worksheet = workbook->querySubObject("WorkSheets(int)",1);
    QAxObject *usedRange = worksheet->querySubObject("UsedRange");   // 获取表格中的数据范围

    QVariant var = usedRange->dynamicCall("Value");  // 将所有的数据读取到 QVariant 容器中保存
    QList<QList<QVariant>> excel_list;               // 用于将 QVariant 转换为 Qlist 的二维数组
    QVariantList varRows = var.toList();
    if (varRows.isEmpty()) {
         return;
    }

    const int row_count = varRows.size();
    QVariantList rowData;

    for (int i = 0; i < row_count; ++i) {
        rowData = varRows[i].toList();
        excel_list.push_back(rowData);
    }

    // 将每一行的内容放到 contentList
    QList<QStringList> contentList;

    for (int i = 0; i < row_count; i++) {
        QList<QVariant> curList = excel_list.at(i);
        int curRowCount = curList.size();
        QStringList oneLineStrlist;

        for (int j = 0; j < curRowCount; j++) {
            QString content = curList.at(j).toString();
            oneLineStrlist << content;
        }

        contentList << oneLineStrlist;
    }

    workbook->dynamicCall("Close(Boolean)", false);
    excel->dynamicCall("Quit(void)");
    delete excel;

    // 解析 contentList,填充 tableView
    int rowCounts = contentList.size();
    QStandardItem *aItem;

    // 遍历行
    for (int i = 0; i < rowCounts; i++) {
        QStringList tmpList = contentList[i];

        if(i == 0) {
            // 设置表头
            m_pItemModel->setHorizontalHeaderLabels(tmpList);
        } else {
            int j;
            for (j = 0; j < COLUMN_COUNT - 1; j++) {
                // 不包含最后一列
                aItem = new QStandardItem(tmpList.at(j));
                m_pItemModel->setItem(i-1, j, aItem);       // 为模型的某个行列位置设置 Item
            }

            // 设置最后一列
            aItem = new QStandardItem(contentList[0].at(j));  // 获取最后一列的指针
            aItem->setCheckable(true);  // 设置可以使用 check 控件
            if (tmpList.at(j) == "0")
                aItem->setCheckState(Qt::Unchecked);  // 根据数据设置 check 状态
            else
                aItem->setCheckState(Qt::Checked);

            m_pItemModel->setItem(i-1 , j, aItem);    // 设置最后一列
        }
    }
}

// 选择单元格变化时的响应
void Widget::OnCurrentChanged(const QModelIndex &current, const QModelIndex &previous) {
   Q_UNUSED(previous);

    if (current.isValid()) {  // 当前模型索引有效
        ui->textEdit->clear();
        ui->textEdit->append(QString::asprintf(u8"当前单元格:%d行,%d列",
                             current.row(),current.column()));  // 显示模型索引的行和列号
        QStandardItem *aItem;
        aItem = m_pItemModel->itemFromIndex(current);           // 从模型索引获得 item
        ui->textEdit->append(u8"单元格内容:" + aItem->text());  // 显示 item 的文字内容
    }
}

// 在表格最后一行添加
void Widget::on_btnAppendLast_clicked() {
    QList<QStandardItem*> aItemList;
    QStandardItem *aItem;

    for (int i = 0; i < COLUMN_COUNT - 1; i++) {  // 不包含最后 1 列
        aItem = new QStandardItem(u8"自定义");
        aItemList << aItem;
    }

    // 获取最后一列的表头文字
    QString str = m_pItemModel->headerData(m_pItemModel->columnCount()-1, Qt::Horizontal, Qt::DisplayRole).toString();
    aItem = new QStandardItem(str);
    aItem->setCheckable(true);
    aItemList<<aItem;   // 添加到容器

    m_pItemModel->insertRow(m_pItemModel->rowCount(), aItemList);  // 插入一行,需要每个 Cell 的 Item
    QModelIndex curIndex = m_pItemModel->index(m_pItemModel->rowCount()-1, 0);  // 创建最后一行的 ModelIndex

    // 如果之前点击了表格,清空选择项
    m_pSelectionModel->clearSelection();

    // 设置刚插入的行为当前选择行
    m_pSelectionModel->setCurrentIndex(curIndex, QItemSelectionModel::Select);
}

void Widget::on_btnAppend_clicked() {
    QList<QStandardItem*> aItemList;
    QStandardItem *aItem;
    for(int i = 0; i < COLUMN_COUNT-1; i++) {
        aItem = new QStandardItem(u8"自定义");
        aItemList << aItem;
    }

    // 获取表头文字
    QString str = m_pItemModel->headerData(m_pItemModel->columnCount()-1, Qt::Horizontal, Qt::DisplayRole).toString();
    aItem = new QStandardItem(str);
    aItem->setCheckable(true);
    aItemList<<aItem;

    QModelIndex curIndex = m_pSelectionModel->currentIndex();  // 获取当前选中项的模型索引
    m_pItemModel->insertRow(curIndex.row(), aItemList);  // 在当前行的前面插入一行
    m_pSelectionModel->clearSelection();                // 清除已有选择
    m_pSelectionModel->setCurrentIndex(curIndex, QItemSelectionModel::Select);
}

// 删除选择的行
void Widget::on_btnDeleteSelectedLine_clicked() {
    QModelIndex curIndex = m_pSelectionModel->currentIndex();  // 获取当前选择单元格的模型索引

    if (curIndex.row() == m_pItemModel->rowCount() - 1) {  // 如果是最后一行
        m_pItemModel->removeRow(curIndex.row());           // 删除最后一行
    } else {
        m_pItemModel->removeRow(curIndex.row());           // 删除一行,并重新设置当前选择行
        m_pSelectionModel->setCurrentIndex(curIndex, QItemSelectionModel::Select);
    }
}

// 将 tableView 的数据显示在 textEdit
void Widget::on_btnReshowData_clicked() {
    ui->textEdit->clear();  // 清空
    QStandardItem *aItem;
    QString str;

    // 获取表头文字
    int i, j;
    for (i = 0; i < m_pItemModel->columnCount(); i++) {
        aItem = m_pItemModel->horizontalHeaderItem(i);  // 获取表头的一个项数据
        str = str + aItem->text() + "\t";  // 用 tab 间隔文字
    }

    ui->textEdit->append(str);  // 添加为文本框的一行

    //获取数据区的每行
    for (i = 0; i < m_pItemModel->rowCount(); i++) {
        str = "";
        for (j = 0; j<m_pItemModel->columnCount()-1; j++) {
            aItem = m_pItemModel->item(i,j);
            str = str + aItem->text() + QString::asprintf("\t");  //以 tab 分隔
        }

        aItem = m_pItemModel->item(i, j);  // 最后一行
        if (aItem->checkState() == Qt::Checked)
            str = str + "1";
        else
            str = str + "0";

         ui->textEdit->append(str);
    }
}

2.3 整型数 spinbox 代理

2.3.1 cintspindelegate.h
#ifndef CINTSPINDELEGATE_H
#define CINTSPINDELEGATE_H

#include <QStyledItemDelegate>

class CIntSpinDelegate : public QStyledItemDelegate {
    Q_OBJECT
public:
    CIntSpinDelegate(QObject *parent=0);

    // 自定义代理组件必须继承以下 4 个函数
    // 创建编辑组件
    QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
                          const QModelIndex &index) const Q_DECL_OVERRIDE;

    // 从数据模型获取数据,显示到代理组件中
    void setEditorData(QWidget *editor, const QModelIndex &index) const Q_DECL_OVERRIDE;

    // 将代理组件的数据,保存到数据模型中
    void setModelData(QWidget *editor, QAbstractItemModel *model,
                      const QModelIndex &index) const Q_DECL_OVERRIDE;

    // 更新代理编辑组件的大小
    void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option,
                              const QModelIndex &index) const Q_DECL_OVERRIDE;
};

#endif // CINTSPINDELEGATE_H
2.3.2 cintspindelegate.cpp
#include "cintspindelegate.h"
#include <QSpinBox>

CIntSpinDelegate::CIntSpinDelegate(QObject *parent) : QStyledItemDelegate(parent) {}

QWidget *CIntSpinDelegate::createEditor(QWidget *parent,
   const QStyleOptionViewItem &option, const QModelIndex &index) const {
    // 创建代理编辑组件
    Q_UNUSED(option);
    Q_UNUSED(index);

    QSpinBox *editor = new QSpinBox(parent);  // 创建一个 QSpinBox
    editor->setFrame(false);  // 设置为无边框
    editor->setMinimum(0);
    editor->setMaximum(120);

    return editor;  // 返回此编辑器
}

void CIntSpinDelegate::setEditorData(QWidget *editor, const QModelIndex &index) const {
    // 从数据模型获取数据,显示到代理组件中
    // 获取数据模型的模型索引指向的单元的数据
    int value = index.model()->data(index, Qt::EditRole).toInt();

    QSpinBox *spinBox = static_cast<QSpinBox*>(editor);  // 强制类型转换
    spinBox->setValue(value);  // 设置编辑器的数值
}

void CIntSpinDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const {
    // 将代理组件的数据,保存到数据模型中
    QSpinBox *spinBox = static_cast<QSpinBox*>(editor);  // 强制类型转换
    spinBox->interpretText();      // 解释数据,如果数据被修改后,就触发信号
    int value = spinBox->value();  // 获取 spinBox 的值

    model->setData(index, value, Qt::EditRole); //更新到数据模型
}

void CIntSpinDelegate::updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const {
    // 设置组件大小
    Q_UNUSED(index);
    editor->setGeometry(option.rect);
}

2.4 浮点数 spinbox 代理

2.4.1 cfloatspindelegate.h
#ifndef CFLOATSPINDELEGATE_H
#define CFLOATSPINDELEGATE_H

#include <QObject>
#include <QWidget>
#include <QStyledItemDelegate>

class CFloatSpinDelegate : public QStyledItemDelegate {
    Q_OBJECT
public:
    CFloatSpinDelegate(QObject *parent=0);

    // 自定义代理组件必须继承以下4个函数
    // 创建编辑组件
    QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
                          const QModelIndex &index) const Q_DECL_OVERRIDE;

    void setEditorData(QWidget *editor, const QModelIndex &index) const Q_DECL_OVERRIDE;
    void setModelData(QWidget *editor, QAbstractItemModel *model,
                      const QModelIndex &index) const Q_DECL_OVERRIDE;
    void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option,
                              const QModelIndex &index) const Q_DECL_OVERRIDE;
};

#endif // CFLOATSPINDELEGATE_H
2.4.2 cfloatspindelegate.cpp
#include "cfloatspindelegate.h"
#include <QDoubleSpinBox>

CFloatSpinDelegate::CFloatSpinDelegate(QObject *parent):QStyledItemDelegate(parent) {}

QWidget *CFloatSpinDelegate::createEditor(QWidget *parent,
        const QStyleOptionViewItem &option, const QModelIndex &index) const {
    Q_UNUSED(option);
    Q_UNUSED(index);

    QDoubleSpinBox *editor = new QDoubleSpinBox(parent);
    editor->setFrame(false);
    editor->setMinimum(0);
    editor->setDecimals(2);
    editor->setMaximum(100);

    return editor;
}

void CFloatSpinDelegate::setEditorData(QWidget *editor, const QModelIndex &index) const {
    float value = index.model()->data(index, Qt::EditRole).toFloat();
    QDoubleSpinBox *spinBox = static_cast<QDoubleSpinBox*>(editor);
    spinBox->setValue(value);
}

void CFloatSpinDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const {
    QDoubleSpinBox *spinBox = static_cast<QDoubleSpinBox*>(editor);
    spinBox->interpretText();
    float value = spinBox->value();
    QString str = QString::asprintf("%.2f", value);

    model->setData(index, str, Qt::EditRole);
}

void CFloatSpinDelegate::updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const {
    editor->setGeometry(option.rect);
}

2.5 combobox 代理

2.5.1 ccomboboxdelegate.h
#ifndef CCOMBOBOXDELEGATE_H
#define CCOMBOBOXDELEGATE_H

#include <QItemDelegate>

class CComboBoxDelegate : public QItemDelegate {
    Q_OBJECT

public:
    CComboBoxDelegate(QObject *parent=0);

    // 自定义代理组件必须继承以下4个函数
    QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
                          const QModelIndex &index) const Q_DECL_OVERRIDE;

    void setEditorData(QWidget *editor, const QModelIndex &index) const Q_DECL_OVERRIDE;

    void setModelData(QWidget *editor, QAbstractItemModel *model,
                      const QModelIndex &index) const Q_DECL_OVERRIDE;

    void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option,
                              const QModelIndex &index) const Q_DECL_OVERRIDE;
};

#endif // CCOMBOBOXDELEGATE_H
2.5.2 ccomboboxdelegate.cpp
#include "ccomboboxdelegate.h"
#include <QComboBox>

CComboBoxDelegate::CComboBoxDelegate(QObject *parent) : QItemDelegate(parent) {}

QWidget *CComboBoxDelegate::createEditor(QWidget *parent,
       const QStyleOptionViewItem &option, const QModelIndex &index) const {
    QComboBox *editor = new QComboBox(parent);

    editor->addItem(u8"优");
    editor->addItem(u8"良");
    editor->addItem(u8"一般");

    return editor;
}

void CComboBoxDelegate::setEditorData(QWidget *editor, const QModelIndex &index) const {
    QString str = index.model()->data(index, Qt::EditRole).toString();

    QComboBox *comboBox = static_cast<QComboBox*>(editor);
    comboBox->setCurrentText(str);
}

void CComboBoxDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const {
    QComboBox *comboBox = static_cast<QComboBox*>(editor);
    QString str = comboBox->currentText();
    model->setData(index, str, Qt::EditRole);
}

void CComboBoxDelegate::updateEditorGeometry(QWidget *editor,
                const QStyleOptionViewItem &option, const QModelIndex &index) const {
    editor->setGeometry(option.rect);
}

3. QListView 应用

在这里插入图片描述

3.1 widget.h

#ifndef WIDGET_H
#define WIDGET_H

#include <QWidget>
#include <QStringListModel>
#include <QMenu>

QT_BEGIN_NAMESPACE
namespace Ui { class Widget; }
QT_END_NAMESPACE

class Widget : public QWidget {
    Q_OBJECT

public:
    Widget(QWidget *parent = nullptr);
    ~Widget();

private:
    void initMenu();

private slots:
    void on_btnAddItem_clicked();
    void on_btnDeleteItem_clicked();
    void on_btnInsert_clicked();
    void on_btnClearAllData_clicked();
    void on_btnReshow_clicked();
    void on_showRightMenu(const QPoint& pos);
    void OnActionDelete();

    // 链接 listview 的 clicked 信号
    void on_listView_clicked(const QModelIndex &index);

private:
    Ui::Widget *ui;

    QStringListModel* m_pStringListModel;
    QMenu *m_pMenu;
};
#endif // WIDGET_H

3.2 widget.cpp

#include "widget.h"
#include "ui_widget.h"
#include <QMenu>

Widget::Widget(QWidget *parent) : QWidget(parent), ui(new Ui::Widget) {
    ui->setupUi(this);
    this->setWindowTitle(u8"QListView使用教程");

    QStringList strList;
    strList << u8"北京" << u8"上海" << u8"深圳" << u8"广东"
            << u8"南京" << u8"苏州" << u8"西安";

    // 创建数据模型
    m_pStringListModel = new QStringListModel(this);

    // 为模型设置 StringList,会导入 StringList 的内容
    m_pStringListModel->setStringList(strList);

    // 为 listView 设置数据模型
    ui->listView->setModel(m_pStringListModel);

    // 设置 listview 编辑属性
    // 双击与选择
    //ui->listView->setEditTriggers(QAbstractItemView::DoubleClicked | QAbstractItemView::SelectedClicked);

    initMenu();

    // listview 右键菜单
    ui->listView->setContextMenuPolicy(Qt::CustomContextMenu);
    connect(ui->listView, &QListView::customContextMenuRequested, this, &Widget::on_showRightMenu);
}

Widget::~Widget() {
    delete ui;
}

// 添加 item
void Widget::on_btnAddItem_clicked() {
    // 在尾部插入一空行, 不添加就把最后一行给替换了
    m_pStringListModel->insertRow(m_pStringListModel->rowCount());

    // 获取最后一行
    QModelIndex index = m_pStringListModel->index(m_pStringListModel->rowCount() - 1, 0);
    m_pStringListModel->setData(index,"new item", Qt::DisplayRole);  // 设置显示文字

    // 设置新添加的行选中
    ui->listView->setCurrentIndex(index);
}

// 删除选中的项
void Widget::on_btnDeleteItem_clicked() {
    // 获取当前选中的 modelIndex
    QModelIndex index = ui->listView->currentIndex();

    // 删除当前行
    m_pStringListModel->removeRow(index.row());
}

// 插入一项
void Widget::on_btnInsert_clicked() {
    // 获取选中 model Index
    QModelIndex index=ui->listView->currentIndex();

    // 在当前行的前面插入一行
    m_pStringListModel->insertRow(index.row());
    m_pStringListModel->setData(index, "inserted item", Qt::DisplayRole);
    ui->listView->setCurrentIndex(index);
}

// 回显 listview数据
void Widget::on_btnReshow_clicked() {
    // 获取数据模型的 StringList
    QStringList tmpList = m_pStringListModel->stringList();

    ui->textEdit->clear();  // 文本框清空

    for (int i = 0; i < tmpList.count(); i++) {
        // 显示数据模型的 StringList()返回的内容
        ui->textEdit->append(tmpList.at(i));
    }
}

// 清除所有数据
void Widget::on_btnClearAllData_clicked() {
    m_pStringListModel->removeRows(0, m_pStringListModel->rowCount());
}

void Widget::initMenu() {
    m_pMenu = new QMenu(ui->listView);
    QAction *pAc1 = new QAction(u8"删除", ui->listView);
    QAction *pAc2 = new QAction(u8"插入", ui->listView);
    QAction *pAc3 = new QAction(u8"置顶", ui->listView);
    QAction *pAc4 = new QAction(u8"排到最后", ui->listView);

    m_pMenu->addAction(pAc1);
    m_pMenu->addAction(pAc2);
    m_pMenu->addAction(pAc3);
    m_pMenu->addAction(pAc4);

    // 注意在 exec 前链接信号槽,因为 exec 会阻塞主线程,
    // 如果 connect 写在 exec 代码之后,信号槽将无法链接
    connect(pAc1, &QAction::triggered, this, &Widget::OnActionDelete);
}

void Widget::on_showRightMenu(const QPoint& pos) {
    if (!((ui->listView->selectionModel()->selectedIndexes()).empty())) {
        m_pMenu->exec(QCursor::pos());  // 在当前鼠标位置显示
    }
}

void Widget::OnActionDelete() {
    // 获取当前 modelIndex
    QModelIndex index = ui->listView->currentIndex();

    // 删除当前行
    m_pStringListModel->removeRow(index.row());
}

void Widget::on_listView_clicked(const QModelIndex &index) {
    ui->textEdit->clear();  // 文本框清空

    // 显示 QModelIndex 的行、列号
    ui->textEdit->append(QString::asprintf(u8"当前项:row=%d, column=%d",
                        index.row(), index.column()));
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1217422.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

小型企业如何选择非管理型交换机?

网络的一个关键要素都是交换机&#xff0c;它在连接设备和确保无缝数据流动方面发挥着关键作用。特别是非管理型交换机&#xff0c;为希望提升网络能力的小型企业提供了一种经济高效的解决方案。在本文中&#xff0c;我们将探讨非管理型交换机在小型企业网络中的广泛应用以及小…

【PIE-Engine 数据资源】8天合成LAI产品(MOD15A2H.006)

文章目录 一、 简介二、描述三、波段四、属性五、示例代码参考资料 【PIE-Engine 数据资源】xxx 一、 简介 数据名称8天合成LAI产品(MOD15A2H.006)时间范围2000年-现在空间范围全球数据来源NASA代码片段var images pie.ImageCollection(“USGS/MOD15A2H/006”) 二、描述 全球…

使用Spring Boot实现大文件断点续传及文件校验

一、简介 随着互联网的快速发展&#xff0c;大文件的传输成为了互联网应用的重要组成部分。然而&#xff0c;由于网络不稳定等因素的影响&#xff0c;大文件的传输经常会出现中断的情况&#xff0c;这时需要重新传输&#xff0c;导致传输效率低下。 为了解决这个问题&#xff…

数字档案室建设评价

数字档案室建设评价应考虑以下几个方面&#xff1a; 1. 安全性&#xff1a;数字档案室的主要目的是确保档案资料的安全性。评价应考虑数字档案室的物理安全性、防火措施、保密措施、网络安全等方面。 2. 可访问性&#xff1a;数字档案室应该易于访问和使用。评价应考虑数字档案…

平均分(C++)

系列文章目录 进阶的卡莎C++_睡觉觉觉得的博客-CSDN博客数1的个数_睡觉觉觉得的博客-CSDN博客双精度浮点数的输入输出_睡觉觉觉得的博客-CSDN博客足球联赛积分_睡觉觉觉得的博客-CSDN博客大减价(一级)_睡觉觉觉得的博客-CSDN博客小写字母的判断_睡觉觉觉得的博客-CSDN博客纸币(…

【游戏开发】快来听听我与口袋方舟的故事吧

目录 写在前面 我与口袋方舟的邂逅 口袋方舟编辑器 027版本正式公测 粉丝福利 写在后面 写在前面 哈喽小伙伴们下午好呀&#xff0c;这里是一只有趣的兔子。最近博主在到处整活给大家谋福利&#xff0c;这次兔哥打听到了一个劲爆的消息&#xff0c;口袋方舟正式公测啦&a…

gitLab server version 13.12.1 is not supported

拉代码的时候&#xff0c;报的这个错&#xff0c;实际上就是因为gitLab 版本太低了&#xff0c;这里不准备升级版本&#xff0c;打算继续使用账号密码来拉取代码 在idea已经安装的插件中&#xff0c;去掉gitlab插件&#xff0c;如下&#xff1a; 之后再拉取代码&#xff0c;就…

优化奥德赛:揭开训练人工神经网络的本质

一、介绍 近年来&#xff0c;人工智能领域取得了显著的进步&#xff0c;而这场革命的核心是训练人工神经网络 &#xff08;ANN&#xff09; 的复杂过程。这些网络受到人脑的启发&#xff0c;能够从数据中学习复杂的模式和表示。人工神经网络成功的核心是认识到训练它们从根本上…

【53.最大子数组和】

一、题目描述 二、算法原理 三、代码实现 class Solution { public:int maxSubArray(vector<int>& nums) {vector<int> dp(nums.size());dp[0]nums[0];int retdp[0];for(int i1;i<nums.size();i){dp[i]max(dp[i-1]nums[i],nums[i]);retmax(dp[i],ret);}ret…

锐捷OSPF认证

一、知识补充 1、基本概述 OSPF区域认证和端口认证是两种不同的认证机制&#xff0c;用于增强OSPF协议的安全性。 OSPF区域认证&#xff08;OSPF Area Authentication&#xff09;&#xff1a;这种认证机制是基于区域的。在OSPF网络中&#xff0c;每个区域都可以配置一个区域…

九、Nacos集群搭建

Nacos集群搭建 1.集群结构图 官方给出的Nacos集群图&#xff1a; 其中包含3个nacos节点&#xff0c;然后一个负载均衡器代理3个Nacos。这里负载均衡器可以使用nginx。 我们计划的集群结构&#xff1a; 三个nacos节点的地址&#xff1a; 节点ipportnacos1192.168.150.18845n…

UE5 - ArchvizExplorer - 数字孪生城市模板 -学习笔记(一)

1、学习资料 https://www.unrealengine.com/marketplace/zh-CN/product/archviz-explorer https://karldetroit.com/archviz-explorer-documentation/ 官网下载的是一个简单版&#xff0c;需要下载扩展&#xff0c;并拷贝到项目录下&#xff0c;才有完整版 https://drive.googl…

深度系统(Deepin)开机无法登录,提示等待一千五百分钟

深度系统&#xff08;Deepin&#xff09;20.0&#xff0c; 某次开机无法登录&#xff0c;提示等待一千五百分钟。 &#xff1f;&#xff1f;&#xff1f;&#xff1f;&#xff1f;&#xff1f;&#xff1f;&#xff1f;&#xff1f; 用电脑这么多年&#xff0c;头一回遇到这种…

基于STM32婴儿床检测控制系统及源程序

一、系统方案 1、本设计采用STM32单片机作为主控器。 2、DHT11检测湿度&#xff0c;液晶OLED显示&#xff0c;声音检测声音&#xff0c;有声音或尿床&#xff0c;蜂鸣器报警。 3、手机APP可以控制音乐播放。 二、硬件设计 原理图如下&#xff1a; 三、单片机软件设计 1、首先…

【面试】测试/测开(未完成)

1. 黑盒测试方法 黑盒测试&#xff1a;关注的是软件功能的实现&#xff0c;关注功能实现是否满足需求&#xff0c;测试对象是基于需求规格说明书。 1&#xff09;等价类&#xff1a;有效等价类、无效等价类 2&#xff09;边界值 3&#xff09;因果图&#xff1a;不同的原因对应…

【数据结构】快速排序算法你会写几种?

&#x1f466;个人主页&#xff1a;Weraphael ✍&#x1f3fb;作者简介&#xff1a;目前正在学习c和算法 ✈️专栏&#xff1a;数据结构 &#x1f40b; 希望大家多多支持&#xff0c;咱一起进步&#xff01;&#x1f601; 如果文章有啥瑕疵 希望大佬指点一二 如果文章对你有帮助…

1. hadoop环境准备

环境准备 准备三台虚拟机&#xff0c;配置最好是 2C 4G 以上 本文准备三台机器的内网ip分别为 172.17.0.10 172.17.0.11 172.17.0.12本机配置/etc/hosts cat >> /etc/hosts<<EOF 172.17.0.10 hadoop01 172.17.0.11 hadoop02 172.17.0.12 hadoop03 EOF本机设置与…

java: 程序包XXX.XXX.XXX不存在解决方法

背景介绍&#xff1a; com.DXG.bean 来源于同一个项目底下的另一个包 问题所在&#xff1a; 明明已经引入了相关包 但是编译的时候报错&#xff1a;java: 程序包com.DXG.bean不存在 问题分析&#xff1a; 怀疑是拆模块以后引入相关包没有将相关包下载到本地maven仓库中 所以…

【408】计算机学科专业基础 - 操作系统

一、计算机系统概述 1.简介 什么是操作系统&#xff1f; 操作系统&#xff08;Operating Ststem&#xff0c; OS&#xff09;是指控制和管理整个计算机系统的硬件和软件资源&#xff0c;并合理地组织调度计算机的工作和资源的分配&#xff0c;以提供给用户和其他软件方便的接口…

Vue3实现 SKU 规格

效果图 1 HTML 基本结构 1.1 遍历 SKU 规格数据 <template><div class"productConten"><div v-for"(productItem, productIndex) in specifications" :key"productItem.name"><div class"productTitle">{…