valentina/src/libs/vlayout/vlayoutdetail_p.h

110 lines
4.4 KiB
C
Raw Normal View History

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.
** 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>
#include <QTransform>
2015-01-07 17:54:43 +01:00
#include "../vpatterndb/vpatternpiecedata.h"
#include "../vpatterndb/vpatterninfogeometry.h"
#include "../vpatterndb/vgrainlinegeometry.h"
#include "vtextmanager.h"
QT_WARNING_PUSH
QT_WARNING_DISABLE_GCC("-Weffc++")
2015-01-07 17:54:43 +01:00
class VLayoutDetailData : public QSharedData
{
public:
VLayoutDetailData()
:contour(QVector<QPointF>()), seamAllowence(QVector<QPointF>()), layoutAllowence(QVector<QPointF>()),
matrix(QMatrix()), layoutWidth(0), mirror(false), detailLabel(QVector<QPointF>()),
patternInfo(QVector<QPointF>()), grainlinePoints(QVector<QPointF>()), detailData(), patternGeom(),
grainlineGeom(), m_tmDetail(), m_tmPattern(), m_liPP(QList<QPainterPath>())
2015-01-07 17:54:43 +01:00
{}
VLayoutDetailData(const VLayoutDetailData &detail)
:QSharedData(detail), contour(detail.contour), seamAllowence(detail.seamAllowence),
layoutAllowence(detail.layoutAllowence), 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
{}
~VLayoutDetailData() {}
/** @brief contour list of contour points. */
QVector<QPointF> contour;
2015-01-07 17:54:43 +01:00
/** @brief seamAllowence list of seam allowence points. */
QVector<QPointF> seamAllowence;
2015-01-07 17:54:43 +01:00
/** @brief layoutAllowence list of layout allowence points. */
QVector<QPointF> layoutAllowence;
2015-01-07 17:54:43 +01:00
/** @brief matrix transformation matrix*/
QTransform matrix;
2015-01-07 17:54:43 +01:00
/** @brief layoutWidth value layout allowence width in pixels. */
qreal layoutWidth;
bool mirror;
2015-10-31 13:56:28 +01:00
/** @brief detailLabel detail label rectangle */
QVector<QPointF> detailLabel;
/** @brief patternInfo pattern info rectangle */
QVector<QPointF> patternInfo;
/** @brief grainlineInfo line */
QVector<QPointF> grainlinePoints;
/** @brief detailData detail data */
VPatternPieceData detailData;
/** @brief patternGeom pattern geometry */
VPatternInfoGeometry patternGeom;
/** @brief grainlineGeom grainline geometry */
VGrainlineGeometry grainlineGeom;
/** @brief m_tmDetail text manager for laying out detail info */
VTextManager m_tmDetail;
/** @brief m_tmPattern text manager for laying out pattern info */
VTextManager m_tmPattern;
/** @bried m_liPP list of generated text painter paths */
QList<QPainterPath> m_liPP;
2015-10-31 13:56:28 +01:00
private:
VLayoutDetailData &operator=(const VLayoutDetailData &) Q_DECL_EQ_DELETE;
2015-01-07 17:54:43 +01:00
};
QT_WARNING_POP
2015-01-07 17:54:43 +01:00
#endif // VLAYOUTDETAIL_P_H