valentina/src/libs/vpatterndb/variables/vincrement_p.h

96 lines
3.3 KiB
C
Raw Normal View History

/************************************************************************
**
** @file vincrement_p.h
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 20 8, 2014
**
** @brief
** @copyright
** This source code is part of the Valentina project, a pattern making
** program, whose allow create and modeling patterns of clothing.
** Copyright (C) 2013-2015 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 VINCREMENT_P_H
#define VINCREMENT_P_H
#include <QSharedData>
#include "../ifc/ifcdef.h"
#include "../vcontainer.h"
#include "../vmisc/diagnostic.h"
QT_WARNING_PUSH
QT_WARNING_DISABLE_GCC("-Weffc++")
2017-05-30 17:44:16 +02:00
QT_WARNING_DISABLE_GCC("-Wnon-virtual-dtor")
class VIncrementData : public QSharedData
{
public:
VIncrementData()
{}
VIncrementData(VContainer *data, IncrementType incrType)
: data(QSharedPointer<VContainer>(new VContainer(*data))),
incrType(incrType)
{
// 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.
Q_STATIC_ASSERT_X(static_cast<int>(VarType::Unknown) == 9, "Check that you used all types");
this->data->ClearVariables(QVector<VarType>({VarType::LineAngle,
VarType::LineLength,
VarType::CurveLength,
VarType::CurveCLength,
VarType::ArcRadius,
VarType::CurveAngle,
VarType::IncrementSeparator
}));
}
VIncrementData(const VIncrementData &incr)
: QSharedData(incr),
index(incr.index),
formula(incr.formula),
formulaOk(incr.formulaOk),
previewCalculation(incr.previewCalculation),
data(incr.data),
incrType(incr.incrType)
{}
virtual ~VIncrementData();
/** @brief id each increment have unique identificator */
quint32 index{0};
QString formula;
bool formulaOk{false};
bool previewCalculation{false};
QSharedPointer<VContainer> data;
IncrementType incrType{IncrementType::Increment};
2015-10-31 13:56:28 +01:00
private:
VIncrementData &operator=(const VIncrementData &) Q_DECL_EQ_DELETE;
};
VIncrementData::~VIncrementData()
{}
QT_WARNING_POP
#endif // VINCREMENT_P_H