2016-11-03 16:59:53 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 3 11, 2016
|
|
|
|
**
|
|
|
|
** @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) 2016 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 VPIECENODE_P_H
|
|
|
|
#define VPIECENODE_P_H
|
|
|
|
|
|
|
|
#include <QSharedData>
|
2017-04-04 07:20:49 +02:00
|
|
|
#include <QDataStream>
|
2016-11-03 16:59:53 +01:00
|
|
|
#include "../ifc/ifcdef.h"
|
|
|
|
#include "../vmisc/diagnostic.h"
|
|
|
|
|
|
|
|
QT_WARNING_PUSH
|
|
|
|
QT_WARNING_DISABLE_GCC("-Weffc++")
|
2017-05-30 17:44:16 +02:00
|
|
|
QT_WARNING_DISABLE_GCC("-Wnon-virtual-dtor")
|
2016-11-03 16:59:53 +01:00
|
|
|
|
|
|
|
class VPieceNodeData : public QSharedData
|
|
|
|
{
|
|
|
|
public:
|
2016-11-12 11:41:04 +01:00
|
|
|
VPieceNodeData()
|
|
|
|
: m_id(NULL_ID),
|
|
|
|
m_typeTool(Tool::NodePoint),
|
|
|
|
m_reverse(false),
|
2017-03-21 16:18:48 +01:00
|
|
|
m_excluded(false),
|
2017-03-24 12:08:16 +01:00
|
|
|
m_isPassmark(false),
|
2017-04-05 12:22:33 +02:00
|
|
|
m_isMainPathNode(true),
|
2017-01-25 10:40:10 +01:00
|
|
|
m_formulaWidthBefore(currentSeamAllowance),
|
|
|
|
m_formulaWidthAfter(currentSeamAllowance),
|
2017-03-24 12:08:16 +01:00
|
|
|
m_angleType(PieceNodeAngle::ByLength),
|
|
|
|
m_passmarkLineType(PassmarkLineType::OneLine),
|
2017-04-26 10:22:42 +02:00
|
|
|
m_passmarkAngleType(PassmarkAngleType::Straightforward),
|
|
|
|
m_isShowSecondPassmark(true)
|
2016-11-12 11:41:04 +01:00
|
|
|
{}
|
|
|
|
|
|
|
|
VPieceNodeData(quint32 id, Tool typeTool, bool reverse)
|
|
|
|
: m_id(id),
|
|
|
|
m_typeTool(typeTool),
|
|
|
|
m_reverse(reverse),
|
2017-03-21 16:18:48 +01:00
|
|
|
m_excluded(false),
|
2017-03-24 12:08:16 +01:00
|
|
|
m_isPassmark(false),
|
2017-04-05 12:22:33 +02:00
|
|
|
m_isMainPathNode(true),
|
2017-01-25 10:40:10 +01:00
|
|
|
m_formulaWidthBefore(currentSeamAllowance),
|
|
|
|
m_formulaWidthAfter(currentSeamAllowance),
|
2017-03-24 12:08:16 +01:00
|
|
|
m_angleType(PieceNodeAngle::ByLength),
|
|
|
|
m_passmarkLineType(PassmarkLineType::OneLine),
|
2017-04-26 10:22:42 +02:00
|
|
|
m_passmarkAngleType(PassmarkAngleType::Straightforward),
|
|
|
|
m_isShowSecondPassmark(true)
|
2016-11-12 11:41:04 +01:00
|
|
|
{
|
|
|
|
if (m_typeTool == Tool::NodePoint)
|
|
|
|
{
|
|
|
|
m_reverse = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
VPieceNodeData (const VPieceNodeData& node)
|
|
|
|
: QSharedData(node),
|
|
|
|
m_id(node.m_id),
|
|
|
|
m_typeTool(node.m_typeTool),
|
|
|
|
m_reverse(node.m_reverse),
|
2017-03-21 16:18:48 +01:00
|
|
|
m_excluded(node.m_excluded),
|
2017-03-24 12:08:16 +01:00
|
|
|
m_isPassmark(node.m_isPassmark),
|
2017-04-05 12:22:33 +02:00
|
|
|
m_isMainPathNode(node.m_isMainPathNode),
|
2017-01-21 14:24:40 +01:00
|
|
|
m_formulaWidthBefore(node.m_formulaWidthBefore),
|
|
|
|
m_formulaWidthAfter(node.m_formulaWidthAfter),
|
2017-03-24 12:08:16 +01:00
|
|
|
m_angleType(node.m_angleType),
|
|
|
|
m_passmarkLineType(node.m_passmarkLineType),
|
2017-04-26 10:22:42 +02:00
|
|
|
m_passmarkAngleType(node.m_passmarkAngleType),
|
|
|
|
m_isShowSecondPassmark(node.m_isShowSecondPassmark)
|
2016-11-12 11:41:04 +01:00
|
|
|
{}
|
|
|
|
|
2017-04-26 10:22:42 +02:00
|
|
|
~VPieceNodeData() Q_DECL_EQ_DEFAULT;
|
2016-11-12 11:41:04 +01:00
|
|
|
|
2017-03-28 11:08:33 +02:00
|
|
|
friend QDataStream& operator<<(QDataStream& out, const VPieceNodeData& p);
|
|
|
|
friend QDataStream& operator>>(QDataStream& in, VPieceNodeData& p);
|
|
|
|
|
2016-11-12 11:41:04 +01:00
|
|
|
/** @brief id object id. */
|
|
|
|
quint32 m_id;
|
|
|
|
|
|
|
|
/** @brief typeTool type of tool */
|
|
|
|
Tool m_typeTool;
|
|
|
|
|
|
|
|
/** @brief reverse true if need reverse points list for node. */
|
|
|
|
bool m_reverse;
|
|
|
|
|
2017-03-21 16:18:48 +01:00
|
|
|
/** @brief m_excluded true if item excluded from main path. Excluded item is not visible and also will not has
|
|
|
|
* affect on main path. Also include to exist path items automatically setted excluded. */
|
|
|
|
bool m_excluded;
|
|
|
|
|
2017-03-24 12:08:16 +01:00
|
|
|
/** @brief m_isPassmark has sense only for points. If true to seam allowance should be added a passmark. */
|
|
|
|
bool m_isPassmark;
|
|
|
|
|
2017-04-05 12:22:33 +02:00
|
|
|
/** @brief m_isMainPathNode need fin know if allowed for this passmakr to be double. */
|
|
|
|
bool m_isMainPathNode;
|
|
|
|
|
2017-01-21 14:24:40 +01:00
|
|
|
QString m_formulaWidthBefore;
|
|
|
|
QString m_formulaWidthAfter;
|
|
|
|
|
2016-11-19 12:44:12 +01:00
|
|
|
PieceNodeAngle m_angleType;
|
|
|
|
|
2017-03-28 11:08:33 +02:00
|
|
|
PassmarkLineType m_passmarkLineType;
|
2017-03-24 12:08:16 +01:00
|
|
|
PassmarkAngleType m_passmarkAngleType;
|
|
|
|
|
2017-04-26 10:22:42 +02:00
|
|
|
bool m_isShowSecondPassmark;
|
|
|
|
|
2016-11-03 16:59:53 +01:00
|
|
|
private:
|
|
|
|
VPieceNodeData &operator=(const VPieceNodeData &) Q_DECL_EQ_DELETE;
|
|
|
|
};
|
|
|
|
|
2017-03-28 11:08:33 +02:00
|
|
|
// Friend functions
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QDataStream &operator<<(QDataStream &out, const VPieceNodeData &p)
|
|
|
|
{
|
|
|
|
out << p.m_id
|
|
|
|
<< static_cast<int>(p.m_typeTool)
|
|
|
|
<< p.m_reverse
|
|
|
|
<< p.m_excluded
|
|
|
|
<< p.m_isPassmark
|
|
|
|
<< p.m_formulaWidthBefore
|
|
|
|
<< p.m_formulaWidthAfter
|
|
|
|
<< static_cast<int>(p.m_angleType)
|
|
|
|
<< static_cast<int>(p.m_passmarkLineType)
|
2017-04-26 10:22:42 +02:00
|
|
|
<< static_cast<int>(p.m_passmarkAngleType)
|
|
|
|
<< p.m_isShowSecondPassmark;
|
2017-03-28 11:08:33 +02:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QDataStream &operator>>(QDataStream &in, VPieceNodeData &p)
|
|
|
|
{
|
|
|
|
int typeTool = 0;
|
|
|
|
int angleType = 0;
|
|
|
|
int passmarkLineType = 0;
|
|
|
|
int passmarkAngleType = 0;
|
|
|
|
|
|
|
|
in >> p.m_id
|
|
|
|
>> typeTool
|
|
|
|
>> p.m_reverse
|
|
|
|
>> p.m_excluded
|
|
|
|
>> p.m_isPassmark
|
|
|
|
>> p.m_formulaWidthBefore
|
|
|
|
>> p.m_formulaWidthAfter
|
|
|
|
>> angleType
|
|
|
|
>> passmarkLineType
|
2017-04-26 10:22:42 +02:00
|
|
|
>> passmarkAngleType
|
|
|
|
>> p.m_isShowSecondPassmark;
|
2017-03-28 11:08:33 +02:00
|
|
|
|
|
|
|
p.m_typeTool = static_cast<Tool>(typeTool);
|
|
|
|
p.m_angleType = static_cast<PieceNodeAngle>(angleType);
|
|
|
|
p.m_passmarkLineType = static_cast<PassmarkLineType>(passmarkLineType);
|
|
|
|
p.m_passmarkAngleType = static_cast<PassmarkAngleType>(passmarkAngleType);
|
|
|
|
|
|
|
|
return in;
|
|
|
|
}
|
|
|
|
|
2016-11-03 16:59:53 +01:00
|
|
|
QT_WARNING_POP
|
|
|
|
|
|
|
|
#endif // VPIECENODE_P_H
|
|
|
|
|