Qt5 C ++:为特定表列设置Spinbox委托

时间:2013-10-19 07:42:14

标签: c++ qt qt5 qitemdelegate qstyleditemdelegate

我正在尝试将spinbox项委托添加到表格中的特定列。在查看Qt中的示例后,我复制了大部分代码并实现了它,但是当我调用setItemDelegateForColumn()时,我的应用程序崩溃了。列索引有效。我做错了什么想法?

主要通话方式:

BinarySpinboxDelegate binarySpinboxDelegate;
ui->UsersTable->setItemDelegateForColumn(users->at(0).size()-1 ,&binarySpinboxDelegate);

自定义Spinbox实施:

#include "binaryspinboxdelegate.h"
#include <QSpinBox>

BinarySpinboxDelegate::BinarySpinboxDelegate(QObject *parent) : QStyledItemDelegate(parent)
{

}

QWidget* BinarySpinboxDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem &, const QModelIndex &) const
{
    QSpinBox* editor = new QSpinBox(parent);
    editor->setFrame(false);
    editor->setMinimum(0);
    editor->setMaximum(1);

    return editor;
}

void BinarySpinboxDelegate::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 BinarySpinboxDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const
{
    QSpinBox *spinBox = static_cast<QSpinBox*>(editor);
    spinBox->interpretText();
    int value = spinBox->value();

    model->setData(index, value, Qt::EditRole);
}

void BinarySpinboxDelegate::updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &) const
{
    editor->setGeometry(option.rect);
}

1 个答案:

答案 0 :(得分:1)

我是个白痴-_-事实证明,我很愚蠢地在表的初始化函数中声明委托,然后在函数完成后超出范围。将它移动到头文件中,因此它存在于对象的生命周期中,并且很好。