2016-06-17 16:42:38 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vpatternpiecedata.h
|
|
|
|
** @author Bojan Kverh
|
|
|
|
** @date June 16, 2016
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** 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-06-17 16:42:38 +02:00
|
|
|
#include <QList>
|
2016-06-23 22:35:32 +02:00
|
|
|
#include <QPointF>
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QSet>
|
|
|
|
#include <QString>
|
|
|
|
#include <QVector>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
|
|
|
class QPointF;
|
2016-06-17 16:42:38 +02:00
|
|
|
|
|
|
|
enum class MaterialType : char
|
|
|
|
{
|
2016-07-22 11:56:45 +02:00
|
|
|
mtFabric = 0,
|
|
|
|
mtLining = 1,
|
|
|
|
mtInterfacing = 2,
|
|
|
|
mtInterlining = 3,
|
|
|
|
mtUserDefined = 4
|
2016-06-17 16:42:38 +02:00
|
|
|
};
|
|
|
|
|
2016-07-22 11:56:45 +02:00
|
|
|
enum class PlacementType : char
|
|
|
|
{
|
|
|
|
ptNone = 0,
|
|
|
|
ptCutOnFold = 1
|
|
|
|
};
|
2016-06-17 16:42:38 +02:00
|
|
|
|
|
|
|
/**
|
2016-07-23 15:26:15 +02:00
|
|
|
* @brief The MaterialCutPlacement struct used to hold a material, cut number and placement 3-tuple
|
2016-06-17 16:42:38 +02:00
|
|
|
*/
|
|
|
|
struct MaterialCutPlacement
|
|
|
|
{
|
|
|
|
MaterialType m_eMaterial;
|
|
|
|
QString m_qsMaterialUserDef;
|
|
|
|
int m_iCutNumber;
|
|
|
|
PlacementType m_ePlacement;
|
2016-07-06 20:49:36 +02:00
|
|
|
|
|
|
|
MaterialCutPlacement();
|
2016-06-17 16:42:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef QList<MaterialCutPlacement> MCPContainer;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief The VPatternPieceData class holds some information about a single
|
|
|
|
* piece like letter, name, material type, cut number and placement.
|
|
|
|
*/
|
|
|
|
class VPatternPieceData
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VPatternPieceData();
|
|
|
|
|
|
|
|
// methods, which operate on MaterialCutPlacement container
|
|
|
|
void Append(const MaterialCutPlacement& rMCP);
|
|
|
|
void Insert(int i, const MaterialCutPlacement& rMCP);
|
2016-06-18 16:00:01 +02:00
|
|
|
void Set(int i, const MaterialCutPlacement& rMCP);
|
2016-06-17 16:42:38 +02:00
|
|
|
int GetMCPCount() const;
|
|
|
|
const MaterialCutPlacement& GetMCP(int i) const;
|
|
|
|
void RemoveMCP(int i);
|
2016-06-21 00:49:22 +02:00
|
|
|
void Clear();
|
2016-06-17 16:42:38 +02:00
|
|
|
|
|
|
|
// methods, which operate on other members
|
2016-06-18 16:00:01 +02:00
|
|
|
const QString& GetLetter() const;
|
2016-06-17 16:42:38 +02:00
|
|
|
void SetLetter(QString qsLetter);
|
|
|
|
|
2016-06-23 22:35:32 +02:00
|
|
|
// methods, which set up label parameters
|
|
|
|
QPointF GetPos() const;
|
|
|
|
void SetPos(const QPointF& ptPos);
|
|
|
|
qreal GetLabelWidth() const;
|
|
|
|
void SetLabelWidth(qreal dLabelW);
|
2016-06-27 17:18:43 +02:00
|
|
|
qreal GetLabelHeight() const;
|
|
|
|
void SetLabelHeight(qreal dLabelH);
|
2016-06-23 22:35:32 +02:00
|
|
|
int GetFontSize() const;
|
|
|
|
void SetFontSize(int iSize);
|
2016-07-01 01:45:16 +02:00
|
|
|
qreal GetRotation() const;
|
|
|
|
void SetRotation(qreal dRot);
|
2016-07-06 21:56:52 +02:00
|
|
|
bool IsVisible() const;
|
|
|
|
void SetVisible(bool bVal);
|
2016-06-23 22:35:32 +02:00
|
|
|
|
2016-06-17 16:42:38 +02:00
|
|
|
private:
|
2016-07-23 15:26:15 +02:00
|
|
|
/**
|
|
|
|
* @brief m_qsLetter Detail letter (should be no more than 3 characters)
|
2016-06-17 16:42:38 +02:00
|
|
|
*/
|
|
|
|
QString m_qsLetter;
|
2016-07-23 15:26:15 +02:00
|
|
|
/**
|
|
|
|
* @brief m_conMCP List of material, cut, placement tuples
|
2016-06-17 16:42:38 +02:00
|
|
|
*/
|
|
|
|
MCPContainer m_conMCP;
|
2016-07-23 15:26:15 +02:00
|
|
|
/**
|
|
|
|
* @brief m_ptPos position of label's top left corner
|
2016-06-23 22:35:32 +02:00
|
|
|
*/
|
|
|
|
QPointF m_ptPos;
|
2016-07-23 15:26:15 +02:00
|
|
|
/**
|
|
|
|
* @brief m_dLabelWidth label width
|
2016-06-23 22:35:32 +02:00
|
|
|
*/
|
|
|
|
qreal m_dLabelWidth;
|
2016-07-23 15:26:15 +02:00
|
|
|
/**
|
|
|
|
* @brief m_dLabelHeight label height
|
2016-06-27 17:18:43 +02:00
|
|
|
*/
|
|
|
|
qreal m_dLabelHeight;
|
2016-07-23 15:26:15 +02:00
|
|
|
/**
|
|
|
|
* @brief m_iFontSize label font size
|
2016-06-23 22:35:32 +02:00
|
|
|
*/
|
|
|
|
int m_iFontSize;
|
2016-07-23 15:26:15 +02:00
|
|
|
/**
|
|
|
|
* @brief m_dRotation label rotation
|
2016-07-01 01:45:16 +02:00
|
|
|
*/
|
|
|
|
qreal m_dRotation;
|
2016-07-23 15:26:15 +02:00
|
|
|
/**
|
|
|
|
* @brief m_bVisible visibility flag
|
2016-07-06 21:56:52 +02:00
|
|
|
*/
|
|
|
|
bool m_bVisible;
|
|
|
|
|
2016-06-17 16:42:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VPATTERNPIECEDATA_H
|