/************************************************************************ ** ** @file ** @author Roman Telezhynskyi ** @date 3 11, 2016 ** ** @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) 2016 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 VPIECE_H #define VPIECE_H #include #include #include "../vlayout/vabstractpiece.h" #include "../vgeometry/vgeometrydef.h" class VPieceData; class VPieceNode; template class QVector; template class QSharedPointer; class VPiecePath; class VPatternLabelData; class VPieceLabelData; class VGrainlineData; class VContainer; class QPainterPath; class VPointF; class VPiece : public VAbstractPiece { public: VPiece(); VPiece(const VPiece &piece); virtual ~VPiece(); VPiece &operator=(const VPiece &piece); #ifdef Q_COMPILER_RVALUE_REFS VPiece &operator=(VPiece &&piece) Q_DECL_NOTHROW { Swap(piece); return *this; } #endif inline void Swap(VPiece &piece) Q_DECL_NOTHROW { VAbstractPiece::Swap(piece); std::swap(d, piece.d); } VPiecePath GetPath() const; VPiecePath &GetPath(); void SetPath(const VPiecePath &path); QVector MainPathPoints(const VContainer *data) const; QVector MainPathNodePoints(const VContainer *data, bool showExcluded = false) const; QVector SeamAllowancePoints(const VContainer *data) const; QVector PassmarksLines(const VContainer *data, const QVector &seamAllowance = QVector()) const; QVector PlaceLabelPoints(const VContainer *data) const; QVector CurvesPainterPath(const VContainer *data) const; QPainterPath MainPathPath(const VContainer *data) const; static QPainterPath MainPathPath(const QVector &points); QPainterPath SeamAllowancePath(const VContainer *data) const; QPainterPath SeamAllowancePath(const QVector &points) const; QPainterPath PassmarksPath(const VContainer *data, const QVector &seamAllowance = QVector()) const; QPainterPath PlaceLabelPath(const VContainer *data) const; bool IsInLayout() const; void SetInLayout(bool inLayout); bool IsUnited() const; void SetUnited(bool united); QString GetFormulaSAWidth() const; void SetFormulaSAWidth(const QString &formula, qreal value); QVector GetInternalPaths() const; QVector &GetInternalPaths(); void SetInternalPaths(const QVector &iPaths); QVector GetCustomSARecords() const; QVector &GetCustomSARecords(); void SetCustomSARecords(const QVector &records); QVector GetPins() const; QVector &GetPins(); void SetPins(const QVector &pins); QVector GetPlaceLabels() const; QVector &GetPlaceLabels(); void SetPlaceLabels(const QVector &labels); QList Dependencies() const; QVector MissingNodes(const VPiece &det) const; QVector MissingCSAPath(const VPiece &det) const; QVector MissingInternalPaths(const VPiece &det) const; QVector MissingPins(const VPiece &det) const; QVector MissingPlaceLabels(const VPiece &det) const; void SetPatternPieceData(const VPieceLabelData &data); VPieceLabelData& GetPatternPieceData(); const VPieceLabelData& GetPatternPieceData() const; void SetPatternInfo(const VPatternLabelData &info); VPatternLabelData& GetPatternInfo(); const VPatternLabelData& GetPatternInfo() const; void SetGrainlineGeometry(const VGrainlineData &data); VGrainlineData& GetGrainlineGeometry(); const VGrainlineData& GetGrainlineGeometry() const; private: QSharedDataPointer d; QVector GetUnitedPath(const VContainer *data) const; QVector GetValidRecords() const; QVector FilterRecords(QVector records) const; QVector GetNodeSAPoints(const QVector &path, int index, const VContainer *data) const; bool GetPassmarkSAPoint(const QVector &path, int index, const VContainer *data, VSAPoint &point) const; bool GetPassmarkPreviousSAPoints(const QVector &path, int index, const VSAPoint &passmarkSAPoint, const VContainer *data, VSAPoint &point) const; int GetPassmarkNextSAPoints(const QVector &path, int index, const VSAPoint &passmarkSAPoint, const VContainer *data, VSAPoint &point) const; bool GetSeamPassmarkSAPoint(const VSAPoint &previousSAPoint, const VSAPoint &passmarkSAPoint, const VSAPoint &nextSAPoint, const VContainer *data, QPointF &point) const; bool IsPassmarkVisible(const QVector &path, int passmarkIndex) const; QVector CreatePassmark(const QVector &path, int previousIndex, int passmarkIndex, int nextIndex, const VContainer *data, const QVector &seamAllowance = QVector()) const; QVector SAPassmark(const QVector &path, VSAPoint &previousSAPoint, const VSAPoint &passmarkSAPoint, VSAPoint &nextSAPoint, const VContainer *data, int passmarkIndex, const QVector &seamAllowance = QVector()) const; QVector BuiltInSAPassmark(const QVector &path, const VSAPoint &previousSAPoint, const VSAPoint &passmarkSAPoint, const VSAPoint &nextSAPoint, const VContainer *data, int passmarkIndex) const; static int IsCSAStart(const QVector &records, quint32 id); PlaceLabelImg LabelShape(const VContainer *data) const; PlaceLabelImg SegmentShape(const VContainer *data) const; PlaceLabelImg RectangleShape(const VContainer *data) const; PlaceLabelImg CrossShape(const VContainer *data) const; PlaceLabelImg TshapedShape(const VContainer *data) const; PlaceLabelImg DoubletreeShape(const VContainer *data) const; PlaceLabelImg CornerShape(const VContainer *data) const; PlaceLabelImg TriangleShape(const VContainer *data) const; PlaceLabelImg HshapedShape(const VContainer *data) const; PlaceLabelImg ButtonShape(const VContainer *data) const; }; Q_DECLARE_TYPEINFO(VPiece, Q_MOVABLE_TYPE); #endif // VPIECE_H