/************************************************************************ ** ** @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; class VPiecePath; class VPatternLabelData; class VPieceLabelData; class VGrainlineData; class VContainer; class QPainterPath; class VPointF; class VPassmark; class VPiece : public VAbstractPiece { Q_DECLARE_TR_FUNCTIONS(VPiece) public: VPiece(); VPiece(const VPiece &piece); virtual ~VPiece(); VPiece &operator=(const VPiece &piece); #ifdef Q_COMPILER_RVALUE_REFS VPiece(const VPiece &&piece) Q_DECL_NOTHROW; VPiece &operator=(VPiece &&piece) Q_DECL_NOTHROW; #endif VPiecePath GetPath() const; VPiecePath &GetPath(); void SetPath(const VPiecePath &path); QVector MainPathPoints(const VContainer *data) const; QVector UniteMainPathPoints(const VContainer *data) const; QVector MainPathNodePoints(const VContainer *data, bool showExcluded = false) const; QVector SeamAllowancePoints(const VContainer *data) const; QVector CuttingPathPoints(const VContainer *data) const; QVector PassmarksLines(const VContainer *data) const; QVector Passmarks(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; QPainterPath PlaceLabelPath(const VContainer *data) const; bool IsSeamAllowanceValid(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; QVector GetUnitedPath(const VContainer *data) const; QVector SeamAllowancePointsWithRotation(const VContainer *data, int makeFirst) const; static void DumpPiece(const VPiece &piece, const VContainer *data); private: QSharedDataPointer d; 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, int passmarkIndex) const; bool GetPassmarkNextSAPoints(const QVector &path, int index, const VSAPoint &passmarkSAPoint, const VContainer *data, VSAPoint &point, int passmarkIndex) const; bool IsPassmarkVisible(const QVector &path, int passmarkIndex) const; VPassmark CreatePassmark(const QVector &path, int previousIndex, int passmarkIndex, int nextIndex, const VContainer *data) const; static int IsCSAStart(const QVector &records, quint32 id); QJsonObject MainPathToJson() const; QJsonObject DBToJson(const VContainer *data) const; }; Q_DECLARE_TYPEINFO(VPiece, Q_MOVABLE_TYPE); #endif // VPIECE_H