2015-01-07 17:54:43 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vlayoutdetail_p.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 3 1, 2015
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2015-01-07 17:54:43 +01:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2020-01-31 07:00:05 +01:00
|
|
|
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
|
2015-01-07 17:54:43 +01:00
|
|
|
**
|
|
|
|
** 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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#ifndef VLAYOUTDETAIL_P_H
|
|
|
|
#define VLAYOUTDETAIL_P_H
|
|
|
|
|
|
|
|
#include <QPointF>
|
2023-07-13 16:49:20 +02:00
|
|
|
#include <QSharedData>
|
2015-01-18 19:56:01 +01:00
|
|
|
#include <QTransform>
|
2023-07-13 16:49:20 +02:00
|
|
|
#include <QVector>
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2022-10-28 15:16:02 +02:00
|
|
|
#include "../vpatterndb/floatItemData/floatitemdef.h"
|
2023-05-02 16:38:02 +02:00
|
|
|
#include "../vwidgets/vpiecegrainline.h"
|
|
|
|
#include "compatibility.h"
|
2023-05-11 15:23:57 +02:00
|
|
|
|
2022-08-22 10:34:02 +02:00
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(5, 5, 0)
|
2017-02-08 12:48:05 +01:00
|
|
|
#include "../vmisc/diagnostic.h"
|
2022-08-22 10:34:02 +02:00
|
|
|
#endif // QT_VERSION < QT_VERSION_CHECK(5, 5, 0)
|
2023-05-11 15:23:57 +02:00
|
|
|
|
2020-01-07 13:21:47 +01:00
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
|
2023-07-13 16:49:20 +02:00
|
|
|
#include "../vmisc/vdatastreamenum.h"
|
2020-01-07 08:45:26 +01:00
|
|
|
#endif
|
2023-05-11 15:23:57 +02:00
|
|
|
|
2019-07-01 10:02:09 +02:00
|
|
|
#include "../ifc/exception/vexception.h"
|
2023-07-13 16:49:20 +02:00
|
|
|
#include "../vgeometry/vgeometrydef.h"
|
2023-01-04 17:31:50 +01:00
|
|
|
#include "../vgeometry/vlayoutplacelabel.h"
|
2023-07-13 16:49:20 +02:00
|
|
|
#include "vlayoutpiecepath.h"
|
|
|
|
#include "vlayoutpoint.h"
|
|
|
|
#include "vtextmanager.h"
|
2016-07-22 12:50:21 +02:00
|
|
|
|
2016-08-06 20:42:40 +02:00
|
|
|
QT_WARNING_PUSH
|
|
|
|
QT_WARNING_DISABLE_GCC("-Weffc++")
|
2017-05-30 17:44:16 +02:00
|
|
|
QT_WARNING_DISABLE_GCC("-Wnon-virtual-dtor")
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2017-01-22 10:02:02 +01:00
|
|
|
class VLayoutPieceData : public QSharedData
|
2015-01-07 17:54:43 +01:00
|
|
|
{
|
|
|
|
public:
|
2023-07-13 16:49:20 +02:00
|
|
|
VLayoutPieceData() = default;
|
2022-10-28 15:16:02 +02:00
|
|
|
VLayoutPieceData(const VLayoutPieceData &detail) = default;
|
2022-08-22 15:36:01 +02:00
|
|
|
~VLayoutPieceData() = default;
|
2019-07-01 10:02:09 +02:00
|
|
|
|
2023-07-13 16:49:20 +02:00
|
|
|
friend auto operator<<(QDataStream &dataStream, const VLayoutPieceData &piece) -> QDataStream &;
|
|
|
|
friend auto operator>>(QDataStream &dataStream, VLayoutPieceData &piece) -> QDataStream &;
|
2015-01-07 17:54:43 +01:00
|
|
|
|
|
|
|
/** @brief contour list of contour points. */
|
2023-07-13 16:49:20 +02:00
|
|
|
QVector<VLayoutPoint> m_contour{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2017-01-25 12:29:03 +01:00
|
|
|
/** @brief seamAllowance list of seam allowance points. */
|
2023-07-13 16:49:20 +02:00
|
|
|
QVector<VLayoutPoint> m_seamAllowance{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2017-01-25 12:29:03 +01:00
|
|
|
/** @brief layoutAllowance list of layout allowance points. */
|
2023-07-13 16:49:20 +02:00
|
|
|
QVector<QPointF> m_layoutAllowance{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2017-01-22 13:32:25 +01:00
|
|
|
|
2017-03-30 12:27:57 +02:00
|
|
|
/** @brief passmarks list of passmakrs. */
|
2023-07-13 16:49:20 +02:00
|
|
|
QVector<VLayoutPassmark> m_passmarks{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2017-03-30 12:27:57 +02:00
|
|
|
|
2017-02-08 12:48:05 +01:00
|
|
|
/** @brief m_internalPaths list of internal paths. */
|
2022-10-28 15:16:02 +02:00
|
|
|
QVector<VLayoutPiecePath> m_internalPaths{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2015-01-07 17:54:43 +01:00
|
|
|
|
|
|
|
/** @brief matrix transformation matrix*/
|
2023-07-13 16:49:20 +02:00
|
|
|
QTransform m_matrix{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2017-01-23 17:20:15 +01:00
|
|
|
/** @brief layoutWidth value layout allowance width in pixels. */
|
2023-07-13 16:49:20 +02:00
|
|
|
qreal m_layoutWidth{0}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2015-01-18 19:56:01 +01:00
|
|
|
|
2023-07-13 16:49:20 +02:00
|
|
|
bool m_mirror{false}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2015-10-31 13:56:28 +01:00
|
|
|
|
2016-07-19 13:47:21 +02:00
|
|
|
/** @brief detailLabel detail label rectangle */
|
2023-07-13 16:49:20 +02:00
|
|
|
QVector<QPointF> m_detailLabel{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2017-03-02 08:12:48 +01:00
|
|
|
|
2016-07-19 13:47:21 +02:00
|
|
|
/** @brief patternInfo pattern info rectangle */
|
2023-07-13 16:49:20 +02:00
|
|
|
QVector<QPointF> m_patternInfo{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2017-03-02 08:12:48 +01:00
|
|
|
|
2023-07-13 16:49:20 +02:00
|
|
|
VPieceGrainline m_grainline{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2018-12-27 14:54:29 +01:00
|
|
|
|
2016-07-22 12:50:21 +02:00
|
|
|
/** @brief m_tmDetail text manager for laying out detail info */
|
2023-07-13 16:49:20 +02:00
|
|
|
VTextManager m_tmDetail{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2017-03-02 08:12:48 +01:00
|
|
|
|
2016-07-22 12:50:21 +02:00
|
|
|
/** @brief m_tmPattern text manager for laying out pattern info */
|
2023-07-13 16:49:20 +02:00
|
|
|
VTextManager m_tmPattern{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2016-07-17 22:52:53 +02:00
|
|
|
|
2017-10-15 11:25:20 +02:00
|
|
|
/** @brief m_placeLabels list of place labels. */
|
2022-10-28 15:16:02 +02:00
|
|
|
QVector<VLayoutPlaceLabel> m_placeLabels{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2017-10-15 11:25:20 +02:00
|
|
|
|
2022-10-28 15:16:02 +02:00
|
|
|
qint64 m_square{0}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2019-03-29 18:52:37 +01:00
|
|
|
|
2022-10-28 15:16:02 +02:00
|
|
|
quint16 m_quantity{1}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2019-07-04 13:33:45 +02:00
|
|
|
|
2019-07-19 09:45:57 +02:00
|
|
|
/** @brief m_id keep id of original piece. */
|
2022-10-28 15:16:02 +02:00
|
|
|
vidtype m_id{NULL_ID}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2019-07-19 09:45:57 +02:00
|
|
|
|
2022-10-28 15:16:02 +02:00
|
|
|
QString m_gradationId{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2021-08-31 11:07:26 +02:00
|
|
|
|
2022-10-28 15:16:02 +02:00
|
|
|
qreal m_xScale{1.0}; // NOLINT(misc-non-private-member-variables-in-classes)
|
|
|
|
qreal m_yScale{1.0}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2021-09-08 11:57:12 +02:00
|
|
|
|
2015-10-31 13:56:28 +01:00
|
|
|
private:
|
2022-10-28 15:16:02 +02:00
|
|
|
Q_DISABLE_ASSIGN_MOVE(VLayoutPieceData) // NOLINT
|
2019-07-01 10:02:09 +02:00
|
|
|
|
2022-10-28 15:16:02 +02:00
|
|
|
static constexpr quint32 streamHeader{0x80D7D009}; // CRC-32Q string "VLayoutPieceData"
|
2023-05-02 16:38:02 +02:00
|
|
|
static constexpr quint16 classVersion{5};
|
2015-01-07 17:54:43 +01:00
|
|
|
};
|
|
|
|
|
2022-11-21 07:55:32 +01:00
|
|
|
QT_WARNING_POP
|
|
|
|
|
|
|
|
// See https://stackoverflow.com/a/46719572/3045403
|
2023-07-13 16:49:20 +02:00
|
|
|
#if __cplusplus < 201703L // C++17
|
|
|
|
constexpr quint32 VLayoutPieceData::streamHeader; // NOLINT(readability-redundant-declaration)
|
|
|
|
constexpr quint16 VLayoutPieceData::classVersion; // NOLINT(readability-redundant-declaration)
|
2022-11-21 07:55:32 +01:00
|
|
|
#endif
|
|
|
|
|
2019-07-01 10:02:09 +02:00
|
|
|
// Friend functions
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2022-10-28 15:16:02 +02:00
|
|
|
inline auto operator<<(QDataStream &dataStream, const VLayoutPieceData &piece) -> QDataStream &
|
2019-07-01 10:02:09 +02:00
|
|
|
{
|
|
|
|
dataStream << VLayoutPieceData::streamHeader << VLayoutPieceData::classVersion;
|
|
|
|
|
2022-10-28 15:16:02 +02:00
|
|
|
dataStream << piece.m_contour;
|
|
|
|
dataStream << piece.m_seamAllowance;
|
|
|
|
dataStream << piece.m_layoutAllowance;
|
|
|
|
dataStream << piece.m_passmarks;
|
2019-07-01 10:02:09 +02:00
|
|
|
dataStream << piece.m_internalPaths;
|
2022-10-28 15:16:02 +02:00
|
|
|
dataStream << piece.m_matrix;
|
|
|
|
dataStream << piece.m_layoutWidth;
|
|
|
|
dataStream << piece.m_mirror;
|
|
|
|
dataStream << piece.m_detailLabel;
|
|
|
|
dataStream << piece.m_patternInfo;
|
2019-07-01 10:02:09 +02:00
|
|
|
dataStream << piece.m_placeLabels;
|
|
|
|
dataStream << piece.m_square;
|
2019-07-04 13:33:45 +02:00
|
|
|
dataStream << piece.m_quantity;
|
2019-07-19 09:45:57 +02:00
|
|
|
dataStream << piece.m_id;
|
2021-08-27 17:23:27 +02:00
|
|
|
dataStream << piece.m_tmDetail;
|
|
|
|
dataStream << piece.m_tmPattern;
|
2021-08-31 11:07:26 +02:00
|
|
|
dataStream << piece.m_gradationId;
|
2021-09-08 11:57:12 +02:00
|
|
|
dataStream << piece.m_xScale;
|
|
|
|
dataStream << piece.m_yScale;
|
2023-05-02 16:38:02 +02:00
|
|
|
dataStream << piece.m_grainline;
|
2021-08-27 17:23:27 +02:00
|
|
|
|
2019-07-01 10:02:09 +02:00
|
|
|
return dataStream;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2022-10-28 15:16:02 +02:00
|
|
|
inline auto operator>>(QDataStream &dataStream, VLayoutPieceData &piece) -> QDataStream &
|
2019-07-01 10:02:09 +02:00
|
|
|
{
|
|
|
|
quint32 actualStreamHeader = 0;
|
|
|
|
dataStream >> actualStreamHeader;
|
|
|
|
|
|
|
|
if (actualStreamHeader != VLayoutPieceData::streamHeader)
|
|
|
|
{
|
2023-05-02 16:38:02 +02:00
|
|
|
QString message = QCoreApplication::tr("VLayoutPieceData prefix mismatch error: actualStreamHeader = 0x%1 and "
|
2019-07-01 10:02:09 +02:00
|
|
|
"streamHeader = 0x%2")
|
2023-07-13 16:49:20 +02:00
|
|
|
.arg(actualStreamHeader, 8, 0x10, QChar('0'))
|
|
|
|
.arg(VLayoutPieceData::streamHeader, 8, 0x10, QChar('0'));
|
2019-07-01 10:02:09 +02:00
|
|
|
throw VException(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
quint16 actualClassVersion = 0;
|
|
|
|
dataStream >> actualClassVersion;
|
|
|
|
|
|
|
|
if (actualClassVersion > VLayoutPieceData::classVersion)
|
|
|
|
{
|
2023-05-02 16:38:02 +02:00
|
|
|
QString message = QCoreApplication::tr("VLayoutPieceData compatibility error: actualClassVersion = %1 and "
|
2019-07-01 10:02:09 +02:00
|
|
|
"classVersion = %2")
|
2023-07-13 16:49:20 +02:00
|
|
|
.arg(actualClassVersion)
|
|
|
|
.arg(VLayoutPieceData::classVersion);
|
2019-07-01 10:02:09 +02:00
|
|
|
throw VException(message);
|
|
|
|
}
|
|
|
|
|
2022-10-28 15:16:02 +02:00
|
|
|
if (actualClassVersion < 4)
|
|
|
|
{
|
|
|
|
auto ReadPoints = [&dataStream]()
|
|
|
|
{
|
|
|
|
QVector<QPointF> points;
|
|
|
|
dataStream >> points;
|
2022-10-28 12:55:24 +02:00
|
|
|
QVector<VLayoutPoint> casted;
|
|
|
|
CastTo(points, casted);
|
|
|
|
return casted;
|
2022-10-28 15:16:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
piece.m_contour = ReadPoints();
|
|
|
|
piece.m_seamAllowance = ReadPoints();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dataStream >> piece.m_contour;
|
|
|
|
dataStream >> piece.m_seamAllowance;
|
|
|
|
}
|
2023-05-02 16:38:02 +02:00
|
|
|
|
2022-10-28 15:16:02 +02:00
|
|
|
dataStream >> piece.m_layoutAllowance;
|
|
|
|
dataStream >> piece.m_passmarks;
|
2019-07-01 10:02:09 +02:00
|
|
|
dataStream >> piece.m_internalPaths;
|
2022-10-28 15:16:02 +02:00
|
|
|
dataStream >> piece.m_matrix;
|
|
|
|
dataStream >> piece.m_layoutWidth;
|
|
|
|
dataStream >> piece.m_mirror;
|
|
|
|
dataStream >> piece.m_detailLabel;
|
|
|
|
dataStream >> piece.m_patternInfo;
|
2023-05-02 16:38:02 +02:00
|
|
|
|
|
|
|
QVector<QPointF> shape;
|
|
|
|
GrainlineArrowDirection arrowType = GrainlineArrowDirection::oneWayUp;
|
|
|
|
bool grainlineEnabled = false;
|
|
|
|
|
|
|
|
if (actualClassVersion < 5)
|
|
|
|
{
|
|
|
|
dataStream >> shape;
|
|
|
|
|
|
|
|
dataStream >> arrowType;
|
|
|
|
|
|
|
|
qreal grainlineAngle;
|
|
|
|
dataStream >> grainlineAngle;
|
|
|
|
|
|
|
|
dataStream >> grainlineEnabled;
|
|
|
|
}
|
|
|
|
|
2019-07-01 10:02:09 +02:00
|
|
|
dataStream >> piece.m_placeLabels;
|
|
|
|
dataStream >> piece.m_square;
|
|
|
|
|
2019-07-04 13:33:45 +02:00
|
|
|
if (actualClassVersion >= 2)
|
|
|
|
{
|
|
|
|
dataStream >> piece.m_quantity;
|
2019-07-19 09:45:57 +02:00
|
|
|
dataStream >> piece.m_id;
|
2019-07-04 13:33:45 +02:00
|
|
|
}
|
2019-07-01 10:02:09 +02:00
|
|
|
|
2021-08-27 17:23:27 +02:00
|
|
|
if (actualClassVersion >= 3)
|
|
|
|
{
|
|
|
|
dataStream >> piece.m_tmDetail;
|
|
|
|
dataStream >> piece.m_tmPattern;
|
2021-08-31 11:07:26 +02:00
|
|
|
dataStream >> piece.m_gradationId;
|
2021-09-08 11:57:12 +02:00
|
|
|
dataStream >> piece.m_xScale;
|
|
|
|
dataStream >> piece.m_yScale;
|
2021-08-27 17:23:27 +02:00
|
|
|
}
|
|
|
|
|
2023-05-02 16:38:02 +02:00
|
|
|
if (actualClassVersion >= 5)
|
|
|
|
{
|
|
|
|
dataStream >> piece.m_grainline;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (shape.size() >= 2)
|
|
|
|
{
|
|
|
|
piece.m_grainline = VPieceGrainline(QLineF(ConstFirst(shape), ConstLast(shape)), arrowType);
|
|
|
|
piece.m_grainline.SetEnabled(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
piece.m_grainline = VPieceGrainline();
|
|
|
|
piece.m_grainline.SetArrowType(arrowType);
|
|
|
|
piece.m_grainline.SetEnabled(grainlineEnabled);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-01 10:02:09 +02:00
|
|
|
return dataStream;
|
|
|
|
}
|
|
|
|
|
2015-01-07 17:54:43 +01:00
|
|
|
#endif // VLAYOUTDETAIL_P_H
|