2014-07-29 13:28:18 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
2014-08-15 19:27:30 +02:00
|
|
|
** @file vlinelength.h
|
2014-07-29 13:28:18 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 28 7, 2014
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2014-07-29 13:28:18 +02:00
|
|
|
** <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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
2014-08-15 19:27:30 +02:00
|
|
|
#ifndef VLINELENGTH_H
|
|
|
|
#define VLINELENGTH_H
|
2014-07-29 13:28:18 +02:00
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <qcompilerdetection.h>
|
|
|
|
#include <QSharedDataPointer>
|
|
|
|
#include <QTypeInfo>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../vmisc/def.h"
|
2015-06-12 10:55:44 +02:00
|
|
|
#include "../ifc/ifcdef.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "vinternalvariable.h"
|
2014-07-29 13:28:18 +02:00
|
|
|
|
2014-08-20 19:33:13 +02:00
|
|
|
class VLengthLineData;
|
2016-08-08 13:44:49 +02:00
|
|
|
class VPointF;
|
2014-07-29 13:28:18 +02:00
|
|
|
|
|
|
|
class VLengthLine :public VInternalVariable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VLengthLine();
|
2015-06-12 10:55:44 +02:00
|
|
|
VLengthLine(const VPointF *p1, const quint32 &p1Id, const VPointF *p2, const quint32 &p2Id, Unit patternUnit);
|
2014-07-29 13:28:18 +02:00
|
|
|
VLengthLine(const VLengthLine &var);
|
2017-04-19 12:27:17 +02:00
|
|
|
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual ~VLengthLine() Q_DECL_OVERRIDE;
|
2014-07-29 13:28:18 +02:00
|
|
|
|
2017-04-19 12:27:17 +02:00
|
|
|
VLengthLine &operator=(const VLengthLine &var);
|
|
|
|
#ifdef Q_COMPILER_RVALUE_REFS
|
|
|
|
VLengthLine &operator=(VLengthLine &&var) Q_DECL_NOTHROW { Swap(var); return *this; }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void Swap(VLengthLine &var) Q_DECL_NOTHROW
|
|
|
|
{ std::swap(d, var.d); }
|
|
|
|
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual bool Filter(quint32 id) Q_DECL_OVERRIDE;
|
2014-07-29 13:28:18 +02:00
|
|
|
void SetValue(const VPointF *p1, const VPointF *p2);
|
|
|
|
quint32 GetP1Id() const;
|
|
|
|
quint32 GetP2Id() const;
|
|
|
|
private:
|
2014-08-20 19:33:13 +02:00
|
|
|
QSharedDataPointer<VLengthLineData> d;
|
2014-07-29 13:28:18 +02:00
|
|
|
};
|
|
|
|
|
2015-11-25 19:56:17 +01:00
|
|
|
Q_DECLARE_TYPEINFO(VLengthLine, Q_MOVABLE_TYPE);
|
|
|
|
|
2014-08-15 19:27:30 +02:00
|
|
|
#endif // VLINELENGTH_H
|