cf1e383d7b
QDataStream doesn't support serialization for this type. --HG-- branch : develop
115 lines
3.3 KiB
C++
115 lines
3.3 KiB
C++
/************************************************************************
|
|
**
|
|
** @file vgeometrydef.h
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date 7 5, 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) 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 VGEOMETRYDEF_H
|
|
#define VGEOMETRYDEF_H
|
|
|
|
#include <QVector>
|
|
#include <QPolygonF>
|
|
#include <QTransform>
|
|
|
|
#include "../ifc/ifcdef.h"
|
|
|
|
enum class GOType : qint8
|
|
{
|
|
Point,
|
|
Arc,
|
|
EllipticalArc,
|
|
Spline,
|
|
SplinePath,
|
|
CubicBezier,
|
|
CubicBezierPath,
|
|
PlaceLabel,
|
|
Unknown
|
|
};
|
|
enum class SplinePointPosition : qint8 { FirstPoint, LastPoint };
|
|
|
|
// Keep synchronized with XSD schema
|
|
enum class PlaceLabelType : quint8
|
|
{
|
|
Segment= 0,
|
|
Rectangle = 1,
|
|
Cross = 2,
|
|
Tshaped = 3,
|
|
Doubletree = 4,
|
|
Corner = 5,
|
|
Triangle = 6,
|
|
Hshaped = 7,
|
|
Button = 8,
|
|
Circle = 9
|
|
};
|
|
|
|
typedef QVector<QPolygonF> PlaceLabelImg;
|
|
|
|
struct VLayoutPlaceLabel
|
|
{
|
|
QPointF center{};
|
|
PlaceLabelType type{PlaceLabelType::Button};
|
|
PlaceLabelImg shape{};
|
|
QTransform rotationMatrix{};
|
|
QRectF box{};
|
|
|
|
friend QDataStream& operator<<(QDataStream& dataStream, const VLayoutPlaceLabel& data);
|
|
friend QDataStream& operator>>(QDataStream& dataStream, VLayoutPlaceLabel& data);
|
|
private:
|
|
static const quint32 streamHeader;
|
|
static const quint16 classVersion;
|
|
};
|
|
Q_DECLARE_METATYPE(VLayoutPlaceLabel)
|
|
|
|
struct VLayoutPassmark
|
|
{
|
|
QVector<QLineF> lines{};
|
|
PassmarkLineType type{PassmarkLineType::OneLine};
|
|
QLineF baseLine{};
|
|
bool isBuiltIn{false};
|
|
|
|
friend QDataStream& operator<<(QDataStream& dataStream, const VLayoutPassmark& data);
|
|
friend QDataStream& operator>>(QDataStream& dataStream, VLayoutPassmark& data);
|
|
private:
|
|
static const quint32 streamHeader;
|
|
static const quint16 classVersion;
|
|
};
|
|
Q_DECLARE_METATYPE(VLayoutPassmark)
|
|
|
|
constexpr qreal accuracyPointOnLine = (0.12/*mm*/ / 25.4) * PrintDPI;
|
|
|
|
Q_REQUIRED_RESULT static inline bool VFuzzyComparePoints(const QPointF &p1, const QPointF &p2);
|
|
static inline bool VFuzzyComparePoints(const QPointF &p1, const QPointF &p2)
|
|
{
|
|
return QLineF(p1, p2).length() <= accuracyPointOnLine;
|
|
}
|
|
|
|
Q_REQUIRED_RESULT static inline bool VFuzzyOnAxis(qreal v1, qreal v2);
|
|
static inline bool VFuzzyOnAxis(qreal v1, qreal v2)
|
|
{
|
|
return qAbs(v1 - v2) <= accuracyPointOnLine;
|
|
}
|
|
|
|
#endif // VGEOMETRYDEF_H
|