You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
916 B
48 lines
916 B
//xlsxabstractooxmlfile.h
|
|
|
|
#ifndef QXLSX_XLSXABSTRACTOOXMLFILE_H
|
|
#define QXLSX_XLSXABSTRACTOOXMLFILE_H
|
|
|
|
#include "xlsxglobal.h"
|
|
|
|
QT_BEGIN_NAMESPACE_XLSX
|
|
|
|
class Relationships;
|
|
|
|
class AbstractOOXmlFilePrivate;
|
|
|
|
class QXLSX_EXPORT AbstractOOXmlFile
|
|
{
|
|
Q_DECLARE_PRIVATE(AbstractOOXmlFile)
|
|
|
|
public:
|
|
enum CreateFlag
|
|
{
|
|
F_NewFromScratch,
|
|
F_LoadFromExists
|
|
};
|
|
|
|
public:
|
|
virtual ~AbstractOOXmlFile();
|
|
|
|
virtual void saveToXmlFile(QIODevice* device) const = 0;
|
|
virtual bool loadFromXmlFile(QIODevice* device) = 0;
|
|
|
|
virtual QByteArray saveToXmlData() const;
|
|
virtual bool loadFromXmlData(const QByteArray& data);
|
|
|
|
Relationships* relationships() const;
|
|
|
|
void setFilePath(const QString path);
|
|
QString filePath() const;
|
|
|
|
protected:
|
|
AbstractOOXmlFile(CreateFlag flag);
|
|
AbstractOOXmlFile(AbstractOOXmlFilePrivate* d);
|
|
|
|
AbstractOOXmlFilePrivate* d_ptr;
|
|
};
|
|
|
|
QT_END_NAMESPACE_XLSX
|
|
|
|
#endif //QXLSX_XLSXABSTRACTOOXMLFILE_H
|
|
|