在模型中闪烁背景细胞

时间:2009-01-23 18:47:13

标签: qt qvariant

我对自定义角色(setData)的数据方法中的IsBlinkingRole感到困惑。我尝试了不同的选项,但每个选项都失败了。

bool CustomSqlModel::setData( const QModelIndex& index, const QVariant& value, int role)
{
if (role == IsBlinkingRole && index.column() == 0 && index.isValid()) {
      //What to put here ?

        emit dataChanged(index, index);
    return true;
}
return false;



QVariant CustomSqlModel::data(const QModelIndex& index, int role) const
 {
QVariant value = QSqlTableModel::data(index, role);
if (role == Qt::BackgroundRole && index.column() == 0) {
    QModelIndex testIndex = index.model()->index(index.row(), 0, index.parent());
    if ( index.model()->data(testIndex, Qt::DisplayRole).toInt() == 5)
        return QVariant(QColor(Qt::red));
    else
        return QVariant();
}
return value;

}

 void CustomSqlModel::timerEvent(QTimerEvent *)
      { 
   static bool blinkon = true;
   blinkon = !blinkon;
   int topRow = rowCount();
   int bottomRow = -1;
   for(int i = 0; i < rowCount(); i++) {
    for(int j = 0; j < columnCount(); j++) {
        if(data(index(i, j), IsBlinkingRole).toBool()){
            if(blinkon)
                setData(index(i, j), Qt::red, Qt::BackgroundRole);
            else
                setData(index(i, j), QVariant(), Qt::BackgroundRole);
            if(i < topRow) topRow = i; if(i > bottomRow) bottomRow = i;
        }
    }
}
    if(bottomRow >= 0)
        emit dataChanged(index(topRow, 0), index(bottomRow, columnCount()-1));

}

我对setData方法的问题是我需要在这里放置什么样的代码。

我是否必须先创建一个容器才能存储数据?

旁注:感谢cjhuitt的时间和建议 如果我不能解决这个问题,那么我将离开闪烁的单元格 我很抱歉问了三次相同的问题 我是stackoverflow的新手。

0 个答案:

没有答案