valentina/src/libs/vpatterndb/vpiece_p.h

93 lines
3.3 KiB
C
Raw Normal View History

/************************************************************************
**
** @file
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 3 11, 2016
**
** @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) 2016 Valentina project
** <https://gitlab.com/smart-pattern/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 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)
#include "../vmisc/diagnostic.h"
2022-08-22 10:34:02 +02:00
#endif // QT_VERSION < QT_VERSION_CHECK(5, 5, 0)
#include "../vmisc/def.h"
#include "vpiecepath.h"
#include "floatItemData/vpiecelabeldata.h"
#include "floatItemData/vpatternlabeldata.h"
#include "floatItemData/vgrainlinedata.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 VPieceData : public QSharedData
{
public:
explicit VPieceData(PiecePathType type)
2022-11-08 15:58:13 +01:00
: m_path(type)
{}
2022-11-08 15:58:13 +01:00
VPieceData(const VPieceData &detail) = default;
2022-11-08 15:58:13 +01:00
~VPieceData() = default;
/** @brief nodes list detail nodes. */
2022-11-08 15:58:13 +01:00
VPiecePath m_path; // NOLINT(misc-non-private-member-variables-in-classes)
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)
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)
/** @brief Pattern piece data */
2022-11-08 15:58:13 +01:00
VPieceLabelData m_ppData{}; // NOLINT(misc-non-private-member-variables-in-classes)
/** @brief Pattern info coordinates */
2022-11-08 15:58:13 +01:00
VPatternLabelData m_piPatternInfo{}; // NOLINT(misc-non-private-member-variables-in-classes)
/** @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)
2022-11-08 15:58:13 +01:00
QString m_formulaWidth{'0'}; // NOLINT(misc-non-private-member-variables-in-classes)
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
QString m_shortName{}; // NOLINT(misc-non-private-member-variables-in-classes)
private:
2022-11-08 15:58:13 +01:00
Q_DISABLE_ASSIGN_MOVE(VPieceData) // NOLINT
};
QT_WARNING_POP
#endif // VPIECE_P_H