c – 在QSqlTableModel的QTableView列中显示图像

前端之家收集整理的这篇文章主要介绍了c – 在QSqlTableModel的QTableView列中显示图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我很好奇如何在QTableView中显示数据库中的图像.

是否有类似QTableWidgetItem的东西,我可以在QTableView中使用它?

我使用QsqlTableModel.

解决方法

一个粗略的想法是使用 QStandardItem::setData在其上设置QPixmap(转换为QVariant),然后您可以在 QStandardItemModel上设置QStandardItem.

顺序:QImage —> QPixmap —> QVariant —> QStandardItem —> QStandardItemModel

例如:

QStandardItemModel *model = new QStandardItemModel;
QImage image(":/cat/lovers/own/myCat.jpg");
QStandardItem *item = new QStandardItem();
item->setData(QVariant(QPixmap::fromImage(image)),Qt::DecorationRole);
model->setItem(0,item);
ui->tableView->setModel(model);

您必须调整图像大小或单元格大小,具体取决于您的需要.

[编辑]

如果您使用的是QsqlTableModel,请继续使用它.我们需要做的就是将这些路径字符串放入QPixmap,并将该项角色设置为该列中的Qt :: DecorationRole.

正如文件所说:

Each item has a number of data elements associated with it and they can be retrieved by specifying a role (see Qt::ItemDataRole) to the
model’s data() function.

要做到这一点,概念很简单:提供QTableView和QVariant的QVariant,因为QTableView根据Qt::DecorationRole渲染它们.

您可以继承QsqlTableModel并重新实现虚函数QVariant data(const QModelIndex & index,int role = Qt::DisplayRole)并使图像列返回QPixmap作为QVariant,具有装饰角色.所以做这样的事情:

QVariant CustomsqlTableModel::data(const QModelIndex &idx,int role = Qt::DisplayRole) const
{
     if (idx.column() == imageColumn) {
         QString imgFile = QsqlTableModel::data(idx,Qt::DisplayRole); // get path string

        if (role == Qt::DisplayRole) 
            return QString(); // return the path string for display role

        QImage image(imgFile);
        /* some modification to the image,maybe */

        QPixmap pixmap(imgFile);
        if (role == Qt::DecorationRole)
            return pixmap;   // return QPixmap for decoration role

        if (role == Qt::SizeHintRole)
            return pixmap.size(); // in case need the image size

     }
     return QsqlTableModel::data( idx,role ); // use original data() outside the imageColumn
}

此外,您还可以尝试子类化QStyledItemDelegate并重新实现paint()函数自定义您自己的委托,但这需要更复杂的工作.使用委托的示例可以在here找到.您可以使用委托,even a button绘制任何您想要的内容.

*对不起代码没有经过测试,因为我手头没有数据库.

原文链接:https://www.f2er.com/c/115938.html

猜你在找的C&C++相关文章