QtableView 委托的使用 setItemDelegateForColumn()

QtableView 委托的使用 setItemDelegateForColumn()

从数据库中读取数据,显示到tabview,但存在个问题,数据库的有两列数据为double数据,直接显示到tableview上后,全精度不完整,以下从设置委托的方式来解决.
注意设置委托的方式,在找资料的过程中看到的都以如下使用方式:
doubleDelegate double_delegate;
ui->tableView->setItemDelegateForColumn(2, &double_delegate);
但程序会报错,改成使用 new 的方式后正常.
    //从数据库中读取数据
    QString sql = QString("SELECT * FROM file_info");
    model.setQuery(sql);

    //显示到tableView
    ui->tableView->setModel(&model);

    //设置委托
    ui->tableView->setItemDelegateForColumn(2, new doubleDelegate(this));
    ui->tableView->setItemDelegateForColumn(3, new doubleDelegate(this));

    //设置间隔行变色
    ui->tableView->setAlternatingRowColors(true);

    //其它列保持默认宽度,最后一列拉伸填满。
    ui->tableView->horizontalHeader()->setStretchLastSection(true);

    //设置第0列和第5列 根据内容拉申
    ui->tableView->horizontalHeader()->setSectionResizeMode(0,QHeaderView::Stretch);
    ui->tableView->horizontalHeader()->setSectionResizeMode(5,QHeaderView::Stretch);

委托的代码


class doubleDelegate : public QItemDelegate
{
    Q_OBJECT
public:
    doubleDelegate(QObject *parent = nullptr): QItemDelegate(parent) { }
    QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,const QModelIndex &index) const
    {
        Q_UNUSED(option)
        Q_UNUSED(index)
        QLineEdit *editor = new QLineEdit(parent);
        return editor;
    }
    void setEditorData(QWidget *editor, const QModelIndex &index) const
    {
        double value = index.model()->data(index).toDouble();
        QLineEdit *line = static_cast(editor);
        line->setText(QString::number(value,12,'g'));
    }
    void setModelData(QWidget *editor, QAbstractItemModel *model,const QModelIndex &index) const
    {
        QLineEdit *line = static_cast(editor);
        //spinBox->interpretText();
        double value = line->text().toDouble();
        model->setData(index, value);
    }
    void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const
    {
        Q_UNUSED(index)
        editor->setGeometry(option.rect);
    }
};

你可能感兴趣的:(QT)