2015-01-02 15:14:28 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vlayoutdetail.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 2 1, 2015
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2015-01-02 15:14:28 +01:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2020-01-31 07:00:05 +01:00
|
|
|
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
|
2015-01-02 15:14:28 +01:00
|
|
|
**
|
|
|
|
** 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
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <qcompilerdetection.h>
|
|
|
|
#include <QDate>
|
|
|
|
#include <QLineF>
|
2015-01-07 17:54:43 +01:00
|
|
|
#include <QMatrix>
|
|
|
|
#include <QPointF>
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QRectF>
|
|
|
|
#include <QSharedDataPointer>
|
|
|
|
#include <QString>
|
|
|
|
#include <QTypeInfo>
|
|
|
|
#include <QVector>
|
|
|
|
#include <QtGlobal>
|
2019-07-22 16:06:30 +02:00
|
|
|
#include <QCoreApplication>
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2017-01-22 09:50:23 +01:00
|
|
|
#include "vabstractpiece.h"
|
2019-07-22 16:06:30 +02:00
|
|
|
#include "../vmisc/typedef.h"
|
2019-09-10 15:57:31 +02:00
|
|
|
#include "../vpatterndb/floatItemData/floatitemdef.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
|
2017-01-22 10:02:02 +01:00
|
|
|
class VLayoutPieceData;
|
2017-02-08 12:48:05 +01:00
|
|
|
class VLayoutPiecePath;
|
2017-02-18 10:22:59 +01:00
|
|
|
class QGraphicsItem;
|
2017-03-02 08:12:48 +01:00
|
|
|
class QGraphicsPathItem;
|
|
|
|
class VTextManager;
|
2019-07-22 16:06:30 +02:00
|
|
|
class VPiece;
|
|
|
|
class VPieceLabelData;
|
|
|
|
class VAbstractPattern;
|
|
|
|
class VPatternLabelData;
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2017-01-22 10:02:02 +01:00
|
|
|
class VLayoutPiece :public VAbstractPiece
|
2015-01-02 15:14:28 +01:00
|
|
|
{
|
2017-03-02 08:12:48 +01:00
|
|
|
Q_DECLARE_TR_FUNCTIONS(VLayoutPiece)
|
2015-01-02 15:14:28 +01:00
|
|
|
public:
|
2017-01-22 10:02:02 +01:00
|
|
|
VLayoutPiece();
|
|
|
|
VLayoutPiece(const VLayoutPiece &detail);
|
2017-04-19 12:27:17 +02:00
|
|
|
|
2018-06-26 14:53:48 +02:00
|
|
|
virtual ~VLayoutPiece() override;
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2017-04-19 12:27:17 +02:00
|
|
|
VLayoutPiece &operator=(const VLayoutPiece &detail);
|
|
|
|
#ifdef Q_COMPILER_RVALUE_REFS
|
2019-12-30 16:13:18 +01:00
|
|
|
VLayoutPiece(const VLayoutPiece &&detail) Q_DECL_NOTHROW;
|
2019-12-30 12:00:57 +01:00
|
|
|
VLayoutPiece &operator=(VLayoutPiece &&detail) Q_DECL_NOTHROW;
|
2017-04-19 12:27:17 +02:00
|
|
|
#endif
|
|
|
|
|
2019-07-19 09:45:57 +02:00
|
|
|
static VLayoutPiece Create(const VPiece &piece, vidtype id, const VContainer *pattern);
|
2017-01-22 09:32:01 +01:00
|
|
|
|
2019-05-27 16:04:26 +02:00
|
|
|
QVector<QPointF> GetMappedContourPoints() const;
|
2015-01-11 14:11:56 +01:00
|
|
|
QVector<QPointF> GetContourPoints() const;
|
2017-05-16 14:16:50 +02:00
|
|
|
void SetCountourPoints(const QVector<QPointF> &points, bool hideMainPath = false);
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2019-05-27 16:04:26 +02:00
|
|
|
QVector<QPointF> GetMappedSeamAllowancePoints() const;
|
2017-01-25 12:29:03 +01:00
|
|
|
QVector<QPointF> GetSeamAllowancePoints() const;
|
2017-04-05 12:22:33 +02:00
|
|
|
void SetSeamAllowancePoints(const QVector<QPointF> &points, bool seamAllowance = true,
|
|
|
|
bool seamAllowanceBuiltIn = false);
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2017-01-25 12:29:03 +01:00
|
|
|
QVector<QPointF> GetLayoutAllowancePoints() const;
|
|
|
|
void SetLayoutAllowancePoints();
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2019-05-27 13:57:36 +02:00
|
|
|
QVector<VLayoutPassmark> GetPassmarks() const;
|
|
|
|
void SetPassmarks(const QVector<VLayoutPassmark> &passmarks);
|
2017-03-30 12:27:57 +02:00
|
|
|
|
2017-10-15 11:25:20 +02:00
|
|
|
QVector<VLayoutPlaceLabel> GetPlaceLabels() const;
|
|
|
|
void SetPlaceLabels(const QVector<VLayoutPlaceLabel> &labels);
|
|
|
|
|
2017-07-16 20:10:48 +02:00
|
|
|
QVector<QVector<QPointF>> InternalPathsForCut(bool cut) const;
|
2017-02-08 12:48:05 +01:00
|
|
|
QVector<VLayoutPiecePath> GetInternalPaths() const;
|
|
|
|
void SetInternalPaths(const QVector<VLayoutPiecePath> &internalPaths);
|
2017-01-22 13:32:25 +01:00
|
|
|
|
2017-07-16 20:10:48 +02:00
|
|
|
QPointF GetPieceTextPosition() const;
|
|
|
|
QStringList GetPieceText() const;
|
|
|
|
void SetPieceText(const QString &qsName, const VPieceLabelData& data, const QFont& font, const VContainer *pattern);
|
2016-07-17 22:52:53 +02:00
|
|
|
|
2017-07-16 20:10:48 +02:00
|
|
|
QPointF GetPatternTextPosition() const;
|
|
|
|
QStringList GetPatternText() const;
|
2017-08-19 18:52:33 +02:00
|
|
|
void SetPatternInfo(VAbstractPattern *pDoc, const VPatternLabelData& geom, const QFont& font,
|
2017-08-15 14:22:33 +02:00
|
|
|
const VContainer *pattern);
|
2016-07-17 22:52:53 +02:00
|
|
|
|
2017-03-01 10:13:36 +01:00
|
|
|
void SetGrainline(const VGrainlineData& geom, const VContainer *pattern);
|
2017-07-16 20:10:48 +02:00
|
|
|
QVector<QPointF> GetGrainline() const;
|
2018-12-27 14:54:29 +01:00
|
|
|
bool IsGrainlineEnabled() const;
|
|
|
|
qreal GrainlineAngle() const;
|
2020-01-07 12:54:23 +01:00
|
|
|
GrainlineArrowDirection GrainlineArrowType() const;
|
2016-10-16 11:38:08 +02:00
|
|
|
|
2015-01-18 19:56:01 +01:00
|
|
|
QTransform GetMatrix() const;
|
|
|
|
void SetMatrix(const QTransform &matrix);
|
2015-01-07 17:54:43 +01:00
|
|
|
|
|
|
|
qreal GetLayoutWidth() const;
|
2018-10-22 13:42:13 +02:00
|
|
|
void SetLayoutWidth(qreal value);
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2019-07-04 13:33:45 +02:00
|
|
|
quint16 GetQuantity() const;
|
|
|
|
void SetQuantity(quint16 value);
|
|
|
|
|
2019-07-19 09:45:57 +02:00
|
|
|
vidtype GetId() const;
|
|
|
|
void SetId(vidtype id);
|
|
|
|
|
2015-01-18 19:56:01 +01:00
|
|
|
bool IsMirror() const;
|
|
|
|
void SetMirror(bool value);
|
|
|
|
|
2015-01-10 14:47:46 +01:00
|
|
|
void Translate(qreal dx, qreal dy);
|
2020-03-21 17:15:29 +01:00
|
|
|
void Scale(qreal sx, qreal sy);
|
2015-01-10 14:47:46 +01:00
|
|
|
void Rotate(const QPointF &originPoint, qreal degrees);
|
|
|
|
void Mirror(const QLineF &edge);
|
2018-02-03 14:29:23 +01:00
|
|
|
void Mirror();
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2016-12-10 17:38:34 +01:00
|
|
|
int DetailEdgesCount() const;
|
|
|
|
int LayoutEdgesCount() const;
|
|
|
|
|
|
|
|
QLineF LayoutEdge(int i) const;
|
|
|
|
int LayoutEdgeByPoint(const QPointF &p1) const;
|
2015-01-10 14:47:46 +01:00
|
|
|
|
2016-06-21 15:04:15 +02:00
|
|
|
QRectF DetailBoundingRect() const;
|
|
|
|
QRectF LayoutBoundingRect() const;
|
2016-02-23 13:13:10 +01:00
|
|
|
qreal Diagonal() const;
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2019-04-10 14:54:18 +02:00
|
|
|
static QRectF BoundingRect(QVector<QPointF> points);
|
|
|
|
|
2015-01-11 14:11:56 +01:00
|
|
|
bool isNull() const;
|
|
|
|
qint64 Square() const;
|
2017-01-22 13:32:25 +01:00
|
|
|
|
2019-04-10 14:54:18 +02:00
|
|
|
QPainterPath ContourPath() const;
|
2017-01-25 12:29:03 +01:00
|
|
|
QPainterPath LayoutAllowancePath() const;
|
2019-04-10 14:54:18 +02:00
|
|
|
|
|
|
|
static QPainterPath PainterPath(const QVector<QPointF> &points);
|
|
|
|
|
2017-07-04 18:53:05 +02:00
|
|
|
Q_REQUIRED_RESULT QGraphicsItem *GetItem(bool textAsPaths) const;
|
2015-01-11 14:11:56 +01:00
|
|
|
|
2017-12-11 16:46:13 +01:00
|
|
|
bool IsLayoutAllowanceValid() const;
|
|
|
|
|
2019-03-29 18:52:37 +01:00
|
|
|
qreal BiggestEdge() const;
|
|
|
|
|
2019-07-01 10:02:09 +02:00
|
|
|
friend QDataStream& operator<< (QDataStream& dataStream, const VLayoutPiece& piece);
|
|
|
|
friend QDataStream& operator>> (QDataStream& dataStream, VLayoutPiece& piece);
|
|
|
|
|
2015-01-07 17:54:43 +01:00
|
|
|
private:
|
2017-03-02 08:12:48 +01:00
|
|
|
QSharedDataPointer<VLayoutPieceData> d;
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2016-12-10 17:38:34 +01:00
|
|
|
QVector<QPointF> DetailPath() const;
|
|
|
|
|
2017-07-01 20:38:26 +02:00
|
|
|
Q_REQUIRED_RESULT QGraphicsPathItem *GetMainItem() const;
|
2017-07-11 12:53:36 +02:00
|
|
|
Q_REQUIRED_RESULT QGraphicsPathItem *GetMainPathItem() const;
|
2017-03-02 08:12:48 +01:00
|
|
|
|
2017-07-01 19:32:54 +02:00
|
|
|
void CreateLabelStrings(QGraphicsItem *parent, const QVector<QPointF> &labelShape, const VTextManager &tm,
|
|
|
|
bool textAsPaths) const;
|
2017-01-22 13:32:25 +01:00
|
|
|
void CreateGrainlineItem(QGraphicsItem *parent) const;
|
|
|
|
|
2017-03-30 12:27:57 +02:00
|
|
|
template <class T>
|
2019-04-02 14:30:31 +02:00
|
|
|
QVector<T> Map(QVector<T> points) const;
|
2016-12-10 17:38:34 +01:00
|
|
|
|
|
|
|
QLineF Edge(const QVector<QPointF> &path, int i) const;
|
|
|
|
int EdgeByPoint(const QVector<QPointF> &path, const QPointF &p1) const;
|
2015-01-02 15:14:28 +01:00
|
|
|
};
|
|
|
|
|
2017-01-22 10:02:02 +01:00
|
|
|
Q_DECLARE_TYPEINFO(VLayoutPiece, Q_MOVABLE_TYPE);
|
2015-11-25 19:56:17 +01:00
|
|
|
|
2015-01-02 15:14:28 +01:00
|
|
|
#endif // VLAYOUTDETAIL_H
|