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
788 B
39 lines
788 B
2 years ago
|
// xlsxchartsheet.h
|
||
|
|
||
|
#ifndef XLSXCHARTSHEET_H
|
||
|
#define XLSXCHARTSHEET_H
|
||
|
|
||
|
#include <QtGlobal>
|
||
|
#include <QStringList>
|
||
|
|
||
|
#include "xlsxabstractsheet.h"
|
||
|
|
||
|
QT_BEGIN_NAMESPACE_XLSX
|
||
|
|
||
|
class Workbook;
|
||
|
class DocumentPrivate;
|
||
|
class ChartsheetPrivate;
|
||
|
class Chart;
|
||
|
|
||
|
class QXLSX_EXPORT Chartsheet : public AbstractSheet
|
||
|
{
|
||
|
Q_DECLARE_PRIVATE(Chartsheet)
|
||
|
|
||
|
public:
|
||
|
~Chartsheet();
|
||
|
Chart *chart();
|
||
|
|
||
|
private:
|
||
|
friend class DocumentPrivate;
|
||
|
friend class Workbook;
|
||
|
|
||
|
Chartsheet(const QString &sheetName, int sheetId, Workbook *book, CreateFlag flag);
|
||
|
Chartsheet *copy(const QString &distName, int distId) const override;
|
||
|
|
||
|
void saveToXmlFile(QIODevice *device) const override;
|
||
|
bool loadFromXmlFile(QIODevice *device) override;
|
||
|
};
|
||
|
|
||
|
QT_END_NAMESPACE_XLSX
|
||
|
#endif // XLSXCHARTSHEET_H
|