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
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2014-07-29 13:28:18 +02:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2020-01-31 07:00:05 +01:00
|
|
|
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
|
2014-07-29 13:28:18 +02:00
|
|
|
**
|
|
|
|
** 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 <QSharedDataPointer>
|
|
|
|
#include <QTypeInfo>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../vmisc/def.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
|
|
|
|
2023-07-13 16:49:20 +02:00
|
|
|
class VLengthLine final : public VInternalVariable
|
2014-07-29 13:28:18 +02:00
|
|
|
{
|
|
|
|
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);
|
2023-07-13 16:49:20 +02:00
|
|
|
~VLengthLine() override;
|
2014-07-29 13:28:18 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto operator=(const VLengthLine &var) -> VLengthLine &;
|
2017-04-19 12:27:17 +02:00
|
|
|
#ifdef Q_COMPILER_RVALUE_REFS
|
2023-07-13 16:49:20 +02:00
|
|
|
VLengthLine(VLengthLine &&var) noexcept;
|
|
|
|
auto operator=(VLengthLine &&var) noexcept -> VLengthLine &;
|
2017-04-19 12:27:17 +02:00
|
|
|
#endif
|
|
|
|
|
2023-07-15 09:58:28 +02:00
|
|
|
auto Filter(quint32 id) -> bool override;
|
2023-07-13 16:49:20 +02:00
|
|
|
|
|
|
|
void SetValue(const VPointF *p1, const VPointF *p2);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetP1Id() const -> quint32;
|
|
|
|
auto GetP2Id() const -> quint32;
|
|
|
|
|
2014-07-29 13:28:18 +02:00
|
|
|
private:
|
2014-08-20 19:33:13 +02:00
|
|
|
QSharedDataPointer<VLengthLineData> d;
|
2014-07-29 13:28:18 +02:00
|
|
|
};
|
|
|
|
|
2022-08-12 17:50:13 +02:00
|
|
|
Q_DECLARE_TYPEINFO(VLengthLine, Q_MOVABLE_TYPE); // NOLINT
|
2015-11-25 19:56:17 +01:00
|
|
|
|
2014-08-15 19:27:30 +02:00
|
|
|
#endif // VLINELENGTH_H
|