2

我有一个扩展的数字编辑器QSpinBox

NumericEditor::NumericEditor(QWidget *widget): QSpinBox(widget)

QVariant::Int我使用这个编辑器来编辑类型QTableWidget

QItemEditorCreatorBase *numericEditor = new QStandardItemEditorCreator<NumericEditor>();
factory->registerEditor(QVariant::Int, numericEditor); 

数据正常输入表中。忽略“颜色”这个词的使用。它基于颜色编辑器示例。

QTableWidgetItem *nameItem2 = new QTableWidgetItem(QString("label2"));
QTableWidgetItem *colorItem2 = new QTableWidgetItem();
colorItem2->setData(Qt::DisplayRole, QVariant(int(4)));
table->setItem(1, 0, nameItem2);
table->setItem(1, 1, colorItem2);

旋转框出现并在 QTableWidget 中正常工作。

我的愿望是访问表格在编辑QVariant::Int单元格时使用的 QSpinBox 实例,以便我可以设置最小值和最大值。

我怎样才能做到这一点?

4

1 回答 1

0

您可以使用 将委托安装在列上QTableWidget::setItemDelegateForColumn,当打开编辑器时,createEditor将调用其方法。

class MyDelegate : public QStyledItemDelegate {
public:
    QWidget *createEditor ( QWidget * parent, const QStyleOptionViewItem & option, const QModelIndex & index ) const {
        // You could create the widget from scratch or call 
        // the base function which will use the QItemEditor you already wrote
        QWidget * editor = QStyledItemDelegate::createEditor(parent, option, index);

        // do whatever you need to do with the widget
        editor->setProperty("minimum", 100);
        editor->setProperty("maximum", 100);

        return editor;
    }
};
于 2012-06-03T09:56:08.103 回答