2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2014-01-15 00:55:41 +01:00
|
|
|
** @file vstandardtablecell.h
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2013-11-15 13:41:26 +01:00
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2014-01-15 00:55:41 +01:00
|
|
|
#ifndef VSTANDARDTABLEROW_H
|
|
|
|
#define VSTANDARDTABLEROW_H
|
2013-07-17 13:38:11 +02:00
|
|
|
|
2014-07-09 14:23:04 +02:00
|
|
|
#include "vvariable.h"
|
2015-06-12 10:55:44 +02:00
|
|
|
#include "../ifc/ifcdef.h"
|
2014-07-29 13:28:18 +02:00
|
|
|
|
|
|
|
#include <QStringList>
|
2015-11-04 16:22:49 +01:00
|
|
|
#include <QMap>
|
2013-11-21 13:05:26 +01:00
|
|
|
|
2014-08-20 19:43:53 +02:00
|
|
|
class VMeasurementData;
|
2015-07-19 14:28:01 +02:00
|
|
|
class VContainer;
|
2014-08-20 19:43:53 +02:00
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-03-14 15:12:53 +01:00
|
|
|
* @brief The VMeasurement class keep data row of standard table
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-07-09 14:23:04 +02:00
|
|
|
class VMeasurement :public VVariable
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-17 13:38:11 +02:00
|
|
|
public:
|
2015-07-25 07:41:04 +02:00
|
|
|
VMeasurement(quint32 index, const QString &name, qreal baseSize, qreal baseHeight, const qreal &base,
|
|
|
|
const qreal &ksize, const qreal &kheight, const QString &gui_text = QString(),
|
|
|
|
const QString &description = QString(), const QString &TagName = QString());
|
2015-07-24 12:06:39 +02:00
|
|
|
VMeasurement(VContainer *data, quint32 index, const QString &name, const qreal &base, const QString &formula,
|
|
|
|
bool ok, const QString &gui_text = QString(), const QString &description = QString(),
|
2014-05-01 13:33:40 +02:00
|
|
|
const QString &TagName = QString());
|
2014-06-01 09:35:13 +02:00
|
|
|
VMeasurement(const VMeasurement &m);
|
|
|
|
VMeasurement &operator=(const VMeasurement &m);
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual ~VMeasurement() Q_DECL_OVERRIDE;
|
2014-06-01 09:35:13 +02:00
|
|
|
|
2015-07-21 17:28:20 +02:00
|
|
|
QString GetGuiText() const;
|
|
|
|
|
|
|
|
QString TagName() const;
|
|
|
|
void setTagName(const QString &TagName);
|
|
|
|
|
|
|
|
QString GetFormula() const;
|
|
|
|
|
|
|
|
bool IsCustom() const;
|
|
|
|
|
2015-07-24 12:06:39 +02:00
|
|
|
int Index() const;
|
|
|
|
bool IsFormulaOk() const;
|
|
|
|
|
2015-07-21 17:28:20 +02:00
|
|
|
VContainer *GetData();
|
|
|
|
|
2015-06-12 10:55:44 +02:00
|
|
|
static QStringList ListHeights(QMap<GHeights, bool> heights, Unit patternUnit);
|
|
|
|
static QStringList ListSizes(QMap<GSizes, bool> sizes, Unit patternUnit);
|
2015-07-13 12:48:29 +02:00
|
|
|
static QStringList WholeListHeights(Unit patternUnit);
|
|
|
|
static QStringList WholeListSizes(Unit patternUnit);
|
2015-10-07 17:28:51 +02:00
|
|
|
static bool IsGradationSizeValid(const QString &size);
|
|
|
|
static bool IsGradationHeightValid(const QString &height);
|
2014-07-09 14:23:04 +02:00
|
|
|
private:
|
2014-08-20 19:43:53 +02:00
|
|
|
QSharedDataPointer<VMeasurementData> d;
|
2014-06-01 09:35:13 +02:00
|
|
|
|
2015-06-12 10:55:44 +02:00
|
|
|
static void ListValue(QStringList &list, qreal value, Unit patternUnit);
|
2013-07-17 13:38:11 +02:00
|
|
|
};
|
|
|
|
|
2015-11-25 19:56:17 +01:00
|
|
|
Q_DECLARE_TYPEINFO(VMeasurement, Q_MOVABLE_TYPE);
|
|
|
|
|
2014-01-15 00:55:41 +01:00
|
|
|
#endif // VSTANDARDTABLEROW_H
|