代码拉取完成,页面将自动刷新
#ifndef STRINGLISTMODEL_H
#define STRINGLISTMODEL_H
#include <QVector>
#include <QAbstractTableModel>
class QVariant;
class QModelIndex;
class QStringList;
class QObject;
class StringListModel : public QAbstractTableModel
{
public:
StringListModel(const QVector<QStringList> &tableData, QObject *parent = 0);
StringListModel(QObject *parent = 0);
int setHead(QStringList& headData);
// rowCount()返回model中的行数
int rowCount(const QModelIndex &parent = QModelIndex()) const;
// columnCount()返回model中的列数
int columnCount(const QModelIndex &parent = QModelIndex()) const;
//data()返回与特定model index对应的数据项
QVariant data(const QModelIndex &index, int role) const;
//具有良好行为的model也会实现headerData(),它返回tree和table views需要的,在标题中显示的数据。
QVariant headerData(int section, Qt::Orientation orientation,
int role = Qt::DisplayRole) const;
// 因为这是一个非层次结构的model,我们不必考虑父子关系。假如model具有层次结构,我们也应该实现index()与parent()函数。
//清除数据
void clear();
private:
QVector<QStringList> table;
QStringList head;
};
#endif // STRINGLISTMODEL_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。