2016-06-17 16:42:38 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
2017-02-23 10:19:27 +01:00
|
|
|
** @file vpiecelabeldata.h
|
2016-06-17 16:42:38 +02:00
|
|
|
** @author Bojan Kverh
|
|
|
|
** @date June 16, 2016
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2016-06-17 16:42:38 +02:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
|
|
|
** <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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
2016-06-18 16:00:01 +02:00
|
|
|
#ifndef VPATTERNPIECEDATA_H
|
|
|
|
#define VPATTERNPIECEDATA_H
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QString>
|
2017-02-23 10:37:19 +01:00
|
|
|
|
|
|
|
#include "vpatternlabeldata.h"
|
2017-02-23 13:46:53 +01:00
|
|
|
#include "floatitemdef.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
|
2017-02-23 13:46:53 +01:00
|
|
|
class VPieceLabelDataPrivate;
|
2017-08-21 19:14:39 +02:00
|
|
|
struct VLabelTemplateLine;
|
2016-06-17 16:42:38 +02:00
|
|
|
|
|
|
|
/**
|
2017-02-23 10:19:27 +01:00
|
|
|
* @brief The VPieceLabelData class holds some information about a single
|
2016-06-17 16:42:38 +02:00
|
|
|
* piece like letter, name, material type, cut number and placement.
|
|
|
|
*/
|
2017-02-23 10:37:19 +01:00
|
|
|
class VPieceLabelData : public VPatternLabelData
|
2016-06-17 16:42:38 +02:00
|
|
|
{
|
|
|
|
public:
|
2017-02-23 10:19:27 +01:00
|
|
|
VPieceLabelData();
|
2017-02-23 13:46:53 +01:00
|
|
|
VPieceLabelData(const VPieceLabelData &data);
|
2017-04-19 12:27:17 +02:00
|
|
|
|
2017-02-23 10:37:19 +01:00
|
|
|
virtual ~VPieceLabelData();
|
2016-06-17 16:42:38 +02:00
|
|
|
|
2017-04-19 12:27:17 +02:00
|
|
|
VPieceLabelData &operator=(const VPieceLabelData &data);
|
|
|
|
#ifdef Q_COMPILER_RVALUE_REFS
|
2019-12-30 16:13:18 +01:00
|
|
|
VPieceLabelData(const VPieceLabelData &&data) Q_DECL_NOTHROW;
|
2019-12-30 12:00:57 +01:00
|
|
|
VPieceLabelData &operator=(VPieceLabelData &&data) Q_DECL_NOTHROW;
|
2017-04-19 12:27:17 +02:00
|
|
|
#endif
|
|
|
|
|
2017-08-18 13:22:31 +02:00
|
|
|
void Clear();
|
2016-06-17 16:42:38 +02:00
|
|
|
|
|
|
|
// methods, which operate on other members
|
2017-08-18 13:22:31 +02:00
|
|
|
QString GetLetter() const;
|
|
|
|
void SetLetter(const QString &qsLetter);
|
2016-06-17 16:42:38 +02:00
|
|
|
|
2017-08-21 12:16:43 +02:00
|
|
|
QString GetAnnotation() const;
|
|
|
|
void SetAnnotation(const QString &val);
|
|
|
|
|
|
|
|
QString GetOrientation() const;
|
|
|
|
void SetOrientation(const QString &val);
|
|
|
|
|
2017-08-21 16:10:55 +02:00
|
|
|
QString GetRotationWay() const;
|
|
|
|
void SetRotationWay(const QString &val);
|
2017-08-21 12:16:43 +02:00
|
|
|
|
|
|
|
QString GetTilt() const;
|
|
|
|
void SetTilt(const QString &val);
|
|
|
|
|
|
|
|
QString GetFoldPosition() const;
|
|
|
|
void SetFoldPosition(const QString &val);
|
|
|
|
|
2019-07-04 13:33:45 +02:00
|
|
|
quint16 GetQuantity() const;
|
|
|
|
void SetQuantity(quint16 val);
|
2017-08-17 18:18:03 +02:00
|
|
|
|
|
|
|
bool IsOnFold() const;
|
|
|
|
void SetOnFold(bool onFold);
|
|
|
|
|
|
|
|
QVector<VLabelTemplateLine> GetLabelTemplate() const;
|
|
|
|
void SetLabelTemplate(const QVector<VLabelTemplateLine> &lines);
|
|
|
|
|
2016-06-17 16:42:38 +02:00
|
|
|
private:
|
2017-02-23 13:46:53 +01:00
|
|
|
QSharedDataPointer<VPieceLabelDataPrivate> d;
|
2016-06-17 16:42:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VPATTERNPIECEDATA_H
|