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
|
|
|
|
2021-09-25 16:18:33 +02:00
|
|
|
QT_WARNING_PUSH
|
|
|
|
QT_WARNING_DISABLE_GCC("-Wsuggest-final-types")
|
|
|
|
QT_WARNING_DISABLE_GCC("-Wsuggest-final-methods")
|
|
|
|
|
2014-07-29 13:28:18 +02:00
|
|
|
class VInternalVariable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VInternalVariable();
|
|
|
|
VInternalVariable(const VInternalVariable &var);
|
|
|
|
virtual ~VInternalVariable();
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto operator=(const VInternalVariable &var) -> VInternalVariable &;
|
2024-02-19 10:14:02 +01:00
|
|
|
|
2023-07-13 16:49:20 +02:00
|
|
|
VInternalVariable(VInternalVariable &&var) noexcept;
|
|
|
|
auto operator=(VInternalVariable &&var) noexcept -> VInternalVariable &;
|
2017-04-19 12:27:17 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
virtual auto GetValue() const -> qreal;
|
|
|
|
virtual auto GetValue() -> qreal *;
|
2014-08-20 17:58:10 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetName() const -> QString;
|
2023-07-13 16:49:20 +02:00
|
|
|
void SetName(const QString &name);
|
2014-08-20 17:58:10 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetType() const -> VarType;
|
2014-07-29 13:28:18 +02:00
|
|
|
|
2023-07-13 16:49:20 +02:00
|
|
|
void SetAlias(const QString &alias);
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetAlias() const -> QString;
|
2020-11-04 09:58:57 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
virtual auto Filter(quint32 id) -> bool;
|
|
|
|
|
|
|
|
virtual auto IsNotUsed() const -> bool;
|
2014-09-24 18:37:39 +02:00
|
|
|
|
2017-08-04 19:29:43 +02:00
|
|
|
protected:
|
|
|
|
void SetValue(const qreal &value);
|
2022-12-31 13:46:01 +01:00
|
|
|
void SetType(const VarType &type);
|
2023-07-13 16:49:20 +02:00
|
|
|
|
2014-08-20 17:58:10 +02:00
|
|
|
private:
|
|
|
|
QSharedDataPointer<VInternalVariableData> d;
|
2014-07-29 13:28:18 +02:00
|
|
|
};
|
|
|
|
|
2021-09-25 16:18:33 +02:00
|
|
|
QT_WARNING_POP
|
|
|
|
|
2022-08-12 17:50:13 +02:00
|
|
|
Q_DECLARE_TYPEINFO(VInternalVariable, Q_MOVABLE_TYPE); // NOLINT
|
2015-11-25 19:56:17 +01:00
|
|
|
|
2014-07-29 13:28:18 +02:00
|
|
|
#endif // VINTERNALVARIABLE_H
|