1

我过去扩展了 QSqlTableModel,但目前我被卡住了(毕竟还是一个初学者):

QVariant MyChild::data(const QModelIndex &index, int role) const
{
    // Check if (soft)deleted / cancelled
    if(index.column() == 3)
    {
       if(QSqlTableModel::data(index, Qt::DisplayRole).toString() == "1")
       {
           if(role == Qt::DisplayRole)
           {
               return "Deleted";
           }

           if(role == Qt::BackgroundColorRole)
           {
               return QVariant(QColor(Qt::yellow));
           }

          // QSqlTableModel::setData(index, QVariant(QColor(Qt::red)), Qt::BackgroundColorRole);
      //     setData(index, QColor(Qt::red), Qt::BackgroundColorRole);
       }
    }

   return QSqlTableModel::data(index, role);
}

现在这很适合它的功能。它将表格中的字段着色为黄色,但我希望整行都被着色。所以你一眼就能看出这条记录已经被(软)删除了。

如您所见,我已经尝试调用 setData,但无济于事。(当然,我会为这一行中的每个索引执行此操作,但由于它一开始不起作用,所以我停在那里。)

对此有什么想法吗?我在网上搜索了很多,但似乎找不到为整行着色的方法。

4

1 回答 1

1

我会做类似的事情(它根本不是 testet,所以可能需要适应):

QVariant MyChild::data(const QModelIndex &index, int role)
{
    // Check if (soft)deleted / cancelled
    if(role == Qt::DisplayRole && index.column() == 3 && QSqlTableModel::data(index, Qt::DisplayRole).toString() == "1")
    {
        return "Deleted";
    }
    else if(role == Qt::BackgroundColorRole)
    {
        QModelIndex tmpIdx = QSqlTableModel::index(index.row(), 3, index.parent());
        if(QSqlTableModel::data(tmpIdx, Qt::DisplayRole).toString() == "1")
        {
            return QVariant(QColor(Qt::yellow));
        }
    }
    return data(index, role);
}

因此,如果指定列表示该行已被删除,请检查每个模型索引。检查“tmpIdx”是否有效也没有什么害处......

于 2014-10-24T07:16:19.353 回答