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"
|
2022-08-12 17:50:13 +02:00
|
|
|
#include "../layout/layoutdef.h"
|
|
|
|
#include "../vmisc/defglobal.h"
|
2020-04-18 16:32:54 +02:00
|
|
|
|
2021-05-22 19:29:33 +02:00
|
|
|
#include <QLoggingCategory>
|
|
|
|
|
2022-08-12 17:50:13 +02:00
|
|
|
Q_DECLARE_LOGGING_CATEGORY(MLReader) // NOLINT
|
2021-05-22 19:29:33 +02:00
|
|
|
|
2021-08-14 14:19:28 +02:00
|
|
|
struct TextLine;
|
2022-08-12 17:50:13 +02:00
|
|
|
struct VLayoutPassmark;
|
|
|
|
struct VLayoutPlaceLabel;
|
|
|
|
class VLayoutPiecePath;
|
|
|
|
class VTextManager;
|
2021-08-14 14:19:28 +02:00
|
|
|
|
2020-05-23 14:01:03 +02:00
|
|
|
class VPLayoutFileReader : public QXmlStreamReader
|
2020-04-18 16:32:54 +02:00
|
|
|
{
|
2022-08-12 17:50:13 +02:00
|
|
|
Q_DECLARE_TR_FUNCTIONS(VPLayoutFileReader) // NOLINT
|
2020-04-18 16:32:54 +02:00
|
|
|
public:
|
2021-05-21 17:08:37 +02:00
|
|
|
VPLayoutFileReader()=default;
|
|
|
|
~VPLayoutFileReader()=default;
|
2020-04-18 20:24:25 +02:00
|
|
|
|
2021-08-17 17:49:28 +02:00
|
|
|
auto ReadFile(const VPLayoutPtr &layout, QFile *file) -> bool;
|
2020-04-18 20:24:25 +02:00
|
|
|
|
|
|
|
private:
|
2022-08-12 17:50:13 +02:00
|
|
|
// cppcheck-suppress unknownMacro
|
|
|
|
Q_DISABLE_COPY_MOVE(VPLayoutFileReader) // NOLINT
|
2020-04-19 10:38:28 +02:00
|
|
|
|
2021-08-17 17:49:28 +02:00
|
|
|
void ReadLayout(const VPLayoutPtr &layout);
|
|
|
|
void ReadProperties(const VPLayoutPtr &layout);
|
|
|
|
void ReadControl(const VPLayoutPtr &layout);
|
|
|
|
void ReadTiles(const VPLayoutPtr &layout);
|
2021-09-06 15:56:56 +02:00
|
|
|
void ReadScale(const VPLayoutPtr &layout);
|
2021-08-17 17:49:28 +02:00
|
|
|
void ReadUnplacedPieces(const VPLayoutPtr &layout);
|
|
|
|
void ReadSheets(const VPLayoutPtr &layout);
|
|
|
|
void ReadSheet(const VPLayoutPtr &layout);
|
|
|
|
void ReadPieces(const VPLayoutPtr &layout, const VPSheetPtr &sheet=VPSheetPtr());
|
|
|
|
void ReadPiece(const VPPiecePtr &piece);
|
|
|
|
void ReadSeamAllowance(const VPPiecePtr &piece);
|
|
|
|
void ReadGrainline(const VPPiecePtr &piece);
|
|
|
|
void ReadNotches(const VPPiecePtr &piece);
|
2021-08-14 14:19:28 +02:00
|
|
|
auto ReadNotch() -> VLayoutPassmark;
|
2021-08-17 17:49:28 +02:00
|
|
|
void ReadInternalPaths(const VPPiecePtr &piece);
|
2021-08-14 14:19:28 +02:00
|
|
|
auto ReadInternalPath() -> VLayoutPiecePath;
|
2021-08-17 17:49:28 +02:00
|
|
|
void ReadMarkers(const VPPiecePtr &piece);
|
2021-08-14 14:19:28 +02:00
|
|
|
auto ReadMarker() -> VLayoutPlaceLabel;
|
2021-08-17 17:49:28 +02:00
|
|
|
void ReadLabels(const VPPiecePtr &piece);
|
2021-09-04 15:01:26 +02:00
|
|
|
void ReadPieceLabel(const VPPiecePtr &piece);
|
|
|
|
void ReadPatternLabel(const VPPiecePtr &piece);
|
2021-08-14 14:19:28 +02:00
|
|
|
auto ReadLabelLines() -> VTextManager;
|
|
|
|
auto ReadLabelLine() -> TextLine;
|
2021-09-11 18:39:38 +02:00
|
|
|
void ReadWatermark(const VPLayoutPtr &layout);
|
2020-04-18 20:24:25 +02:00
|
|
|
|
2021-09-08 11:57:12 +02:00
|
|
|
void ReadLayoutMargins(const VPLayoutPtr &layout);
|
|
|
|
void ReadSheetMargins(const VPSheetPtr &sheet);
|
2021-08-14 14:19:28 +02:00
|
|
|
auto ReadSize() -> QSizeF;
|
2020-04-18 20:24:25 +02:00
|
|
|
|
2021-05-22 19:29:33 +02:00
|
|
|
void AssertRootTag(const QString &tag) const;
|
|
|
|
|
2021-08-14 14:19:28 +02:00
|
|
|
static auto ReadAttributeString(const QXmlStreamAttributes &attribs, const QString &name,
|
|
|
|
const QString &defValue) -> QString;
|
|
|
|
static auto ReadAttributeEmptyString(const QXmlStreamAttributes &attribs, const QString &name) -> QString;
|
|
|
|
static auto ReadAttributeBool(const QXmlStreamAttributes &attribs, const QString &name,
|
|
|
|
const QString &defValue) -> bool;
|
|
|
|
static auto ReadAttributeDouble(const QXmlStreamAttributes &attribs, const QString &name,
|
|
|
|
const QString &defValue) -> qreal;
|
|
|
|
static auto ReadAttributeUInt(const QXmlStreamAttributes &attribs, const QString &name,
|
|
|
|
const QString &defValue) -> quint32;
|
|
|
|
static auto ReadAttributeInt(const QXmlStreamAttributes &attribs, const QString &name,
|
|
|
|
const QString &defValue) -> int;
|
2020-04-18 16:32:54 +02:00
|
|
|
};
|
|
|
|
|
2020-05-23 14:01:03 +02:00
|
|
|
#endif // VPLAYOUTFILEREADER_H
|