2014-08-20 18:31:15 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vincrement_p.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 20 8, 2014
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2014-08-20 18:31:15 +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
|
2014-08-20 18:31:15 +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 VINCREMENT_P_H
|
|
|
|
#define VINCREMENT_P_H
|
|
|
|
|
|
|
|
#include <QSharedData>
|
|
|
|
|
2015-06-12 10:55:44 +02:00
|
|
|
#include "../ifc/ifcdef.h"
|
2016-08-05 12:48:23 +02:00
|
|
|
#include "../vcontainer.h"
|
2016-08-06 20:42:40 +02:00
|
|
|
#include "../vmisc/diagnostic.h"
|
2015-06-12 10:55:44 +02:00
|
|
|
|
2016-08-06 20:42:40 +02:00
|
|
|
QT_WARNING_PUSH
|
|
|
|
QT_WARNING_DISABLE_GCC("-Weffc++")
|
2017-05-30 17:44:16 +02:00
|
|
|
QT_WARNING_DISABLE_GCC("-Wnon-virtual-dtor")
|
2014-08-23 08:18:07 +02:00
|
|
|
|
2014-08-20 18:31:15 +02:00
|
|
|
class VIncrementData : public QSharedData
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
VIncrementData()
|
|
|
|
{}
|
|
|
|
|
2019-01-16 15:24:41 +01:00
|
|
|
VIncrementData(VContainer *data, IncrementType incrType)
|
|
|
|
: data(QSharedPointer<VContainer>(new VContainer(*data))),
|
|
|
|
incrType(incrType)
|
2017-11-19 16:08:50 +01:00
|
|
|
{
|
|
|
|
// When we create an increment in the dialog it will get neccesary data. Such data must be removed because will
|
|
|
|
// confuse a user. Increment should not know nothing about internal variables.
|
2019-01-16 15:24:41 +01:00
|
|
|
Q_STATIC_ASSERT_X(static_cast<int>(VarType::Unknown) == 9, "Check that you used all types");
|
2018-09-18 15:38:16 +02:00
|
|
|
this->data->ClearVariables(QVector<VarType>({VarType::LineAngle,
|
|
|
|
VarType::LineLength,
|
|
|
|
VarType::CurveLength,
|
|
|
|
VarType::CurveCLength,
|
|
|
|
VarType::ArcRadius,
|
2019-01-16 15:24:41 +01:00
|
|
|
VarType::CurveAngle,
|
|
|
|
VarType::IncrementSeparator
|
|
|
|
}));
|
2017-11-19 16:08:50 +01:00
|
|
|
}
|
2014-08-20 18:31:15 +02:00
|
|
|
|
|
|
|
VIncrementData(const VIncrementData &incr)
|
2017-09-02 13:47:44 +02:00
|
|
|
: QSharedData(incr),
|
|
|
|
index(incr.index),
|
|
|
|
formula(incr.formula),
|
|
|
|
formulaOk(incr.formulaOk),
|
|
|
|
previewCalculation(incr.previewCalculation),
|
2019-01-16 15:24:41 +01:00
|
|
|
data(incr.data),
|
|
|
|
incrType(incr.incrType)
|
2014-08-20 18:31:15 +02:00
|
|
|
{}
|
|
|
|
|
2014-09-11 18:52:02 +02:00
|
|
|
virtual ~VIncrementData();
|
2014-08-20 18:31:15 +02:00
|
|
|
|
|
|
|
/** @brief id each increment have unique identificator */
|
2019-01-16 15:39:44 +01:00
|
|
|
quint32 index{0};
|
2015-08-25 12:35:50 +02:00
|
|
|
QString formula;
|
2019-01-16 15:24:41 +01:00
|
|
|
bool formulaOk{false};
|
|
|
|
bool previewCalculation{false};
|
2018-09-18 15:38:16 +02:00
|
|
|
QSharedPointer<VContainer> data;
|
2019-01-16 15:24:41 +01:00
|
|
|
IncrementType incrType{IncrementType::Increment};
|
2015-10-31 13:56:28 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
VIncrementData &operator=(const VIncrementData &) Q_DECL_EQ_DELETE;
|
2014-08-20 18:31:15 +02:00
|
|
|
};
|
|
|
|
|
2014-09-11 18:52:02 +02:00
|
|
|
VIncrementData::~VIncrementData()
|
|
|
|
{}
|
|
|
|
|
2016-08-06 20:42:40 +02:00
|
|
|
QT_WARNING_POP
|
2014-08-20 18:31:15 +02:00
|
|
|
|
|
|
|
#endif // VINCREMENT_P_H
|