2015-01-02 15:14:28 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vlayoutdetail.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @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.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2015-01-02 15:14:28 +01:00
|
|
|
** <https://bitbucket.org/dismine/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
|
|
|
|
|
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>
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../ifc/xml/vabstractpattern.h"
|
|
|
|
#include "../vpatterndb/vpatterninfogeometry.h"
|
|
|
|
#include "../vpatterndb/vpatternpiecedata.h"
|
|
|
|
#include "vabstractdetail.h"
|
|
|
|
|
|
|
|
class QFont;
|
2015-01-13 11:38:51 +01:00
|
|
|
class QGraphicsItem;
|
2016-08-08 13:44:49 +02:00
|
|
|
class QLineF;
|
|
|
|
class QPainterPath;
|
|
|
|
class QPointF;
|
|
|
|
class QRectF;
|
|
|
|
class QTransform;
|
|
|
|
class VAbstractPattern;
|
|
|
|
class VLayoutDetailData;
|
|
|
|
class VPatternInfoGeometry;
|
|
|
|
class VPatternPieceData;
|
2015-01-07 17:54:43 +01:00
|
|
|
|
|
|
|
class VLayoutDetail :public VAbstractDetail
|
2015-01-02 15:14:28 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
VLayoutDetail();
|
2015-01-07 17:54:43 +01:00
|
|
|
VLayoutDetail(const VLayoutDetail &detail);
|
|
|
|
VLayoutDetail &operator=(const VLayoutDetail &detail);
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual ~VLayoutDetail() Q_DECL_OVERRIDE;
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2015-01-11 14:11:56 +01:00
|
|
|
QVector<QPointF> GetContourPoints() const;
|
|
|
|
void SetCountourPoints(const QVector<QPointF> &points);
|
2015-01-07 17:54:43 +01:00
|
|
|
|
|
|
|
QVector<QPointF> GetSeamAllowencePoints() const;
|
2015-11-15 18:06:25 +01:00
|
|
|
void SetSeamAllowencePoints(const QVector<QPointF> &points, bool seamAllowence = true, bool closed = true);
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2015-01-11 14:11:56 +01:00
|
|
|
QVector<QPointF> GetLayoutAllowencePoints() const;
|
|
|
|
void SetLayoutAllowencePoints();
|
2015-01-07 17:54:43 +01:00
|
|
|
|
2016-07-19 13:47:21 +02:00
|
|
|
void SetDetail(const QString &qsName, const VPatternPieceData& data, const QFont& font);
|
2016-07-17 22:52:53 +02:00
|
|
|
|
2016-08-15 13:03:59 +02:00
|
|
|
void SetPatternInfo(const VAbstractPattern* pDoc, const VPatternInfoGeometry& geom, const QFont& font,
|
|
|
|
qreal dSize, qreal dHeight);
|
2016-07-17 22:52:53 +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;
|
|
|
|
void SetLayoutWidth(const qreal &value);
|
|
|
|
|
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);
|
|
|
|
void Rotate(const QPointF &originPoint, qreal degrees);
|
|
|
|
void Mirror(const QLineF &edge);
|
2015-01-07 17:54:43 +01:00
|
|
|
|
|
|
|
int EdgesCount() const;
|
|
|
|
QLineF Edge(int i) const;
|
2015-01-10 14:47:46 +01:00
|
|
|
int EdgeByPoint(const QPointF &p1) const;
|
|
|
|
|
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
|
|
|
|
2015-01-11 14:11:56 +01:00
|
|
|
bool isNull() const;
|
|
|
|
qint64 Square() const;
|
2015-01-12 21:35:32 +01:00
|
|
|
QPainterPath ContourPath() const;
|
2016-07-19 09:06:29 +02:00
|
|
|
void ClearTextItems();
|
|
|
|
void CreateTextItems();
|
2016-07-22 12:40:02 +02:00
|
|
|
int GetTextItemsCount() const Q_REQUIRED_RESULT;
|
|
|
|
QGraphicsItem* GetTextItem(int i) const Q_REQUIRED_RESULT;
|
2016-03-28 10:53:02 +02:00
|
|
|
QPainterPath LayoutAllowencePath() const;
|
2016-03-23 16:27:17 +01:00
|
|
|
QGraphicsItem *GetItem() const Q_REQUIRED_RESULT;
|
2015-01-11 14:11:56 +01:00
|
|
|
|
2015-01-07 17:54:43 +01:00
|
|
|
private:
|
2016-07-19 02:26:50 +02:00
|
|
|
QSharedDataPointer<VLayoutDetailData> d;
|
2015-01-07 17:54:43 +01:00
|
|
|
|
|
|
|
QVector<QPointF> Map(const QVector<QPointF> &points) const;
|
2015-03-02 18:54:33 +01:00
|
|
|
static QVector<QPointF> RoundPoints(const QVector<QPointF> &points);
|
2016-07-17 22:52:53 +02:00
|
|
|
|
2016-08-02 14:12:13 +02:00
|
|
|
static QPointF RotatePoint(const QPointF& ptCenter, const QPointF& pt, qreal dAng);
|
2016-07-19 02:26:50 +02:00
|
|
|
QVector<QPointF> Mirror(const QVector<QPointF>& points) const;
|
2016-08-02 14:12:13 +02:00
|
|
|
static qreal GetDistance(const QPointF& pt1, const QPointF& pt2);
|
2015-01-02 15:14:28 +01:00
|
|
|
};
|
|
|
|
|
2015-11-25 19:56:17 +01:00
|
|
|
Q_DECLARE_TYPEINFO(VLayoutDetail, Q_MOVABLE_TYPE);
|
|
|
|
|
2015-01-02 15:14:28 +01:00
|
|
|
#endif // VLAYOUTDETAIL_H
|