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
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2015-01-07 17:54:43 +01:00
|
|
|
** <https://bitbucket.org/dismine/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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#ifndef VLAYOUTDETAIL_P_H
|
|
|
|
#define VLAYOUTDETAIL_P_H
|
|
|
|
|
|
|
|
#include <QSharedData>
|
|
|
|
#include <QPointF>
|
|
|
|
#include <QVector>
|
2015-01-18 19:56:01 +01:00
|
|
|
#include <QTransform>
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2016-07-19 02:26:50 +02:00
|
|
|
#include "../vpatterndb/vpatternpiecedata.h"
|
2016-07-19 13:47:21 +02:00
|
|
|
#include "../vpatterndb/vpatterninfogeometry.h"
|
2016-10-16 11:38:08 +02:00
|
|
|
#include "../vpatterndb/vgrainlinegeometry.h"
|
|
|
|
|
2016-07-22 12:50:21 +02:00
|
|
|
#include "vtextmanager.h"
|
|
|
|
|
2016-08-06 20:42:40 +02:00
|
|
|
QT_WARNING_PUSH
|
|
|
|
QT_WARNING_DISABLE_GCC("-Weffc++")
|
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:
|
2017-01-22 10:02:02 +01:00
|
|
|
VLayoutPieceData()
|
2017-01-22 13:32:25 +01:00
|
|
|
: contour(),
|
2017-01-25 12:29:03 +01:00
|
|
|
seamAllowance(),
|
|
|
|
layoutAllowance(),
|
2017-01-22 13:32:25 +01:00
|
|
|
m_internalPaths(),
|
|
|
|
matrix(),
|
|
|
|
layoutWidth(0),
|
|
|
|
mirror(false),
|
|
|
|
detailLabel(),
|
|
|
|
patternInfo(),
|
|
|
|
grainlinePoints(),
|
|
|
|
detailData(),
|
|
|
|
patternGeom(),
|
|
|
|
grainlineGeom(),
|
|
|
|
m_tmDetail(),
|
|
|
|
m_tmPattern(),
|
|
|
|
m_liPP()
|
2015-01-07 17:54:43 +01:00
|
|
|
{}
|
|
|
|
|
2017-01-22 10:02:02 +01:00
|
|
|
VLayoutPieceData(const VLayoutPieceData &detail)
|
2017-01-22 13:32:25 +01:00
|
|
|
: QSharedData(detail),
|
|
|
|
contour(detail.contour),
|
2017-01-25 12:29:03 +01:00
|
|
|
seamAllowance(detail.seamAllowance),
|
|
|
|
layoutAllowance(detail.layoutAllowance),
|
2017-01-22 13:32:25 +01:00
|
|
|
m_internalPaths(detail.m_internalPaths),
|
|
|
|
matrix(detail.matrix),
|
|
|
|
layoutWidth(detail.layoutWidth),
|
|
|
|
mirror(detail.mirror),
|
|
|
|
detailLabel(detail.detailLabel),
|
|
|
|
patternInfo(detail.patternInfo),
|
|
|
|
grainlinePoints(detail.grainlinePoints),
|
|
|
|
detailData(detail.detailData),
|
|
|
|
patternGeom(detail.patternGeom),
|
|
|
|
grainlineGeom(detail.grainlineGeom),
|
|
|
|
m_tmDetail(detail.m_tmDetail),
|
|
|
|
m_tmPattern(detail.m_tmPattern),
|
|
|
|
m_liPP(detail.m_liPP)
|
2015-01-07 17:54:43 +01:00
|
|
|
{}
|
|
|
|
|
2017-01-22 10:02:02 +01:00
|
|
|
~VLayoutPieceData() {}
|
2015-01-07 17:54:43 +01:00
|
|
|
|
|
|
|
/** @brief contour list of contour points. */
|
2017-01-22 13:32:25 +01:00
|
|
|
QVector<QPointF> contour;
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2017-01-25 12:29:03 +01:00
|
|
|
/** @brief seamAllowance list of seam allowance points. */
|
|
|
|
QVector<QPointF> seamAllowance;
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2017-01-25 12:29:03 +01:00
|
|
|
/** @brief layoutAllowance list of layout allowance points. */
|
|
|
|
QVector<QPointF> layoutAllowance;
|
2017-01-22 13:32:25 +01:00
|
|
|
|
2017-01-25 12:29:03 +01:00
|
|
|
/** @brief m_internalPaths list of internal paths points. */
|
2017-01-22 13:32:25 +01:00
|
|
|
QVector<QVector<QPointF>> m_internalPaths;
|
2015-01-07 17:54:43 +01:00
|
|
|
|
|
|
|
/** @brief matrix transformation matrix*/
|
2017-01-22 13:32:25 +01:00
|
|
|
QTransform matrix;
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2017-01-23 17:20:15 +01:00
|
|
|
/** @brief layoutWidth value layout allowance width in pixels. */
|
2017-01-22 13:32:25 +01:00
|
|
|
qreal layoutWidth;
|
2015-01-18 19:56:01 +01:00
|
|
|
|
2017-01-22 13:32:25 +01:00
|
|
|
bool mirror;
|
2015-10-31 13:56:28 +01:00
|
|
|
|
2016-07-19 13:47:21 +02:00
|
|
|
/** @brief detailLabel detail label rectangle */
|
2017-01-22 13:32:25 +01:00
|
|
|
QVector<QPointF> detailLabel;
|
2016-07-19 13:47:21 +02:00
|
|
|
/** @brief patternInfo pattern info rectangle */
|
2017-01-22 13:32:25 +01:00
|
|
|
QVector<QPointF> patternInfo;
|
2016-10-16 11:38:08 +02:00
|
|
|
/** @brief grainlineInfo line */
|
2017-01-22 13:32:25 +01:00
|
|
|
QVector<QPointF> grainlinePoints;
|
2016-07-19 13:47:21 +02:00
|
|
|
/** @brief detailData detail data */
|
2017-01-22 13:32:25 +01:00
|
|
|
VPatternPieceData detailData;
|
2016-07-19 13:47:21 +02:00
|
|
|
/** @brief patternGeom pattern geometry */
|
2017-01-22 13:32:25 +01:00
|
|
|
VPatternInfoGeometry patternGeom;
|
2016-10-16 11:38:08 +02:00
|
|
|
/** @brief grainlineGeom grainline geometry */
|
2017-01-22 13:32:25 +01:00
|
|
|
VGrainlineGeometry grainlineGeom;
|
2016-07-22 12:50:21 +02:00
|
|
|
/** @brief m_tmDetail text manager for laying out detail info */
|
2017-01-22 13:32:25 +01:00
|
|
|
VTextManager m_tmDetail;
|
2016-07-22 12:50:21 +02:00
|
|
|
/** @brief m_tmPattern text manager for laying out pattern info */
|
2017-01-22 13:32:25 +01:00
|
|
|
VTextManager m_tmPattern;
|
2016-07-22 12:50:21 +02:00
|
|
|
/** @bried m_liPP list of generated text painter paths */
|
2017-01-22 13:32:25 +01:00
|
|
|
QList<QPainterPath> m_liPP;
|
2016-07-17 22:52:53 +02:00
|
|
|
|
2015-10-31 13:56:28 +01:00
|
|
|
private:
|
2017-01-22 10:02:02 +01:00
|
|
|
VLayoutPieceData &operator=(const VLayoutPieceData &) Q_DECL_EQ_DELETE;
|
2015-01-07 17:54:43 +01:00
|
|
|
};
|
|
|
|
|
2016-08-06 20:42:40 +02:00
|
|
|
QT_WARNING_POP
|
2015-01-07 17:54:43 +01:00
|
|
|
|
|
|
|
#endif // VLAYOUTDETAIL_P_H
|