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.cpp
|
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-03-14 15:12:53 +01:00
|
|
|
#include "vmeasurement.h"
|
2013-07-17 13:38:11 +02:00
|
|
|
|
2015-10-18 21:30:51 +02:00
|
|
|
#include <QMap>
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QMessageLogger>
|
2015-10-18 21:30:51 +02:00
|
|
|
#include <QtDebug>
|
|
|
|
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../ifc/ifcdef.h"
|
|
|
|
#include "vvariable.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "vmeasurement_p.h"
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-01 09:35:13 +02:00
|
|
|
/**
|
|
|
|
* @brief VMeasurement create measurement for standard table
|
2014-07-29 13:28:18 +02:00
|
|
|
* @param name measurement's name
|
2014-07-09 14:23:04 +02:00
|
|
|
* @param base value in base size and height
|
2014-06-01 09:35:13 +02:00
|
|
|
* @param ksize increment in sizes
|
|
|
|
* @param kheight increment in heights
|
|
|
|
* @param gui_text shor tooltip for user
|
|
|
|
* @param description measurement full description
|
|
|
|
* @param tagName measurement's tag name in file
|
|
|
|
*/
|
2015-07-25 07:41:04 +02:00
|
|
|
VMeasurement::VMeasurement(quint32 index, const QString &name, qreal baseSize, qreal baseHeight, const qreal &base,
|
|
|
|
const qreal &ksize, const qreal &kheight, const QString &gui_text,
|
|
|
|
const QString &description, const QString &tagName)
|
|
|
|
:VVariable(name, baseSize, baseHeight, base, ksize, kheight, description),
|
|
|
|
d(new VMeasurementData(index, gui_text, tagName))
|
2014-07-29 13:28:18 +02:00
|
|
|
{
|
2014-08-20 17:58:10 +02:00
|
|
|
SetType(VarType::Measurement);
|
2014-07-29 13:28:18 +02:00
|
|
|
}
|
2014-03-14 15:12:53 +01:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-01 09:35:13 +02:00
|
|
|
/**
|
|
|
|
* @brief VMeasurement create measurement for individual table
|
2014-07-29 13:28:18 +02:00
|
|
|
* @param name measurement's name
|
2014-07-09 14:23:04 +02:00
|
|
|
* @param base value in base size and height
|
2014-06-01 09:35:13 +02:00
|
|
|
* @param gui_text shor tooltip for user
|
|
|
|
* @param description measurement full description
|
|
|
|
* @param tagName measurement's tag name in file
|
|
|
|
*/
|
2015-07-24 12:06:39 +02:00
|
|
|
VMeasurement::VMeasurement(VContainer *data, quint32 index, const QString &name, const qreal &base,
|
|
|
|
const QString &formula, bool ok, const QString &gui_text, const QString &description,
|
2014-06-01 09:35:13 +02:00
|
|
|
const QString &tagName)
|
2015-07-24 12:06:39 +02:00
|
|
|
:VVariable(name, base, description), d(new VMeasurementData(data, index, formula, ok, gui_text, tagName))
|
2014-07-29 13:28:18 +02:00
|
|
|
{
|
2014-08-20 17:58:10 +02:00
|
|
|
SetType(VarType::Measurement);
|
2014-07-29 13:28:18 +02:00
|
|
|
}
|
2014-03-14 15:12:53 +01:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-01 09:35:13 +02:00
|
|
|
VMeasurement::VMeasurement(const VMeasurement &m)
|
2014-08-20 19:43:53 +02:00
|
|
|
:VVariable(m), d(m.d)
|
2014-06-01 09:35:13 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VMeasurement &VMeasurement::operator=(const VMeasurement &m)
|
2014-03-14 15:12:53 +01:00
|
|
|
{
|
2014-07-27 14:30:28 +02:00
|
|
|
if ( &m == this )
|
|
|
|
{
|
|
|
|
return *this;
|
|
|
|
}
|
2014-07-09 14:23:04 +02:00
|
|
|
VVariable::operator=(m);
|
2014-08-20 19:43:53 +02:00
|
|
|
d = m.d;
|
2014-06-01 09:35:13 +02:00
|
|
|
return *this;
|
2014-03-14 15:12:53 +01:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-07-09 14:23:04 +02:00
|
|
|
VMeasurement::~VMeasurement()
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-06-12 10:55:44 +02:00
|
|
|
QStringList VMeasurement::ListHeights(QMap<GHeights, bool> heights, Unit patternUnit)
|
2014-07-09 14:23:04 +02:00
|
|
|
{
|
2014-07-29 13:28:18 +02:00
|
|
|
QStringList list;
|
2015-06-12 10:55:44 +02:00
|
|
|
if (patternUnit == Unit::Inch)
|
2014-07-09 14:23:04 +02:00
|
|
|
{
|
|
|
|
qWarning()<<"Standard table doesn't support inches.";
|
2014-07-29 13:28:18 +02:00
|
|
|
return list;
|
2014-07-09 14:23:04 +02:00
|
|
|
}
|
|
|
|
|
2014-08-07 14:03:24 +02:00
|
|
|
QMap<GHeights, bool>::const_iterator i = heights.constBegin();
|
|
|
|
while (i != heights.constEnd())
|
2014-07-09 14:23:04 +02:00
|
|
|
{
|
2014-08-08 18:07:44 +02:00
|
|
|
if (i.value() && i.key() != GHeights::ALL)
|
2014-08-07 14:03:24 +02:00
|
|
|
{
|
2015-06-12 10:55:44 +02:00
|
|
|
ListValue(list, static_cast<int>(i.key()), patternUnit);
|
2014-08-07 14:03:24 +02:00
|
|
|
}
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (list.isEmpty())
|
|
|
|
{
|
2015-07-13 12:48:29 +02:00
|
|
|
list = VMeasurement::WholeListHeights(patternUnit);
|
2014-07-09 14:23:04 +02:00
|
|
|
}
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-06-12 10:55:44 +02:00
|
|
|
QStringList VMeasurement::ListSizes(QMap<GSizes, bool> sizes, Unit patternUnit)
|
2014-07-09 14:23:04 +02:00
|
|
|
{
|
2014-07-29 13:28:18 +02:00
|
|
|
QStringList list;
|
2015-06-12 10:55:44 +02:00
|
|
|
if (patternUnit == Unit::Inch)
|
2014-07-09 14:23:04 +02:00
|
|
|
{
|
|
|
|
qWarning()<<"Standard table doesn't support inches.";
|
2014-07-29 13:28:18 +02:00
|
|
|
return list;
|
2014-07-09 14:23:04 +02:00
|
|
|
}
|
|
|
|
|
2014-08-07 14:03:24 +02:00
|
|
|
QMap<GSizes, bool>::const_iterator i = sizes.constBegin();
|
|
|
|
while (i != sizes.constEnd())
|
|
|
|
{
|
2014-08-08 18:07:44 +02:00
|
|
|
if (i.value() && i.key() != GSizes::ALL)
|
2014-08-07 14:03:24 +02:00
|
|
|
{
|
2015-06-12 10:55:44 +02:00
|
|
|
ListValue(list, static_cast<int>(i.key()), patternUnit);
|
2014-08-07 14:03:24 +02:00
|
|
|
}
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (list.isEmpty())
|
2014-07-09 14:23:04 +02:00
|
|
|
{
|
2015-07-13 12:48:29 +02:00
|
|
|
list = VMeasurement::WholeListSizes(patternUnit);
|
|
|
|
}
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QStringList VMeasurement::WholeListHeights(Unit patternUnit)
|
|
|
|
{
|
|
|
|
QStringList list;
|
|
|
|
if (patternUnit == Unit::Inch)
|
|
|
|
{
|
|
|
|
qWarning()<<"Standard table doesn't support inches.";
|
|
|
|
return list;
|
|
|
|
}
|
2017-02-22 06:54:42 +01:00
|
|
|
|
2017-03-09 21:41:48 +01:00
|
|
|
for (int i = static_cast<int>(GHeights::H50); i<= static_cast<int>(GHeights::H200); i = i+heightStep)
|
2015-07-13 12:48:29 +02:00
|
|
|
{
|
|
|
|
ListValue(list, i, patternUnit);
|
2014-07-09 14:23:04 +02:00
|
|
|
}
|
2015-07-13 12:48:29 +02:00
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QStringList VMeasurement::WholeListSizes(Unit patternUnit)
|
|
|
|
{
|
|
|
|
QStringList list;
|
|
|
|
if (patternUnit == Unit::Inch)
|
|
|
|
{
|
|
|
|
qWarning()<<"Standard table doesn't support inches.";
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2017-02-22 06:54:42 +01:00
|
|
|
for (int i = static_cast<int>(GSizes::S22); i<= static_cast<int>(GSizes::S72); i = i+sizeStep)
|
2015-07-13 12:48:29 +02:00
|
|
|
{
|
|
|
|
ListValue(list, i, patternUnit);
|
|
|
|
}
|
|
|
|
|
2014-07-09 14:23:04 +02:00
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2015-10-07 17:28:51 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
bool VMeasurement::IsGradationSizeValid(const QString &size)
|
|
|
|
{
|
|
|
|
if (not size.isEmpty())
|
|
|
|
{
|
|
|
|
const QStringList sizes = VMeasurement::WholeListSizes(Unit::Cm);
|
2017-04-18 10:49:05 +02:00
|
|
|
return sizes.contains(size);
|
2015-10-07 17:28:51 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
bool VMeasurement::IsGradationHeightValid(const QString &height)
|
|
|
|
{
|
|
|
|
if (not height.isEmpty())
|
|
|
|
{
|
|
|
|
const QStringList heights = VMeasurement::WholeListHeights(Unit::Cm);
|
2017-04-18 10:49:05 +02:00
|
|
|
return heights.contains(height);
|
2015-10-07 17:28:51 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-09 14:23:04 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-06-12 10:55:44 +02:00
|
|
|
void VMeasurement::ListValue(QStringList &list, qreal value, Unit patternUnit)
|
2014-03-14 15:12:53 +01:00
|
|
|
{
|
2015-07-13 12:48:29 +02:00
|
|
|
const qreal val = UnitConvertor(value, Unit::Cm, patternUnit);
|
|
|
|
const QString strVal = QString("%1").arg(val);
|
2014-07-09 14:23:04 +02:00
|
|
|
list.append(strVal);
|
2014-03-14 15:12:53 +01:00
|
|
|
}
|
2014-08-20 19:43:53 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief GetGuiText measurement name for tooltip
|
|
|
|
* @return measurement name
|
|
|
|
*/
|
|
|
|
QString VMeasurement::GetGuiText() const
|
|
|
|
{
|
|
|
|
return d->gui_text;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VMeasurement::TagName() const
|
|
|
|
{
|
|
|
|
return d->_tagName;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurement::setTagName(const QString &tagName)
|
|
|
|
{
|
|
|
|
d->_tagName = tagName;
|
|
|
|
}
|
2015-07-21 17:28:20 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VMeasurement::GetFormula() const
|
|
|
|
{
|
|
|
|
return d->formula;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
bool VMeasurement::IsCustom() const
|
|
|
|
{
|
2015-08-25 12:35:50 +02:00
|
|
|
if (GetName().indexOf(CustomMSign) == 0)
|
2015-07-21 17:28:20 +02:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-24 12:06:39 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
int VMeasurement::Index() const
|
|
|
|
{
|
2015-10-19 15:21:06 +02:00
|
|
|
return static_cast<int>(d->index);
|
2015-07-24 12:06:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
bool VMeasurement::IsFormulaOk() const
|
|
|
|
{
|
|
|
|
return d->formulaOk;
|
|
|
|
}
|
|
|
|
|
2015-07-21 17:28:20 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VContainer *VMeasurement::GetData()
|
|
|
|
{
|
|
|
|
return &d->data;
|
|
|
|
}
|