我使用这个代码答案在tableview中添加复选框。 我想表明它在第一列。
这里是我的代码:
mysqlquerymodel.h
#ifndef MYSQLQUERYMODEL_H
#define MYSQLQUERYMODEL_H
#include <QObject>
#include <QMap>
#include <QModelIndex>
#include <QSqlQueryModel>
class MySqlQueryModel : public QSqlQueryModel
{
Q_OBJECT
public:
explicit MySqlQueryModel(QObject *parent = 0);
Qt::ItemFlags flags(const QModelIndex & index) const;
QVariant data(const QModelIndex & index, int role) const;
bool setData(const QModelIndex & index, const QVariant & value, int role);
private:
QMap<int, Qt::CheckState> check_state_map;
};
#endif // MYSQLQUERYMODEL_H
mysqlquerymodel.cpp
#include "mysqlquerymodel.h"
Qt::ItemFlags MySqlQueryModel::flags(const QModelIndex & index) const
{
if (!index.isValid())
return 0;
if (index.column() == 0)
return Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemIsUserCheckable;
return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
}
QVariant MySqlQueryModel::data(const QModelIndex & index, int role) const
{
if (!index.isValid())
return QVariant();
if(role== Qt::CheckStateRole)
{
if(index.column() == 0)
{
if (check_state_map.contains(index.row()))
return check_state_map[index.row()] == Qt::Checked ? Qt::Checked : Qt::Unchecked;
return Qt::Unchecked;
}
}
return QVariant();
}
bool MySqlQueryModel::setData(const QModelIndex & index, const QVariant & value, int role)
{
if(!index.isValid())
return false;
if (role == Qt::CheckStateRole && index.column() == 0)
{
check_state_map[index.row()] = (value == Qt::Checked ? Qt::Checked : Qt::Unchecked);
}
return true;
}
manage.cpp
void manage::on_selectBtn_clicked()
{
QString query=QString("add_time,client_id,client_product_id,continent,country,region,city,ip,app_name,dev_os,dev_os_ver,dev_model,tusin_note,classify_note,detect_note,runtime_stats FROM ts_identify_record WHERE %1 %2 %3 %4 %5 %6 %7 ORDER BY add_time")
.arg(timeRange()).arg(ipAddress()).arg(cellphone()).arg(product()).arg(country()).arg(province()).arg(city());
qDebug()<<statment;
QSqlDatabase db=QSqlDatabase::database();
MySqlQueryModel *model=new MySqlQueryModel;
model->setQuery(query,db);
ui->tableView->setModel(model);
ui->tableView->resizeColumnsToContents();
}
当我按一下按钮,只有第一列显示一个复选框,在其他列是空的。 但行数是正确的,可以点击复选框。 它不会是一个问题,当我刚刚用QSqlQueryModel。
另一个问题是,我的select
的结果应该是16列,但第一列充满复选框。 当添加model->insertColumn(0);
, tableview
所示17列,而不是。
它为什么会发生,以及如何解决它?