2014-08-20 18:21:42 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vvariable_p.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 20 8, 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-08-20 18:21:42 +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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#ifndef VVARIABLE_P_H
|
|
|
|
#define VVARIABLE_P_H
|
|
|
|
|
|
|
|
#include <QSharedData>
|
|
|
|
|
2016-08-06 20:42:40 +02:00
|
|
|
#include "../vmisc/diagnostic.h"
|
|
|
|
|
|
|
|
QT_WARNING_PUSH
|
|
|
|
QT_WARNING_DISABLE_GCC("-Weffc++")
|
2014-08-23 08:18:07 +02:00
|
|
|
|
2014-08-20 18:21:42 +02:00
|
|
|
class VVariableData : public QSharedData
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
VVariableData()
|
2015-07-25 07:41:04 +02:00
|
|
|
:base(0), ksize(0), kheight(0), description(QString()), baseSize(0), baseHeight(0)
|
2014-08-20 18:21:42 +02:00
|
|
|
{}
|
|
|
|
|
2015-07-25 07:41:04 +02:00
|
|
|
VVariableData(qreal baseSize, qreal baseHeight, const qreal &base, const qreal &ksize, const qreal &kheight,
|
|
|
|
const QString &description)
|
|
|
|
:base(base), ksize(ksize), kheight(kheight), description(description), baseSize(baseSize),
|
|
|
|
baseHeight(baseHeight)
|
2014-08-20 18:21:42 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
VVariableData(const qreal &base, const QString &description)
|
2015-07-25 07:41:04 +02:00
|
|
|
:base(base), ksize(0), kheight(0), description(description), baseSize(0), baseHeight(0)
|
2014-08-20 18:21:42 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
VVariableData(const VVariableData &var)
|
2015-07-25 07:41:04 +02:00
|
|
|
:QSharedData(var), base(var.base), ksize(var.ksize), kheight(var.kheight), description(var.description),
|
|
|
|
baseSize(var.baseSize), baseHeight(var.baseHeight)
|
2014-08-20 18:21:42 +02:00
|
|
|
{}
|
|
|
|
|
2014-09-11 18:52:02 +02:00
|
|
|
virtual ~VVariableData();
|
2014-08-20 18:21:42 +02:00
|
|
|
|
|
|
|
/** @brief base value in base size and height */
|
|
|
|
qreal base;
|
|
|
|
|
|
|
|
/** @brief ksize increment in sizes */
|
|
|
|
qreal ksize;
|
|
|
|
|
|
|
|
/** @brief kgrowth increment in heights */
|
|
|
|
qreal kheight;
|
|
|
|
|
|
|
|
/** @brief description description of increment */
|
|
|
|
QString description;
|
2015-07-25 07:41:04 +02:00
|
|
|
|
|
|
|
qreal baseSize;
|
|
|
|
qreal baseHeight;
|
2015-10-31 13:56:28 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
VVariableData &operator=(const VVariableData &) Q_DECL_EQ_DELETE;
|
2014-08-20 18:21:42 +02:00
|
|
|
};
|
|
|
|
|
2014-09-11 18:52:02 +02:00
|
|
|
VVariableData::~VVariableData()
|
|
|
|
{}
|
|
|
|
|
2016-08-06 20:42:40 +02:00
|
|
|
QT_WARNING_POP
|
2014-08-23 08:18:07 +02:00
|
|
|
|
2014-08-20 18:21:42 +02:00
|
|
|
#endif // VVARIABLE_P_H
|