2014-07-29 13:28:18 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vinternalvariable.h
|
|
|
|
** @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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#ifndef VINTERNALVARIABLE_H
|
|
|
|
#define VINTERNALVARIABLE_H
|
|
|
|
|
2014-08-20 17:58:10 +02:00
|
|
|
#include <QSharedDataPointer>
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QString>
|
|
|
|
#include <QTypeInfo>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
2015-06-15 13:43:41 +02:00
|
|
|
#include "../vmisc/def.h"
|
2014-07-29 13:28:18 +02:00
|
|
|
|
2014-08-20 17:58:10 +02:00
|
|
|
class VInternalVariableData;
|
2014-07-29 13:28:18 +02:00
|
|
|
|
|
|
|
class VInternalVariable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VInternalVariable();
|
|
|
|
VInternalVariable(const VInternalVariable &var);
|
2017-04-19 12:27:17 +02:00
|
|
|
|
2014-07-29 13:28:18 +02:00
|
|
|
virtual ~VInternalVariable();
|
|
|
|
|
2017-04-19 12:27:17 +02:00
|
|
|
VInternalVariable &operator=(const VInternalVariable &var);
|
|
|
|
#ifdef Q_COMPILER_RVALUE_REFS
|
2019-12-30 16:13:18 +01:00
|
|
|
VInternalVariable(const VInternalVariable &&var) Q_DECL_NOTHROW;
|
2019-12-30 12:00:57 +01:00
|
|
|
VInternalVariable &operator=(VInternalVariable &&var) Q_DECL_NOTHROW;
|
2017-04-19 12:27:17 +02:00
|
|
|
#endif
|
|
|
|
|
2017-08-04 19:29:43 +02:00
|
|
|
virtual qreal GetValue() const;
|
|
|
|
virtual qreal* GetValue();
|
2014-08-20 17:58:10 +02:00
|
|
|
|
2014-07-29 13:28:18 +02:00
|
|
|
QString GetName() const;
|
2014-08-20 17:58:10 +02:00
|
|
|
void SetName(const QString &name);
|
|
|
|
|
2014-07-29 13:28:18 +02:00
|
|
|
VarType GetType() const;
|
2014-08-20 17:58:10 +02:00
|
|
|
void SetType(const VarType &type);
|
2014-07-29 13:28:18 +02:00
|
|
|
|
|
|
|
virtual bool Filter(quint32 id);
|
2014-09-24 18:37:39 +02:00
|
|
|
|
|
|
|
virtual bool IsNotUsed() const;
|
2017-08-04 19:29:43 +02:00
|
|
|
protected:
|
|
|
|
void SetValue(const qreal &value);
|
2014-08-20 17:58:10 +02:00
|
|
|
private:
|
|
|
|
QSharedDataPointer<VInternalVariableData> d;
|
2014-07-29 13:28:18 +02:00
|
|
|
};
|
|
|
|
|
2015-11-25 19:56:17 +01:00
|
|
|
Q_DECLARE_TYPEINFO(VInternalVariable, Q_MOVABLE_TYPE);
|
|
|
|
|
2014-07-29 13:28:18 +02:00
|
|
|
#endif // VINTERNALVARIABLE_H
|