给定一个QTableWidget,有没有办法为单元格设置一个“隐藏”值(QTableWidgetItem),与显示的值不同?
例如,我的单元格应该显示“第1项”文本,但是双击它,编辑应该只在值1上,显示一个spinbox默认为1。 换句话说,单元格显示的文本应该从与单元格关联的值(隐藏)开始创建。
我在QTableWidgetItem上找不到合适的QT功能。
答案 0 :(得分:1)
是的,您可以使用QTableWidgetItem::setData()
功能执行此操作。第一个参数定义角色,第二个参数定义数据本身。除了标准角色(定义项目文本的Qt :: DisplayRole等)之外,您还可以使用自定义角色来存储其他数据。 ˚F
QTableWidgetItem item;
// Store the custom "invisible" data: 22
item.setData(Qt::UserRole, 22);
要检索它,您必须使用相同的角色:
QVariant v = item.data(Qt::UserRole);
int i = v.toInt();
通常,为了更好的代码样式,您可以使用枚举来定义自定义数据:
enum {
MyIntData = Qt::UserRole,
MyDblData,
MySuperItem
};
<强>更新强>
以下是使用item委托类的替代解决方案:
class Delegate : public QItemDelegate
{
public:
void setEditorData(QWidget *editor, const QModelIndex &index) const
{
QVariant value = index.model()->data(index, Qt::UserRole);
// If the editor is a spin box, set its value.
QSpinBox *spin = qobject_cast<QSpinBox *>(editor);
if (spin) {
spin->setValue(value.toInt());
} else {
QItemDelegate::setEditorData(editor, index);
}
}
void setModelData(QWidget *editor, QAbstractItemModel *model,
const QModelIndex &index) const
{
QSpinBox *spin = qobject_cast<QSpinBox *>(editor);
if (spin) {
int value = spin->value();
// If the value is changed, update the data.
if (value != index.model()->data(index, Qt::UserRole).toInt()) {
model->setData(index, value, Qt::DisplayRole);
model->setData(index, value, Qt::UserRole);
}
} else {
QItemDelegate::setModelData(editor, model, index);
}
}
};
以及如何创建表小部件和项目:
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QTableWidget tw(1, 1);
tw.setItemDelegate(new Delegate);
QTableWidgetItem *item = new QTableWidgetItem();
item->setData(Qt::UserRole, 22);
item->setData(Qt::DisplayRole, 33);
tw.setItem(0, 0, item);
tw.show();
[..]
}