valentina/src/libs/vlayout/vlayoutpiece.h

232 lines
8 KiB
C
Raw Normal View History

/************************************************************************
**
** @file vlayoutdetail.h
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 2 1, 2015
**
** @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) 2013-2015 Valentina project
** <https://gitlab.com/smart-pattern/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_H
#define VLAYOUTDETAIL_H
#include <qcompilerdetection.h>
#include <QDate>
#include <QLineF>
2015-01-07 17:54:43 +01:00
#include <QMatrix>
#include <QPointF>
#include <QRectF>
#include <QSharedDataPointer>
#include <QString>
#include <QTypeInfo>
#include <QVector>
#include <QtGlobal>
#include <QCoreApplication>
2015-01-07 17:54:43 +01:00
#include "vabstractpiece.h"
#include "../vmisc/typedef.h"
#include "../vpatterndb/floatItemData/floatitemdef.h"
class VLayoutPieceData;
class VLayoutPiecePath;
class QGraphicsItem;
class QGraphicsPathItem;
class VTextManager;
class VPiece;
class VPieceLabelData;
class VAbstractPattern;
class VPatternLabelData;
2022-10-28 15:16:02 +02:00
class VLayoutPoint;
2015-01-07 17:54:43 +01:00
2021-09-25 16:18:33 +02:00
QT_WARNING_PUSH
QT_WARNING_DISABLE_GCC("-Wsuggest-final-types")
QT_WARNING_DISABLE_GCC("-Wsuggest-final-methods")
class VLayoutPiece :public VAbstractPiece
{
2022-08-12 17:50:13 +02:00
Q_DECLARE_TR_FUNCTIONS(VLayoutPiece) // NOLINT
public:
VLayoutPiece();
VLayoutPiece(const VLayoutPiece &detail);
2022-10-20 19:08:39 +02:00
~VLayoutPiece() override;
2015-01-07 17:54:43 +01:00
2022-10-20 19:08:39 +02:00
auto operator=(const VLayoutPiece &detail) -> VLayoutPiece &;
#ifdef Q_COMPILER_RVALUE_REFS
2022-08-12 17:50:13 +02:00
VLayoutPiece(VLayoutPiece &&detail) Q_DECL_NOTHROW;
2022-10-20 19:08:39 +02:00
auto operator=(VLayoutPiece &&detail) Q_DECL_NOTHROW -> VLayoutPiece &;
#endif
2022-10-20 19:08:39 +02:00
static auto Create(const VPiece &piece, vidtype id, const VContainer *pattern) -> VLayoutPiece;
2022-10-20 19:08:39 +02:00
auto GetUniqueID() const -> QString override;
2021-08-31 11:07:26 +02:00
2022-10-20 19:08:39 +02:00
auto GetMappedContourPoints() const -> QVector<VLayoutPoint>;
auto GetContourPoints() const -> QVector<VLayoutPoint>;
2022-11-14 17:02:00 +01:00
void SetContourPoints(const QVector<VLayoutPoint> &points, bool hideMainPath = false);
2015-01-07 17:54:43 +01:00
2022-10-20 19:08:39 +02:00
auto GetMappedSeamAllowancePoints() const -> QVector<VLayoutPoint>;
auto GetSeamAllowancePoints() const -> QVector<VLayoutPoint>;
2022-10-28 15:16:02 +02:00
void SetSeamAllowancePoints(const QVector<VLayoutPoint> &points, bool seamAllowance = true,
bool seamAllowanceBuiltIn = false);
2015-01-07 17:54:43 +01:00
2022-10-20 19:08:39 +02:00
auto GetMappedLayoutAllowancePoints() const -> QVector<QPointF>;
auto GetLayoutAllowancePoints() const -> QVector<QPointF>;
void SetLayoutAllowancePoints();
2015-01-07 17:54:43 +01:00
2022-10-20 19:08:39 +02:00
auto GetMappedExternalContourPoints() const -> QVector<VLayoutPoint>;
auto GetExternalContourPoints() const -> QVector<VLayoutPoint>;
2022-10-20 19:08:39 +02:00
auto GetMappedPassmarks() const -> QVector<VLayoutPassmark>;
auto GetPassmarks() const -> QVector<VLayoutPassmark>;
void SetPassmarks(const QVector<VLayoutPassmark> &passmarks);
2022-10-20 19:08:39 +02:00
auto GetPlaceLabels() const -> QVector<VLayoutPlaceLabel>;
void SetPlaceLabels(const QVector<VLayoutPlaceLabel> &labels);
2022-10-20 19:08:39 +02:00
auto MappedInternalPathsForCut(bool cut) const -> QVector<QVector<VLayoutPoint> >;
auto GetInternalPaths() const -> QVector<VLayoutPiecePath>;
void SetInternalPaths(const QVector<VLayoutPiecePath> &internalPaths);
2022-10-20 19:08:39 +02:00
auto GetPieceTextPosition() const -> QPointF;
auto GetPieceText() const -> QStringList;
void SetPieceText(const QString &qsName, const VPieceLabelData& data, const QFont& font, const VContainer *pattern);
2022-10-20 19:08:39 +02:00
auto GetPatternTextPosition() const -> QPointF;
auto GetPatternText() const -> QStringList;
void SetPatternInfo(VAbstractPattern *pDoc, const VPatternLabelData& geom, const QFont& font,
const VContainer *pattern);
void SetGrainline(const VGrainlineData& geom, const VContainer *pattern);
2022-10-20 19:08:39 +02:00
auto GetMappedGrainline() const -> QVector<QPointF>;
auto GetGrainline() const -> QVector<QPointF>;
auto IsGrainlineEnabled() const -> bool;
auto GrainlineAngle() const -> qreal;
auto GrainlineArrowType() const -> GrainlineArrowDirection;
2022-10-20 19:08:39 +02:00
auto GetMatrix() const -> QTransform;
void SetMatrix(const QTransform &matrix);
2015-01-07 17:54:43 +01:00
2022-10-20 19:08:39 +02:00
auto GetLayoutWidth() const -> qreal;
void SetLayoutWidth(qreal value);
2015-01-07 17:54:43 +01:00
2022-10-20 19:08:39 +02:00
auto GetQuantity() const -> quint16;
void SetQuantity(quint16 value);
2022-10-20 19:08:39 +02:00
auto GetId() const -> vidtype;
void SetId(vidtype id);
2022-10-20 19:08:39 +02:00
auto IsMirror() const -> bool;
void SetMirror(bool value);
2021-08-31 11:07:26 +02:00
void SetGradationId(const QString &id);
auto GetGradationId() const -> QString;
auto GetXScale() const -> qreal;
void SetXScale(qreal xs);
auto GetYScale() const -> qreal;
void SetYScale(qreal ys);
2021-08-09 14:09:10 +02:00
void Translate(const QPointF &p);
void Translate(qreal dx, qreal dy);
void Scale(qreal sx, qreal sy);
void Rotate(const QPointF &originPoint, qreal degrees);
void Mirror(const QLineF &edge);
void Mirror();
2015-01-07 17:54:43 +01:00
2022-10-20 19:08:39 +02:00
auto DetailEdgesCount() const -> int;
auto LayoutEdgesCount() const -> int;
2022-10-20 19:08:39 +02:00
auto LayoutEdge(int i) const -> QLineF;
auto LayoutEdgeByPoint(const QPointF &p1) const -> int;
2022-10-20 19:08:39 +02:00
auto MappedDetailBoundingRect() const -> QRectF;
auto DetailBoundingRect() const -> QRectF;
auto MappedLayoutBoundingRect() const -> QRectF;
auto Diagonal() const -> qreal;
2015-01-07 17:54:43 +01:00
2022-10-20 19:08:39 +02:00
static auto BoundingRect(QVector<QPointF> points) -> QRectF;
2022-10-20 19:08:39 +02:00
auto isNull() const -> bool;
auto Square() const -> qint64;
2022-10-20 19:08:39 +02:00
auto MappedContourPath() const -> QPainterPath;
auto ContourPath() const -> QPainterPath;
auto MappedLayoutAllowancePath() const -> QPainterPath;
2021-05-27 19:58:18 +02:00
void DrawMiniature(QPainter &painter) const;
2022-10-20 19:08:39 +02:00
Q_REQUIRED_RESULT auto GetItem(bool textAsPaths) const -> QGraphicsItem *;
2022-10-20 19:08:39 +02:00
auto IsLayoutAllowanceValid() const -> bool;
2022-10-20 19:08:39 +02:00
auto BiggestEdge() const -> qreal;
2022-10-20 19:08:39 +02:00
friend auto operator<< (QDataStream& dataStream, const VLayoutPiece& piece) -> QDataStream&;
friend auto operator>> (QDataStream& dataStream, VLayoutPiece& piece) -> QDataStream&;
2022-10-28 15:16:02 +02:00
auto MapPlaceLabelShape(PlaceLabelImg shape) const -> PlaceLabelImg;
2021-08-14 14:19:28 +02:00
protected:
void SetGrainlineEnabled(bool enabled);
void SetGrainlineAngle(qreal angle);
void SetGrainlineArrowType(GrainlineArrowDirection type);
void SetGrainlinePoints(const QVector<QPointF> &points);
auto GetPieceLabelRect() const -> QVector<QPointF>;
void SetPieceLabelRect(const QVector<QPointF> &rect);
auto GetPieceLabelData() const ->VTextManager;
void SetPieceLabelData(const VTextManager &data);
auto GetPatternLabelRect() const -> QVector<QPointF>;
void SetPatternLabelRect(const QVector<QPointF> &rect);
auto GetPatternLabelData() const ->VTextManager;
void SetPatternLabelData(const VTextManager &data);
2015-01-07 17:54:43 +01:00
private:
QSharedDataPointer<VLayoutPieceData> d;
2015-01-07 17:54:43 +01:00
2022-10-20 19:08:39 +02:00
auto DetailPath() const -> QVector<VLayoutPoint>;
2022-10-20 19:08:39 +02:00
Q_REQUIRED_RESULT auto GetMainItem() const -> QGraphicsPathItem *;
Q_REQUIRED_RESULT auto GetMainPathItem() const -> QGraphicsPathItem *;
void CreateLabelStrings(QGraphicsItem *parent, const QVector<QPointF> &labelShape, const VTextManager &tm,
bool textAsPaths) const;
void CreateGrainlineItem(QGraphicsItem *parent) const;
template <class T>
2022-10-20 19:08:39 +02:00
auto Map(QVector<T> points) const -> QVector<T>;
2022-10-20 19:08:39 +02:00
auto Edge(const QVector<QPointF> &path, int i) const -> QLineF;
auto EdgeByPoint(const QVector<QPointF> &path, const QPointF &p1) const -> int;
};
2021-09-25 16:18:33 +02:00
QT_WARNING_POP
2022-08-12 17:50:13 +02:00
Q_DECLARE_TYPEINFO(VLayoutPiece, Q_MOVABLE_TYPE); // NOLINT
#endif // VLAYOUTDETAIL_H