2016-07-02 01:49:38 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
2017-02-23 10:26:25 +01:00
|
|
|
** @file vpatternlabeldata.h
|
2016-07-02 01:49: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-07-02 01:49:38 +02:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2020-01-31 07:00:05 +01:00
|
|
|
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
|
2016-07-02 01:49:38 +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 VPATTERNINFOGEOMETRY_H
|
|
|
|
#define VPATTERNINFOGEOMETRY_H
|
|
|
|
|
|
|
|
#include <QPointF>
|
2017-02-23 12:26:12 +01:00
|
|
|
|
|
|
|
#include "vabstractfloatitemdata.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
|
2017-02-23 13:36:08 +01:00
|
|
|
class VPatternLabelDataPrivate;
|
|
|
|
|
2016-07-23 15:26:15 +02:00
|
|
|
/**
|
2017-02-23 10:26:25 +01:00
|
|
|
* @brief The VPatternLabelData class holds the information about pattern info label geometry
|
2016-07-23 15:26:15 +02:00
|
|
|
*/
|
2017-02-23 12:26:12 +01:00
|
|
|
class VPatternLabelData : public VAbstractFloatItemData
|
2016-07-02 01:49:38 +02:00
|
|
|
{
|
|
|
|
public:
|
2017-02-23 10:26:25 +01:00
|
|
|
VPatternLabelData();
|
2017-02-23 13:36:08 +01:00
|
|
|
VPatternLabelData(const VPatternLabelData &data);
|
2017-04-19 12:27:17 +02:00
|
|
|
|
2017-02-23 10:37:19 +01:00
|
|
|
virtual ~VPatternLabelData();
|
2016-07-02 01:49:38 +02:00
|
|
|
|
2017-04-19 12:27:17 +02:00
|
|
|
VPatternLabelData &operator=(const VPatternLabelData &data);
|
|
|
|
#ifdef Q_COMPILER_RVALUE_REFS
|
2022-08-12 17:50:13 +02:00
|
|
|
VPatternLabelData(VPatternLabelData &&data) Q_DECL_NOTHROW;
|
2019-12-30 12:00:57 +01:00
|
|
|
VPatternLabelData &operator=(VPatternLabelData &&data) Q_DECL_NOTHROW;
|
2017-04-19 12:27:17 +02:00
|
|
|
#endif
|
|
|
|
|
2016-07-02 01:49:38 +02:00
|
|
|
// methods, which set up label parameters
|
2017-03-13 13:27:29 +01:00
|
|
|
QString GetLabelWidth() const;
|
|
|
|
void SetLabelWidth(const QString &dLabelW);
|
2017-02-23 10:37:19 +01:00
|
|
|
|
2017-03-13 13:27:29 +01:00
|
|
|
QString GetLabelHeight() const;
|
|
|
|
void SetLabelHeight(const QString &dLabelH);
|
2017-02-23 10:37:19 +01:00
|
|
|
|
|
|
|
int GetFontSize() const;
|
|
|
|
void SetFontSize(int iSize);
|
|
|
|
|
2017-03-13 13:27:29 +01:00
|
|
|
QString GetRotation() const;
|
|
|
|
void SetRotation(const QString &dRot);
|
2017-02-23 10:37:19 +01:00
|
|
|
|
2017-03-11 14:25:21 +01:00
|
|
|
quint32 CenterPin() const;
|
|
|
|
void SetCenterPin(const quint32 ¢erPin);
|
|
|
|
|
2017-02-23 12:36:56 +01:00
|
|
|
quint32 TopLeftPin() const;
|
|
|
|
void SetTopLeftPin(const quint32 &topLeftPin);
|
|
|
|
|
|
|
|
quint32 BottomRightPin() const;
|
|
|
|
void SetBottomRightPin(const quint32 &bottomRightPin);
|
|
|
|
|
2017-02-23 13:46:53 +01:00
|
|
|
private:
|
2017-02-23 13:36:08 +01:00
|
|
|
QSharedDataPointer<VPatternLabelDataPrivate> d;
|
2016-07-02 01:49:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VPATTERNINFOGEOMETRY_H
|