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()
|
2017-09-02 13:47:44 +02:00
|
|
|
: index(NULL_ID),
|
|
|
|
formula(QString()),
|
|
|
|
formulaOk(false),
|
|
|
|
previewCalculation(false),
|
|
|
|
data(VContainer(nullptr, nullptr))
|
2014-08-20 18:31:15 +02:00
|
|
|
{}
|
|
|
|
|
2015-08-25 12:35:50 +02:00
|
|
|
VIncrementData(VContainer *data, quint32 index, const QString &formula, bool ok)
|
2017-09-02 13:47:44 +02:00
|
|
|
: index(index),
|
|
|
|
formula(formula),
|
|
|
|
formulaOk(ok),
|
|
|
|
previewCalculation(false),
|
|
|
|
data(*data)
|
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),
|
|
|
|
data(incr.data)
|
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 */
|
2015-08-25 12:35:50 +02:00
|
|
|
quint32 index;
|
|
|
|
QString formula;
|
|
|
|
bool formulaOk;
|
2017-09-02 13:47:44 +02:00
|
|
|
bool previewCalculation;
|
2015-08-25 12:35:50 +02:00
|
|
|
VContainer data;
|
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
|