mirror of
https://github.com/fralx/LimeReport.git
synced 2025-11-25 00:18:06 +03:00
lrdview has been added
This commit is contained in:
28
lrdview/XmlModel.h
Normal file
28
lrdview/XmlModel.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#ifndef XMLMODEL_H
|
||||
#define XMLMODEL_H
|
||||
|
||||
#include <QAbstractItemModel>
|
||||
#include <QDomDocument>
|
||||
#include <QVector>
|
||||
|
||||
class XmlModel : public QAbstractItemModel
|
||||
{
|
||||
public:
|
||||
XmlModel(QByteArray* data = 0);
|
||||
void setXMLData(QByteArray* data);
|
||||
void parseHeaders();
|
||||
QModelIndex index(int row, int column, const QModelIndex &parent) const;
|
||||
QModelIndex parent(const QModelIndex &child) const;
|
||||
int rowCount(const QModelIndex &parent) const;
|
||||
int columnCount(const QModelIndex &parent) const;
|
||||
QVariant data(const QModelIndex &index, int role) const;
|
||||
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
|
||||
private:
|
||||
void initModel();
|
||||
private:
|
||||
QDomDocument m_doc;
|
||||
QDomNode m_items;
|
||||
QVector<QString> m_fields;
|
||||
};
|
||||
|
||||
#endif // XMLMODEL_H
|
||||
Reference in New Issue
Block a user