我刚刚开始尝试使用 Qt 的 AbstractListModel,作为一个实践应用程序,我正在尝试制作一个存储自定义对象的模型。这些类是testperson
、personlistmodel
类和mainwindow
. 我遇到的问题是我的视图没有显示正确的数据,如果我添加两个“测试人员”,那么我的 listView 会显示两个空行。那么有人可以指导我查看模型的数据格式实际上是如何工作的吗???我现在做错了什么?
人物类.cpp
testPerson::testPerson(const QString &name, QObject *parent):QObject (parent)
{
this->fName = name;
connect(this,SIGNAL(pesonAdd()),this,SLOT(personConfirm()));
emit pesonAdd();
}
void testPerson::setPerson(QString setTo)
{
fName = setTo;
}
QString testPerson::getPerson() const
{
return fName;
}
void testPerson::personConfirm()
{
qDebug() << fName << QTime::currentTime().toString();
}
个人列表模型.h
class personListModel : public QAbstractListModel
{
Q_OBJECT
public:
explicit personListModel(QObject *parent = 0);
int rowCount(const QModelIndex &parent = QModelIndex()) const;
QVariant data(const QModelIndex &index, int role) const;
bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
Qt::ItemFlags flags(const QModelIndex &index) const;
//Custom functions
void addPerson(testPerson &person);
private:
QList<testPerson*> dataStore;
};
个人列表模型.cpp
personListModel::personListModel(QObject *parent): QAbstractListModel (parent)
{
}
int personListModel::rowCount(const QModelIndex &parent) const
{
return dataStore.count();
}
QVariant personListModel::data(const QModelIndex &index, int role) const
{
if(role != Qt::DisplayRole || role != Qt::EditRole){
return QVariant();
}
if(index.column() == 0 && index.row() < dataStore.count() ){
return QVariant(dataStore[index.row()]->getPerson());
}else{
return QVariant();
}
}
bool personListModel::setData(const QModelIndex &index, const QVariant &value, int role)
{
if (index.isValid() && role == Qt::EditRole) {
testPerson *item = dataStore[index.row()];
item->setPerson(value.toString());
dataStore.at(index.row())->setPerson(value.toString());
emit dataChanged(index,index);
return true;
}
return false;
}
Qt::ItemFlags personListModel::flags(const QModelIndex &index) const
{
if(!index.isValid()){
return Qt::ItemIsEnabled;
}
return Qt::ItemIsSelectable | Qt::ItemIsEditable | Qt::ItemIsEnabled;
}
void personListModel::addPerson(testPerson &person)
{
beginInsertRows(QModelIndex(),dataStore.count(), dataStore.count());
dataStore.append(&person);
endInsertRows();
}
下面是 mainWindow.cpp 中的一些测试代码
// Inc needed files
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
//Test model
personListModel *model = new personListModel(this);
testPerson one("Adam Smith",this);
testPerson two("John Smith",this);
model->addPerson(one);
model->addPerson(two);
ui->listView->setModel(model);
}