2020-04-18 16:32:54 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
2020-05-23 14:04:39 +02:00
|
|
|
** @file vplayoutfilereader.h
|
2020-04-18 16:32:54 +02:00
|
|
|
** @author Ronan Le Tiec
|
|
|
|
** @date 18 4, 2020
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentina project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2020 Valentina project
|
|
|
|
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
|
|
|
|
**
|
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
** GNU General Public License for more details.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
|
|
|
** *************************************************************************/
|
|
|
|
|
2020-05-23 14:01:03 +02:00
|
|
|
#ifndef VPLAYOUTFILEREADER_H
|
|
|
|
#define VPLAYOUTFILEREADER_H
|
2020-04-18 16:32:54 +02:00
|
|
|
|
|
|
|
#include <QXmlStreamReader>
|
2020-04-19 10:38:28 +02:00
|
|
|
#include "../ifc/xml/vabstractconverter.h"
|
2020-05-23 15:34:11 +02:00
|
|
|
#include "vplayout.h"
|
2020-05-23 15:29:57 +02:00
|
|
|
#include "vppiecelist.h"
|
2020-05-23 15:42:51 +02:00
|
|
|
#include "vppiece.h"
|
2020-04-18 16:32:54 +02:00
|
|
|
|
2020-05-23 14:01:03 +02:00
|
|
|
class VPLayoutFileReader : public QXmlStreamReader
|
2020-04-18 16:32:54 +02:00
|
|
|
{
|
2020-05-23 15:34:11 +02:00
|
|
|
Q_DECLARE_TR_FUNCTIONS(VPLayoutFileReader)
|
2020-04-18 16:32:54 +02:00
|
|
|
public:
|
2020-05-23 14:01:03 +02:00
|
|
|
VPLayoutFileReader();
|
|
|
|
~VPLayoutFileReader();
|
2020-04-18 20:24:25 +02:00
|
|
|
|
2020-05-23 15:34:11 +02:00
|
|
|
bool ReadFile(VPLayout *layout, QFile *file);
|
2020-04-18 20:24:25 +02:00
|
|
|
|
|
|
|
private:
|
2020-05-23 14:01:03 +02:00
|
|
|
Q_DISABLE_COPY(VPLayoutFileReader)
|
2020-04-19 10:38:28 +02:00
|
|
|
|
2020-05-23 15:34:11 +02:00
|
|
|
void ReadLayout(VPLayout *layout);
|
|
|
|
void ReadProperties(VPLayout *layout);
|
|
|
|
void ReadTiles(VPLayout *layout);
|
2020-05-23 17:47:04 +02:00
|
|
|
void ReadUnplacedPieces(VPLayout *layout);
|
|
|
|
void ReadSheets(VPLayout *layout);
|
|
|
|
void ReadSheet(VPLayout *layout);
|
2020-05-23 15:29:57 +02:00
|
|
|
void ReadPieceList(VPPieceList *pieceList);
|
2020-05-23 15:42:51 +02:00
|
|
|
void ReadPiece(VPPiece *piece);
|
2020-04-18 20:24:25 +02:00
|
|
|
|
|
|
|
QMarginsF ReadMargins();
|
|
|
|
QSizeF ReadSize();
|
|
|
|
|
2020-04-23 16:22:58 +02:00
|
|
|
static QString ReadAttributeString(const QXmlStreamAttributes &attribs, const QString &name,
|
|
|
|
const QString &defValue);
|
|
|
|
static QString ReadAttributeEmptyString(const QXmlStreamAttributes &attribs, const QString &name);
|
|
|
|
static bool ReadAttributeBool(const QXmlStreamAttributes &attribs, const QString &name, const QString &defValue);
|
|
|
|
static qreal ReadAttributeDouble(const QXmlStreamAttributes &attribs, const QString &name,
|
|
|
|
const QString &defValue);
|
2020-04-18 16:32:54 +02:00
|
|
|
};
|
|
|
|
|
2020-05-23 14:01:03 +02:00
|
|
|
#endif // VPLAYOUTFILEREADER_H
|