Qt中QTableView中加入Check列实现

 

class MyModel : public QSqlQueryModel {
    Q_OBJECT
public:
    MyModel(QObject *parent = 0);
    Qt::ItemFlags flags(const QModelIndex &index) const;
    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
........
};
 
Qt::ItemFlags MyModel::flags(const QModelIndex &index) const {
    Qt::ItemFlags flags = QSqlQueryModel::flags(index);
    if (index.column() == aColWithCheckbox)
        flags |= Qt::ItemIsUserCheckable;
    else
        flags |= Qt::ItemIsEditable;
    return flags;
} 
 
QVariant MyModel::data(const QModelIndex &index,  int role) const {
  QVariant value = QSqlQueryModel::data(index, role);
  if (role == Qt::CheckStateRole && index.column() == aColWithCheckbox)
    return (QSqlQueryModel::data(index).toInt() != 0) ? Qt::Checked : Qt::Unchecked;
  else
    return value;
}
 

bool MyModel::setData( const QModelIndex & index, const QVariant & value, int role) 

    if(index.isValid() && role == Qt::CheckStateRole&&index.column()==0) 
    { 
        if(value.value<int>()==Qt::Checked) 
        { 
            m_config->setAutoRun(index.row(), true); 
        } 
        else 
        { 
            m_config->setAutoRun(index.row(), false); 
        } 
        emit dataChanged(index, index); 
        return true; 
    } 
    return false; 
}

posted @ 2011-11-01 17:02  Podevor  阅读(576)  评论(0编辑  收藏  举报