/************************************************************************ ** ** @file vlayoutdetail.h ** @author Roman Telezhynskyi ** @date 2 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 ** 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 . ** *************************************************************************/ #ifndef VLAYOUTDETAIL_H #define VLAYOUTDETAIL_H #include #include #include #include #include #include #include #include #include #include #include #include "../ifc/xml/vabstractpattern.h" #include "../vpatterndb/floatItemData/vpatternlabeldata.h" #include "../vpatterndb/floatItemData/vpiecelabeldata.h" #include "../vpatterndb/vcontainer.h" #include "vabstractpiece.h" class VLayoutPieceData; class VLayoutPiecePath; class QGraphicsItem; class QGraphicsPathItem; class VTextManager; class VLayoutPiece :public VAbstractPiece { Q_DECLARE_TR_FUNCTIONS(VLayoutPiece) public: VLayoutPiece(); VLayoutPiece(const VLayoutPiece &detail); VLayoutPiece &operator=(const VLayoutPiece &detail); virtual ~VLayoutPiece() Q_DECL_OVERRIDE; static VLayoutPiece Create(const VPiece &piece, const VContainer *pattern); QVector GetContourPoints() const; void SetCountourPoints(const QVector &points); QVector GetSeamAllowancePoints() const; void SetSeamAllowancePoints(const QVector &points, bool seamAllowance = true); QVector GetLayoutAllowancePoints() const; void SetLayoutAllowancePoints(); QVector GetPassmarks() const; void SetPassmarks(const QVector &passmarks); QVector GetInternalPaths() const; void SetInternalPaths(const QVector &internalPaths); void SetDetail(const QString &qsName, const VPieceLabelData& data, const QFont& font, const VContainer *pattern); void SetPatternInfo(const VAbstractPattern* pDoc, const VPatternLabelData& geom, const QFont& font, qreal dSize, qreal dHeight, const VContainer *pattern); void SetGrainline(const VGrainlineData& geom, const VContainer *pattern); QTransform GetMatrix() const; void SetMatrix(const QTransform &matrix); qreal GetLayoutWidth() const; void SetLayoutWidth(const qreal &value); bool IsMirror() const; void SetMirror(bool value); void Translate(qreal dx, qreal dy); void Rotate(const QPointF &originPoint, qreal degrees); void Mirror(const QLineF &edge); int DetailEdgesCount() const; int LayoutEdgesCount() const; QLineF DetailEdge(int i) const; QLineF LayoutEdge(int i) const; int DetailEdgeByPoint(const QPointF &p1) const; int LayoutEdgeByPoint(const QPointF &p1) const; QRectF DetailBoundingRect() const; QRectF LayoutBoundingRect() const; qreal Diagonal() const; bool isNull() const; qint64 Square() const; QPainterPath ContourPath() const; QPainterPath LayoutAllowancePath() const; QGraphicsItem *GetItem() const Q_REQUIRED_RESULT; private: QSharedDataPointer d; QVector DetailPath() const; QGraphicsPathItem *GetMainItem() const Q_REQUIRED_RESULT; QPainterPath CreateLabelText(const QVector &labelShape, const VTextManager &tm) const; void CreateInternalPathItem(int i, QGraphicsItem *parent) const; void CreateGrainlineItem(QGraphicsItem *parent) const; template QVector Map(const QVector &points) const; QLineF Edge(const QVector &path, int i) const; int EdgeByPoint(const QVector &path, const QPointF &p1) const; }; Q_DECLARE_TYPEINFO(VLayoutPiece, Q_MOVABLE_TYPE); #endif // VLAYOUTDETAIL_H