valentina/src/app/geometry/vnodedetail.h
dismine d6c78ca1a1 All points in detail should go clockwise. This mean in some cases need reverse
curves that go anticlockwise. Old method reversing curves doesn't work
correct in all cases. I don't see now way automatically handle this. That's
why now user can choose himself need reverse points for this curve or not.

Also this mean increment in format version to 0.1.2.

--HG--
branch : feature
2014-12-17 14:56:14 +02:00

129 lines
3.6 KiB
C++

/************************************************************************
**
** @file vnodedetail.h
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date November 15, 2013
**
** @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) 2013 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 VNODEDETAIL_H
#define VNODEDETAIL_H
#include "../options.h"
#include <QMetaType>
#include <QSharedDataPointer>
class VNodeDetailData;
/**
* @brief The VNodeDetail class keep information about detail node.
*/
class VNodeDetail
{
public:
/**
* @brief VNodeDetail default constructor.
*/
VNodeDetail();
/**
* @brief VNodeDetail constructor.
* @param id object id
* @param typeTool type tool
* @param typeNode type node
* @param mx object bias x axis
* @param my object bias y axis
*/
VNodeDetail(quint32 id, Tool typeTool, NodeDetail typeNode, qreal mx = 0, qreal my = 0, bool reverse = false);
/**
* @brief VNodeDetail copy constructor
* @param node node
*/
VNodeDetail(const VNodeDetail &node);
/**
* @brief operator = assignment operator
* @param node node
* @return node
*/
VNodeDetail &operator=(const VNodeDetail &node);
~VNodeDetail();
/**
* @brief getId return object id.
* @return id.
*/
quint32 getId() const;
/**
* @brief setId set object id.
* @param value object id.
*/
void setId(const quint32 &value);
/**
* @brief getTypeTool return tool type.
* @return tool type.
*/
Tool getTypeTool() const;
/**
* @brief setTypeTool set tool type.
* @param value tool type.
*/
void setTypeTool(const Tool &value);
/**
* @brief getTypeNode return node type.
* @return node type.
*/
NodeDetail getTypeNode() const;
/**
* @brief setTypeNode set node type.
* @param value node type.
*/
void setTypeNode(const NodeDetail &value);
/**
* @brief getMx return object bias x axis.
* @return bias x axis.
*/
qreal getMx() const;
/**
* @brief setMx set object bias x axis.
* @param value bias x axis.
*/
void setMx(const qreal &value);
/**
* @brief getMy return object bias y axis.
* @return bias y axis.
*/
qreal getMy() const;
/**
* @brief setMy set object bias y axis.
* @param value bias y axis.
*/
void setMy(const qreal &value);
bool getReverse() const;
void setReverse(bool reverse);
private:
QSharedDataPointer<VNodeDetailData> d;
};
Q_DECLARE_METATYPE(VNodeDetail)
#endif // VNODEDETAIL_H