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.
39 lines
709 B
39 lines
709 B
2 years ago
|
// xlsxdrwaing_p.h
|
||
|
|
||
|
#ifndef QXLSX_DRAWING_H
|
||
|
#define QXLSX_DRAWING_H
|
||
|
|
||
|
#include <QtGlobal>
|
||
|
#include <QList>
|
||
|
#include <QString>
|
||
|
|
||
|
#include "xlsxrelationships_p.h"
|
||
|
#include "xlsxabstractooxmlfile.h"
|
||
|
|
||
|
class QIODevice;
|
||
|
class QXmlStreamWriter;
|
||
|
|
||
|
QT_BEGIN_NAMESPACE_XLSX
|
||
|
|
||
|
class DrawingAnchor;
|
||
|
class Workbook;
|
||
|
class AbstractSheet;
|
||
|
class MediaFile;
|
||
|
|
||
|
class Drawing : public AbstractOOXmlFile
|
||
|
{
|
||
|
public:
|
||
|
Drawing(AbstractSheet *sheet, CreateFlag flag);
|
||
|
~Drawing();
|
||
|
void saveToXmlFile(QIODevice *device) const override;
|
||
|
bool loadFromXmlFile(QIODevice *device) override;
|
||
|
|
||
|
AbstractSheet *sheet;
|
||
|
Workbook *workbook;
|
||
|
QList<DrawingAnchor *> anchors;
|
||
|
};
|
||
|
|
||
|
QT_END_NAMESPACE_XLSX
|
||
|
|
||
|
#endif // QXLSX_DRAWING_H
|