1 Star 0 Fork 0

Veenxz/TurbulenceInflowTool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
customizeditemmodel.cpp 463 Bytes
一键复制 编辑 原始数据 按行查看 历史
Peter Mackenzie-Helnwein 提交于 2019-06-06 16:29 . Unifying appearance
#include "customizeditemmodel.h"
// this is a wrapper class to customize the appearance of the treeView
CustomizedItemModel::CustomizedItemModel()
{
}
QVariant
CustomizedItemModel::data(const QModelIndex &index, int role) const
{
if (role == Qt::TextAlignmentRole) {
return Qt::AlignCenter;
}
else if (role == Qt::SizeHintRole) {
return QSize(20, 50);
}
else {
return QStandardItemModel::data(index, role);
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/veenxz/TurbulenceInflowTool.git
git@gitee.com:veenxz/TurbulenceInflowTool.git
veenxz
TurbulenceInflowTool
TurbulenceInflowTool
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385