我想在tableView中显示QVector3D,最好是这样:(x,y,z)。 我已经将QAbstractTableModel类子类化并实现了QAbstractTableModelSublass :: data函数:
QVariant data(const QModelIndex &index, int role= Qt::DisplayRole) const override
{
...
if(role == Qt::DisplayRole)
{ /* decide in which column and row to display the data*/
QVector3D p(1.,2.,3.); return QVariant(p);
}
}
但是,应显示QVector3D的目标单元格为空。我非常肯定构建了正确的QVariant实例,因为我能够打印出这样的值:
QVariant v = QVariant(p);
qDebug()<<v.value<QVector3D>();
我错过了什么?我怎么能在一个单元格中的表格中显示QVector3D?
答案 0 :(得分:3)
我会按以下方式进行:
QVariant data(const QModelIndex &index, int role= Qt::DisplayRole) const
{
...
if(role == Qt::DisplayRole)
{ /* decide in which column and row to display the data*/
QVector3D p(1.,2.,3.);
return QString("(%1, %2, %3)").arg(p.x()).arg(p.y()).arg(p.z());
}
}
答案 1 :(得分:2)
Qt::DisplayRole
在变体中需要QString,但您提供的是QVector3D。 QVariant中没有从QVector3D到QString的转换(参见documentation)。
您应该自己将Vector转换为字符串表示形式,或使用QStyledItemDelegate
覆盖{QACector3D转换为字符串表示形式的displayText
方法。
注意:你的调试输出有效,因为有一个专用的QDebug operator<<(QDebug dbg, const QVector3D &vector)
用于在QDebug中打印QVector3D