valentina/src/libs/vlayout/vlayoutdetail.h

75 lines
2.3 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 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> GetContour() const;
void SetCountour(const QVector<QPointF> &points);
QVector<QPointF> GetSeamAllowencePoints() const;
void SetSeamAllowencePoints(const QVector<QPointF> &points);
QVector<QPointF> GetLayoutAllowence() const;
void SetLayoutAllowence();
QMatrix GetMatrix() const;
void SetMatrix(const QMatrix &matrix);
qreal GetLayoutWidth() const;
void SetLayoutWidth(const qreal &value);
void translate(qreal dx, qreal dy);
void rotate(qreal degrees);
int EdgesCount() const;
QLineF Edge(int i) const;
private:
QSharedDataPointer<VLayoutDetailData> d;
QVector<QPointF> Map(const QVector<QPointF> &points) const;
};
#endif // VLAYOUTDETAIL_H