加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
StringListModel.h 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
乌合之众 提交于 2015-06-15 17:39 . 2015年06月15日17:40:10
#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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化