C/C++ Qt TableDelegate 自定义代理组件使用详解
程序员文章站
2022-03-04 14:28:57
tabledelegate 自定义代理组件的主要作用是对原有表格进行调整,例如默认情况下table中的缺省代理就是一个编辑框,我们只能够在编辑框内输入数据,而有时我们想选择数据而不是输入,此时就需要重...
tabledelegate 自定义代理组件的主要作用是对原有表格进行调整,例如默认情况下table中的缺省代理就是一个编辑框,我们只能够在编辑框内输入数据,而有时我们想选择数据而不是输入,此时就需要重写编辑框实现选择的效果,代理组件常用于个性化定制table表格中的字段类型。
在自定义代理中qabstractitemdelegate是所有代理类的抽象基类,我们继承任何组件时都必须要包括如下4个函数:
- createeditor() 用于创建编辑模型数据的组件,例如(qspinbox组件)
- seteditordata() 从数据模型获取数据,以供widget组件进行编辑
- setmodeldata() 将widget组件上的数据更新到数据模型
- updateeditorgeometry() 给widget组件设置一个合适的大小
此处我们分别重写三个代理接口,其中两个combox
组件用于选择婚否,spinbox
组件用于调节数值范围,先来定义三个重写部件。
重写接口spindelegate.cpp代码如下.
#include "spindelegate.h" #include <qspinbox> qwintspindelegate::qwintspindelegate(qobject *parent):qstyleditemdelegate(parent) { } // https://www.cnblogs.com/lyshark qwidget *qwintspindelegate::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(10000); return editor; //返回此编辑器 } void qwintspindelegate::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 qwintspindelegate::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 qwintspindelegate::updateeditorgeometry(qwidget *editor, const qstyleoptionviewitem &option, const qmodelindex &index) const { //设置组件大小 q_unused(index); editor->setgeometry(option.rect); }
重写接口floatspindelegate.cpp代码如下.
#include "floatspindelegate.h" #include <qdoublespinbox> qwfloatspindelegate::qwfloatspindelegate(qobject *parent):qstyleditemdelegate(parent) { } qwidget *qwfloatspindelegate::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(10000); return editor; } void qwfloatspindelegate::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); } // https://www.cnblogs.com/lyshark void qwfloatspindelegate::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 qwfloatspindelegate::updateeditorgeometry(qwidget *editor, const qstyleoptionviewitem &option, const qmodelindex &index) const { editor->setgeometry(option.rect); }
重写接口comboxdelegate.cpp代码如下.
#include "comboxdelegate.h" #include <qcombobox> qwcomboboxdelegate::qwcomboboxdelegate(qobject *parent):qitemdelegate(parent) { } qwidget *qwcomboboxdelegate::createeditor(qwidget *parent,const qstyleoptionviewitem &option, const qmodelindex &index) const { qcombobox *editor = new qcombobox(parent); editor->additem("已婚"); editor->additem("未婚"); editor->additem("单身"); return editor; } // https://www.cnblogs.com/lyshark void qwcomboboxdelegate::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 qwcomboboxdelegate::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 qwcomboboxdelegate::updateeditorgeometry(qwidget *editor,const qstyleoptionviewitem &option, const qmodelindex &index) const { editor->setgeometry(option.rect); }
将部件导入到mainwindow.cpp中,并将其通过ui->tableview->setitemdelegateforcolumn(0,&intspindelegate);关联部件到指定的table下标索引上面。
#include "mainwindow.h" #include "ui_mainwindow.h" // https://www.cnblogs.com/lyshark mainwindow::mainwindow(qwidget *parent): qmainwindow(parent), ui(new ui::mainwindow) { ui->setupui(this); // 初始化模型数据 model = new qstandarditemmodel(4,6,this); // 初始化4行,每行六列 selection = new qitemselectionmodel(model); // 关联模型 ui->tableview->setmodel(model); ui->tableview->setselectionmodel(selection); // 添加表头 qstringlist headerlist; headerlist << "序号" << "姓名" << "年龄" << "性别" << "婚否" << "薪资"; model->sethorizontalheaderlabels(headerlist); // 批量添加数据 qstringlist datalist[3]; qstandarditem *item; datalist[0] << "1001" << "admin" << "24" << "男" << "已婚" << "4235.43"; datalist[1] << "1002" << "lyshark" << "23" << "男" << "未婚" << "10000.21"; datalist[2] << "1003" << "lucy" << "37" << "女" << "单身" << "8900.23"; int array_length = datalist->length(); // 获取每个数组中元素数 int array_count = sizeof(datalist) / sizeof(datalist[0]); // 获取数组个数 for(int x=0; x<array_count; x++) { for(int y=0; y<array_length; y++) { // std::cout << datalist[x][y].tostdstring().data() << std::endl; item = new qstandarditem(datalist[x][y]); model->setitem(x,y,item); } } // 为各列设置自定义代理组件 // 0,4,5 代表第几列 后面的函数则是使用哪个代理类的意思 ui->tableview->setitemdelegateforcolumn(0,&intspindelegate); ui->tableview->setitemdelegateforcolumn(4,&comboboxdelegate); ui->tableview->setitemdelegateforcolumn(5,&floatspindelegate); } mainwindow::~mainwindow() { delete ui; }
代理部件关联后,再次运行程序,会发现原来的tablewidget组件中的编辑框已经替换为了选择框等组件:
到此这篇关于c/c++ qt tabledelegate 自定义代理组件使用详解的文章就介绍到这了,更多相关c++ qt tabledelegate 自定义代理组件内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
推荐阅读
-
C/C++中使用列表框组件Qt ListWidget
-
详解C/C++ QT QChart 绘制组件应用
-
C/C++表格组件Qt TableWidget应用详解
-
C/C++ Qt 自定义Dialog对话框组件应用案例详解
-
C/C++ Qt StringListModel 字符串列表映射组件详解
-
C/C++ Qt TableDelegate 自定义代理组件使用详解
-
C/C++ Qt 自定义Dialog对话框组件应用案例详解
-
C/C++表格组件Qt TableWidget应用详解
-
C/C++中使用列表框组件Qt ListWidget
-
C/C++ Qt StringListModel 字符串列表映射组件详解