valentina/src/libs/vlayout/vcontour.h

105 lines
3 KiB
C
Raw Normal View History

/************************************************************************
**
** @file vcontour.h
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 21 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 VCONTOUR_H
#define VCONTOUR_H
#include <QSharedDataPointer>
#include <QSizeF>
#include <QTypeInfo>
#include <QVector>
#include <QtGlobal>
#include "../vmisc/defglobal.h"
2023-07-15 09:58:28 +02:00
#include "vlayoutdef.h"
class VContourData;
class QPointF;
class QLineF;
class QRectF;
class QPainterPath;
class VLayoutPiece;
class VContour
{
public:
VContour();
VContour(int height, int width, qreal layoutWidth);
VContour(const VContour &contour);
~VContour();
2023-05-03 13:07:02 +02:00
auto operator=(const VContour &contour) -> VContour &;
#ifdef Q_COMPILER_RVALUE_REFS
2023-07-13 16:49:20 +02:00
VContour(VContour &&contour) noexcept;
2023-07-15 09:58:28 +02:00
auto operator=(VContour &&contour) noexcept -> VContour &;
#endif
void CeateEmptySheetContour();
2023-07-15 09:58:28 +02:00
void SetContour(const QVector<QPointF> &contour);
2023-05-03 13:07:02 +02:00
auto GetContour() const -> QVector<QPointF>;
2023-05-03 13:07:02 +02:00
auto GetShift() const -> qreal;
2023-07-15 09:58:28 +02:00
void SetShift(qreal shift);
2023-05-03 13:07:02 +02:00
auto GetHeight() const -> int;
void SetHeight(int height);
2023-05-03 13:07:02 +02:00
auto GetWidth() const -> int;
void SetWidth(int width);
2023-05-03 13:07:02 +02:00
auto IsPortrait() const -> bool;
2023-05-03 13:07:02 +02:00
auto GetSize() const -> QSizeF;
2023-05-03 13:07:02 +02:00
auto UniteWithContour(const VLayoutPiece &detail, int globalI, int detJ, BestFrom type) const -> QVector<QPointF>;
2023-05-03 13:07:02 +02:00
auto EmptySheetEdge() const -> QLineF;
auto GlobalEdgesCount() const -> vsizetype;
auto GlobalEdge(int i) const -> QLineF;
auto CutEdge(const QLineF &edge) const -> QVector<QPointF>;
auto CutEmptySheetEdge() const -> QVector<QPointF>;
2023-05-03 13:07:02 +02:00
auto at(int i) const -> const QPointF &;
private:
QSharedDataPointer<VContourData> d;
void AppendWhole(QVector<QPointF> &contour, const VLayoutPiece &detail, int detJ) const;
void InsertDetail(QVector<QPointF> &contour, const VLayoutPiece &detail, int detJ) const;
void ResetAttributes();
2023-05-03 13:07:02 +02:00
auto EmptySheetEdgesCount() const -> int;
};
2022-08-12 17:50:13 +02:00
Q_DECLARE_TYPEINFO(VContour, Q_MOVABLE_TYPE); // NOLINT
#endif // VCONTOUR_H