2016-11-03 16:59:53 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 3 11, 2016
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2016-11-03 16:59:53 +01:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2016 Valentina project
|
2020-01-31 07:00:05 +01:00
|
|
|
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
|
2016-11-03 16:59:53 +01: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 VPIECE_P_H
|
|
|
|
#define VPIECE_P_H
|
|
|
|
|
|
|
|
#include <QSharedData>
|
|
|
|
#include <QVector>
|
|
|
|
|
2022-08-22 10:34:02 +02:00
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(5, 5, 0)
|
2016-11-03 16:59:53 +01:00
|
|
|
#include "../vmisc/diagnostic.h"
|
2022-08-22 10:34:02 +02:00
|
|
|
#endif // QT_VERSION < QT_VERSION_CHECK(5, 5, 0)
|
2016-11-25 13:19:44 +01:00
|
|
|
#include "../vmisc/def.h"
|
2016-11-23 11:54:46 +01:00
|
|
|
#include "vpiecepath.h"
|
2017-02-23 10:37:19 +01:00
|
|
|
#include "floatItemData/vpiecelabeldata.h"
|
|
|
|
#include "floatItemData/vpatternlabeldata.h"
|
|
|
|
#include "floatItemData/vgrainlinedata.h"
|
2016-11-03 16:59:53 +01:00
|
|
|
|
|
|
|
QT_WARNING_PUSH
|
|
|
|
QT_WARNING_DISABLE_GCC("-Weffc++")
|
2017-05-30 17:44:16 +02:00
|
|
|
QT_WARNING_DISABLE_GCC("-Wnon-virtual-dtor")
|
2016-11-03 16:59:53 +01:00
|
|
|
|
|
|
|
class VPieceData : public QSharedData
|
|
|
|
{
|
|
|
|
public:
|
2016-12-03 12:31:59 +01:00
|
|
|
explicit VPieceData(PiecePathType type)
|
2022-11-08 15:58:13 +01:00
|
|
|
: m_path(type)
|
2016-11-03 16:59:53 +01:00
|
|
|
{}
|
|
|
|
|
2022-11-08 15:58:13 +01:00
|
|
|
VPieceData(const VPieceData &detail) = default;
|
2016-11-03 16:59:53 +01:00
|
|
|
|
2022-11-08 15:58:13 +01:00
|
|
|
~VPieceData() = default;
|
2016-11-03 16:59:53 +01:00
|
|
|
|
|
|
|
/** @brief nodes list detail nodes. */
|
2022-11-08 15:58:13 +01:00
|
|
|
VPiecePath m_path; // NOLINT(misc-non-private-member-variables-in-classes)
|
2016-11-08 11:53:14 +01:00
|
|
|
|
2022-11-08 15:58:13 +01:00
|
|
|
bool m_inLayout{true}; // NOLINT(misc-non-private-member-variables-in-classes)
|
|
|
|
bool m_united{false}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2016-11-09 14:53:22 +01:00
|
|
|
|
2022-11-08 15:58:13 +01:00
|
|
|
QVector<CustomSARecord> m_customSARecords{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
|
|
|
QVector<quint32> m_internalPaths{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
|
|
|
QVector<quint32> m_pins{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
|
|
|
QVector<quint32> m_placeLabels{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2016-11-25 13:19:44 +01:00
|
|
|
|
2017-01-12 14:51:08 +01:00
|
|
|
/** @brief Pattern piece data */
|
2022-11-08 15:58:13 +01:00
|
|
|
VPieceLabelData m_ppData{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2017-01-12 14:51:08 +01:00
|
|
|
|
|
|
|
/** @brief Pattern info coordinates */
|
2022-11-08 15:58:13 +01:00
|
|
|
VPatternLabelData m_piPatternInfo{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2017-01-12 14:51:08 +01:00
|
|
|
|
|
|
|
/** @brief m_glGrainline grainline geometry object*/
|
2022-11-08 15:58:13 +01:00
|
|
|
VGrainlineData m_glGrainline{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2017-01-12 14:51:08 +01:00
|
|
|
|
2022-11-08 15:58:13 +01:00
|
|
|
QString m_formulaWidth{'0'}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2017-01-21 14:24:40 +01:00
|
|
|
|
2022-11-08 15:58:13 +01:00
|
|
|
QString m_gradationLabel{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2021-08-31 11:07:26 +02:00
|
|
|
|
2016-11-03 16:59:53 +01:00
|
|
|
private:
|
2022-11-08 15:58:13 +01:00
|
|
|
Q_DISABLE_ASSIGN_MOVE(VPieceData) // NOLINT
|
2016-11-03 16:59:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
QT_WARNING_POP
|
|
|
|
|
|
|
|
#endif // VPIECE_P_H
|
|
|
|
|