valentina/src/libs/vlayout/vlayoutdetail.h

86 lines
2.6 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 Valentine project, a pattern making
** program, whose allow create and modeling patterns of clothing.
** Copyright (C) 2015 Valentina project
** <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
2015-01-07 17:54:43 +01:00
#include "vabstractdetail.h"
#include <QMatrix>
#include <QPointF>
class VLayoutDetailData;
class QGraphicsItem;
2015-01-07 17:54:43 +01:00
class VLayoutDetail :public VAbstractDetail
{
public:
VLayoutDetail();
2015-01-07 17:54:43 +01:00
VLayoutDetail(const VLayoutDetail &detail);
VLayoutDetail &operator=(const VLayoutDetail &detail);
virtual ~VLayoutDetail();
QVector<QPointF> GetContourPoints() const;
void SetCountourPoints(const QVector<QPointF> &points);
2015-01-07 17:54:43 +01:00
QVector<QPointF> GetSeamAllowencePoints() const;
void SetSeamAllowencePoints(const QVector<QPointF> &points);
QVector<QPointF> GetLayoutAllowencePoints() const;
void SetLayoutAllowencePoints();
2015-01-07 17:54:43 +01:00
QMatrix GetMatrix() const;
void SetMatrix(const QMatrix &matrix);
qreal GetLayoutWidth() const;
void SetLayoutWidth(const qreal &value);
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;
int EdgeByPoint(const QPointF &p1) const;
QRectF BoundingRect() const;
2015-01-07 17:54:43 +01:00
bool isNull() const;
qint64 Square() const;
QPainterPath ContourPath() const;
QGraphicsItem *GetItem() const;
2015-01-07 17:54:43 +01:00
private:
QSharedDataPointer<VLayoutDetailData> d;
QVector<QPointF> Map(const QVector<QPointF> &points) const;
QVector<QPointF> RoundPoints(const QVector<QPointF> &points) const;
};
#endif // VLAYOUTDETAIL_H