2015-07-14 19:22:31 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vmeasurements.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 14 7, 2015
|
|
|
|
**
|
|
|
|
** @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) 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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#include "vmeasurements.h"
|
2015-07-16 11:38:54 +02:00
|
|
|
#include "../ifc/xml/vvstconverter.h"
|
|
|
|
#include "../ifc/xml/vvitconverter.h"
|
2015-07-24 12:06:39 +02:00
|
|
|
#include "../ifc/exception/vexceptionemptyparameter.h"
|
|
|
|
#include "../vpatterndb/calculator.h"
|
2015-07-16 11:38:54 +02:00
|
|
|
|
|
|
|
const QString VMeasurements::TagVST = QStringLiteral("vst");
|
|
|
|
const QString VMeasurements::TagVIT = QStringLiteral("vit");
|
|
|
|
const QString VMeasurements::TagBodyMeasurements = QStringLiteral("body-measurements");
|
|
|
|
const QString VMeasurements::TagUnit = QStringLiteral("unit");
|
|
|
|
const QString VMeasurements::TagNotes = QStringLiteral("notes");
|
|
|
|
const QString VMeasurements::TagSize = QStringLiteral("size");
|
|
|
|
const QString VMeasurements::TagHeight = QStringLiteral("height");
|
|
|
|
const QString VMeasurements::TagPersonal = QStringLiteral("personal");
|
|
|
|
const QString VMeasurements::TagFamilyName = QStringLiteral("family-name");
|
|
|
|
const QString VMeasurements::TagGivenName = QStringLiteral("given-name");
|
|
|
|
const QString VMeasurements::TagBirthDate = QStringLiteral("birth-date");
|
|
|
|
const QString VMeasurements::TagSex = QStringLiteral("sex");
|
|
|
|
const QString VMeasurements::TagEmail = QStringLiteral("email");
|
2015-07-18 13:08:44 +02:00
|
|
|
const QString VMeasurements::TagReadOnly = QStringLiteral("read-only");
|
2015-07-19 14:28:01 +02:00
|
|
|
const QString VMeasurements::TagMeasurement = QStringLiteral("m");
|
2015-07-16 11:38:54 +02:00
|
|
|
|
2015-07-19 14:28:01 +02:00
|
|
|
const QString VMeasurements::AttrBase = QStringLiteral("base");
|
|
|
|
const QString VMeasurements::AttrValue = QStringLiteral("value");
|
|
|
|
const QString VMeasurements::AttrSizeIncrease = QStringLiteral("size_increase");
|
|
|
|
const QString VMeasurements::AttrHeightIncrease = QStringLiteral("height_increase");
|
|
|
|
const QString VMeasurements::AttrDescription = QStringLiteral("description");
|
|
|
|
const QString VMeasurements::AttrName = QStringLiteral("name");
|
2015-07-16 11:38:54 +02:00
|
|
|
|
|
|
|
const QString VMeasurements::SexMale = QStringLiteral("male");
|
|
|
|
const QString VMeasurements::SexFemale = QStringLiteral("female");
|
|
|
|
const QString VMeasurements::SexUnknown = QStringLiteral("unknown");
|
2015-07-14 19:22:31 +02:00
|
|
|
|
2015-07-15 09:16:59 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VMeasurements::VMeasurements(VContainer *data)
|
|
|
|
:VDomDocument(),
|
2015-07-16 11:38:54 +02:00
|
|
|
data(data),
|
2015-07-21 19:26:33 +02:00
|
|
|
type(MeasurementsType::Unknown)
|
2015-07-15 09:16:59 +02:00
|
|
|
{
|
|
|
|
SCASSERT(data != nullptr)
|
|
|
|
}
|
2015-07-14 19:22:31 +02:00
|
|
|
|
2015-07-16 11:38:54 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VMeasurements::VMeasurements(Unit unit, VContainer *data)
|
|
|
|
:VDomDocument(),
|
|
|
|
data(data),
|
2015-07-21 19:26:33 +02:00
|
|
|
type(MeasurementsType::Individual)
|
2015-07-16 11:38:54 +02:00
|
|
|
{
|
|
|
|
SCASSERT(data != nullptr);
|
|
|
|
|
|
|
|
CreateEmptyIndividualFile(unit);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VMeasurements::VMeasurements(Unit unit, int baseSize, int baseHeight, VContainer *data)
|
|
|
|
:VDomDocument(),
|
|
|
|
data(data),
|
2015-07-21 19:26:33 +02:00
|
|
|
type(MeasurementsType::Standard)
|
2015-07-16 11:38:54 +02:00
|
|
|
{
|
|
|
|
SCASSERT(data != nullptr);
|
|
|
|
|
|
|
|
CreateEmptyStandardFile(unit, baseSize, baseHeight);
|
|
|
|
}
|
|
|
|
|
2015-07-15 09:16:59 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VMeasurements::~VMeasurements()
|
2015-07-14 19:22:31 +02:00
|
|
|
{
|
|
|
|
}
|
2015-07-16 11:38:54 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-07-21 19:26:33 +02:00
|
|
|
void VMeasurements::AddEmpty(const QString &name)
|
2015-07-19 14:28:01 +02:00
|
|
|
{
|
2015-07-21 19:26:33 +02:00
|
|
|
const QDomElement element = MakeEmpty(name);
|
2015-07-19 14:28:01 +02:00
|
|
|
|
2015-07-21 19:26:33 +02:00
|
|
|
const QDomNodeList list = elementsByTagName(TagBodyMeasurements);
|
|
|
|
list.at(0).appendChild(element);
|
|
|
|
}
|
2015-07-19 14:28:01 +02:00
|
|
|
|
2015-07-21 19:26:33 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::AddEmptyAfter(const QString &after, const QString &name)
|
|
|
|
{
|
|
|
|
const QDomElement element = MakeEmpty(name);
|
|
|
|
const QDomElement sibling = FindM(after);
|
|
|
|
|
|
|
|
const QDomNodeList list = elementsByTagName(TagBodyMeasurements);
|
|
|
|
|
|
|
|
if (sibling.isNull())
|
2015-07-19 14:28:01 +02:00
|
|
|
{
|
2015-07-21 19:26:33 +02:00
|
|
|
list.at(0).appendChild(element);
|
2015-07-19 14:28:01 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-07-21 19:26:33 +02:00
|
|
|
list.at(0).insertAfter(element, sibling);
|
2015-07-19 14:28:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-22 08:41:04 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::Remove(const QString &name)
|
|
|
|
{
|
|
|
|
const QDomNodeList list = elementsByTagName(TagBodyMeasurements);
|
|
|
|
list.at(0).removeChild(FindM(name));
|
|
|
|
}
|
|
|
|
|
2015-07-22 09:01:34 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::MoveUp(const QString &name)
|
|
|
|
{
|
|
|
|
const QDomElement node = FindM(name);
|
|
|
|
if (not node.isNull())
|
|
|
|
{
|
|
|
|
const QDomElement prSibling = node.previousSiblingElement(TagMeasurement);
|
|
|
|
if (not prSibling.isNull())
|
|
|
|
{
|
|
|
|
const QDomNodeList list = elementsByTagName(TagBodyMeasurements);
|
|
|
|
list.at(0).insertBefore(node, prSibling);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::MoveDown(const QString &name)
|
|
|
|
{
|
|
|
|
const QDomElement node = FindM(name);
|
|
|
|
if (not node.isNull())
|
|
|
|
{
|
|
|
|
const QDomElement nextSibling = node.nextSiblingElement(TagMeasurement);
|
|
|
|
if (not nextSibling.isNull())
|
|
|
|
{
|
|
|
|
const QDomNodeList list = elementsByTagName(TagBodyMeasurements);
|
|
|
|
list.at(0).insertAfter(node, nextSibling);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-24 12:06:39 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::ReadMeasurements() const
|
|
|
|
{
|
|
|
|
const QDomNodeList list = elementsByTagName(TagMeasurement);
|
|
|
|
for (int i=0; i < list.size(); ++i)
|
|
|
|
{
|
|
|
|
const QDomElement dom = list.at(i).toElement();
|
|
|
|
|
|
|
|
const QString name = GetParametrString(dom, AttrName);
|
|
|
|
|
|
|
|
QString description;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
description = GetParametrString(dom, AttrDescription);
|
|
|
|
}
|
|
|
|
catch (VExceptionEmptyParameter &e)
|
|
|
|
{
|
|
|
|
Q_UNUSED(e)
|
|
|
|
}
|
|
|
|
|
|
|
|
VMeasurement *meash;
|
|
|
|
if (type == MeasurementsType::Standard)
|
|
|
|
{
|
|
|
|
const quint32 base = GetParametrUInt(dom, AttrBase, "0");
|
|
|
|
const quint32 ksize = GetParametrUInt(dom, AttrSizeIncrease, "0");
|
|
|
|
const quint32 kheight = GetParametrUInt(dom, AttrHeightIncrease, "0");
|
|
|
|
|
|
|
|
meash = new VMeasurement(i, name, base, ksize, kheight, "", description);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QString formula = GetParametrString(dom, AttrValue, "0");
|
|
|
|
bool ok = false;
|
|
|
|
const qreal value = EvalFormula(data, formula, &ok);
|
|
|
|
meash = new VMeasurement(data, i, name, value, formula, ok, "", description);
|
|
|
|
}
|
|
|
|
data->AddVariable(name, meash);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-19 14:28:01 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-07-16 11:38:54 +02:00
|
|
|
MeasurementsType VMeasurements::Type() const
|
|
|
|
{
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
Unit VMeasurements::MUnit() const
|
|
|
|
{
|
|
|
|
const QString unit = UniqueTagText(TagUnit, UnitCM);
|
|
|
|
return VDomDocument::StrToUnits(unit);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
int VMeasurements::BaseSize() const
|
|
|
|
{
|
|
|
|
if (type == MeasurementsType::Standard)
|
|
|
|
{
|
|
|
|
return static_cast<int>(UniqueTagAttr(TagSize, AttrBase, 50));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
int VMeasurements::BaseHeight() const
|
|
|
|
{
|
|
|
|
if (type == MeasurementsType::Standard)
|
|
|
|
{
|
|
|
|
return static_cast<int>(UniqueTagAttr(TagHeight, AttrBase, 176));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VMeasurements::Notes() const
|
|
|
|
{
|
|
|
|
return UniqueTagText(TagNotes, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::SetNotes(const QString &text)
|
|
|
|
{
|
2015-07-18 15:25:56 +02:00
|
|
|
if (not ReadOnly())
|
|
|
|
{
|
|
|
|
setTagText(TagNotes, text);
|
|
|
|
}
|
2015-07-16 11:38:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VMeasurements::FamilyName() const
|
|
|
|
{
|
|
|
|
return UniqueTagText(TagFamilyName, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::SetFamilyName(const QString &text)
|
|
|
|
{
|
2015-07-18 15:25:56 +02:00
|
|
|
if (not ReadOnly())
|
|
|
|
{
|
|
|
|
setTagText(TagFamilyName, text);
|
|
|
|
}
|
2015-07-16 11:38:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VMeasurements::GivenName() const
|
|
|
|
{
|
|
|
|
return UniqueTagText(TagGivenName, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::SetGivenName(const QString &text)
|
|
|
|
{
|
2015-07-18 15:25:56 +02:00
|
|
|
if (not ReadOnly())
|
|
|
|
{
|
|
|
|
setTagText(TagGivenName, text);
|
|
|
|
}
|
2015-07-16 11:38:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QDate VMeasurements::BirthDate() const
|
|
|
|
{
|
|
|
|
const QString date = UniqueTagText(TagBirthDate, "1900-01-01");
|
|
|
|
return QDate::fromString(date, "yyyy-MM-dd");
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::SetBirthDate(const QDate &date)
|
|
|
|
{
|
2015-07-18 15:25:56 +02:00
|
|
|
if (not ReadOnly())
|
|
|
|
{
|
|
|
|
setTagText(TagBirthDate, date.toString("yyyy-MM-dd"));
|
|
|
|
}
|
2015-07-16 11:38:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
SexType VMeasurements::Sex() const
|
|
|
|
{
|
|
|
|
return StrToGender(UniqueTagText(TagSex, ""));
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::SetSex(const SexType &sex)
|
|
|
|
{
|
2015-07-18 15:25:56 +02:00
|
|
|
if (not ReadOnly())
|
|
|
|
{
|
|
|
|
setTagText(TagSex, GenderToStr(sex));
|
|
|
|
}
|
2015-07-16 11:38:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VMeasurements::Email() const
|
|
|
|
{
|
|
|
|
return UniqueTagText(TagEmail, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::SetEmail(const QString &text)
|
|
|
|
{
|
2015-07-18 15:25:56 +02:00
|
|
|
if (not ReadOnly())
|
|
|
|
{
|
|
|
|
setTagText(TagEmail, text);
|
|
|
|
}
|
2015-07-16 11:38:54 +02:00
|
|
|
}
|
|
|
|
|
2015-07-18 13:08:44 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
bool VMeasurements::ReadOnly() const
|
|
|
|
{
|
|
|
|
if (UniqueTagText(TagReadOnly, "false") == "true")
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::SetReadOnly(bool ro)
|
|
|
|
{
|
|
|
|
if (ro)
|
|
|
|
{
|
|
|
|
setTagText(TagReadOnly, "true");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
setTagText(TagReadOnly, "false");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-22 11:44:31 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::SetMName(const QString &name, const QString &text)
|
|
|
|
{
|
|
|
|
QDomElement node = FindM(name);
|
|
|
|
if (not node.isNull())
|
|
|
|
{
|
|
|
|
SetAttribute(node, AttrName, text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::SetMValue(const QString &name, const QString &text)
|
|
|
|
{
|
|
|
|
QDomElement node = FindM(name);
|
|
|
|
if (not node.isNull())
|
|
|
|
{
|
|
|
|
SetAttribute(node, AttrValue, text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::SetMBaseValue(const QString &name, int value)
|
|
|
|
{
|
|
|
|
QDomElement node = FindM(name);
|
|
|
|
if (not node.isNull())
|
|
|
|
{
|
|
|
|
SetAttribute(node, AttrValue, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::SetMSizeIncrease(const QString &name, int value)
|
|
|
|
{
|
|
|
|
QDomElement node = FindM(name);
|
|
|
|
if (not node.isNull())
|
|
|
|
{
|
|
|
|
SetAttribute(node, AttrSizeIncrease, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::SetMHeightIncrease(const QString &name, int value)
|
|
|
|
{
|
|
|
|
QDomElement node = FindM(name);
|
|
|
|
if (not node.isNull())
|
|
|
|
{
|
|
|
|
SetAttribute(node, AttrHeightIncrease, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::SetMDescription(const QString &name, const QString &text)
|
|
|
|
{
|
|
|
|
QDomElement node = FindM(name);
|
|
|
|
if (not node.isNull())
|
|
|
|
{
|
|
|
|
SetAttribute(node, AttrDescription, text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-16 11:38:54 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VMeasurements::GenderToStr(const SexType &sex)
|
|
|
|
{
|
|
|
|
switch (sex)
|
|
|
|
{
|
|
|
|
case SexType::Male:
|
|
|
|
return SexMale;
|
|
|
|
case SexType::Female:
|
|
|
|
return SexFemale;
|
|
|
|
case SexType::Unknown:
|
|
|
|
return SexUnknown;
|
|
|
|
default:
|
|
|
|
return SexUnknown;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
SexType VMeasurements::StrToGender(const QString &sex)
|
|
|
|
{
|
|
|
|
QStringList genders = QStringList() << SexMale << SexFemale << SexUnknown;
|
|
|
|
switch (genders.indexOf(sex))
|
|
|
|
{
|
|
|
|
case 0: // SexMale
|
|
|
|
return SexType::Male;
|
|
|
|
case 1: // SexFemale
|
|
|
|
return SexType::Female;
|
|
|
|
case 2: // SexUnknown
|
|
|
|
return SexType::Unknown;
|
|
|
|
default:
|
|
|
|
return SexType::Unknown;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::CreateEmptyStandardFile(Unit unit, int baseSize, int baseHeight)
|
|
|
|
{
|
|
|
|
this->clear();
|
|
|
|
QDomElement mElement = this->createElement(TagVST);
|
|
|
|
|
|
|
|
mElement.appendChild(createComment("Measurements created with Valentina (http://www.valentina-project.org/)."));
|
|
|
|
|
|
|
|
QDomElement version = createElement(TagVersion);
|
|
|
|
const QDomText newNodeText = createTextNode(VVSTConverter::MeasurementMaxVerStr);
|
|
|
|
version.appendChild(newNodeText);
|
|
|
|
mElement.appendChild(version);
|
|
|
|
|
2015-07-18 13:08:44 +02:00
|
|
|
QDomElement ro = createElement(TagReadOnly);
|
2015-07-18 14:39:33 +02:00
|
|
|
const QDomText roNodeText = createTextNode("false");
|
2015-07-18 13:08:44 +02:00
|
|
|
ro.appendChild(roNodeText);
|
|
|
|
mElement.appendChild(ro);
|
|
|
|
|
2015-07-16 11:38:54 +02:00
|
|
|
mElement.appendChild(createElement(TagNotes));
|
|
|
|
|
|
|
|
QDomElement mUnit = createElement(TagUnit);
|
|
|
|
const QDomText unitText = createTextNode(UnitsToStr(unit));
|
|
|
|
mUnit.appendChild(unitText);
|
|
|
|
mElement.appendChild(mUnit);
|
|
|
|
|
|
|
|
QDomElement size = createElement(TagSize);
|
|
|
|
SetAttribute(size, AttrBase, QString().setNum(baseSize));
|
|
|
|
mElement.appendChild(size);
|
|
|
|
|
|
|
|
QDomElement height = createElement(TagHeight);
|
|
|
|
SetAttribute(height, AttrBase, QString().setNum(baseHeight));
|
|
|
|
mElement.appendChild(height);
|
|
|
|
|
|
|
|
mElement.appendChild(createElement(TagBodyMeasurements));
|
|
|
|
|
|
|
|
this->appendChild(mElement);
|
|
|
|
insertBefore(createProcessingInstruction("xml", "version=\"1.0\" encoding=\"UTF-8\""), this->firstChild());
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMeasurements::CreateEmptyIndividualFile(Unit unit)
|
|
|
|
{
|
|
|
|
this->clear();
|
|
|
|
QDomElement mElement = this->createElement(TagVIT);
|
|
|
|
|
|
|
|
mElement.appendChild(createComment("Measurements created with Valentina (http://www.valentina-project.org/)."));
|
|
|
|
|
|
|
|
QDomElement version = createElement(TagVersion);
|
|
|
|
const QDomText newNodeText = createTextNode(VVITConverter::MeasurementMaxVerStr);
|
|
|
|
version.appendChild(newNodeText);
|
|
|
|
mElement.appendChild(version);
|
|
|
|
|
2015-07-18 13:08:44 +02:00
|
|
|
QDomElement ro = createElement(TagReadOnly);
|
2015-07-18 14:39:33 +02:00
|
|
|
const QDomText roNodeText = createTextNode("false");
|
2015-07-18 13:08:44 +02:00
|
|
|
ro.appendChild(roNodeText);
|
|
|
|
mElement.appendChild(ro);
|
|
|
|
|
2015-07-16 11:38:54 +02:00
|
|
|
mElement.appendChild(createElement(TagNotes));
|
|
|
|
|
|
|
|
QDomElement mUnit = createElement(TagUnit);
|
|
|
|
mUnit.appendChild(createTextNode(UnitsToStr(unit)));
|
|
|
|
mElement.appendChild(mUnit);
|
|
|
|
|
|
|
|
QDomElement personal = createElement(TagPersonal);
|
|
|
|
personal.appendChild(createElement(TagGivenName));
|
|
|
|
personal.appendChild(createElement(TagBirthDate));
|
|
|
|
personal.appendChild(createElement(TagSex));
|
|
|
|
personal.appendChild(createElement(TagEmail));
|
|
|
|
mElement.appendChild(personal);
|
|
|
|
|
|
|
|
mElement.appendChild(createElement(TagBodyMeasurements));
|
|
|
|
|
|
|
|
this->appendChild(mElement);
|
|
|
|
insertBefore(createProcessingInstruction("xml", "version=\"1.0\" encoding=\"UTF-8\""), this->firstChild());
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
qreal VMeasurements::UniqueTagAttr(const QString &tag, const QString &attr, qreal defValue) const
|
|
|
|
{
|
|
|
|
const qreal defVal = UnitConvertor(defValue, Unit::Cm, MUnit());
|
|
|
|
|
|
|
|
const QDomNodeList nodeList = this->elementsByTagName(tag);
|
|
|
|
if (nodeList.isEmpty())
|
|
|
|
{
|
|
|
|
return defVal;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const QDomNode domNode = nodeList.at(0);
|
|
|
|
if (domNode.isNull() == false && domNode.isElement())
|
|
|
|
{
|
|
|
|
const QDomElement domElement = domNode.toElement();
|
|
|
|
if (domElement.isNull() == false)
|
|
|
|
{
|
|
|
|
return GetParametrDouble(domElement, attr, QString("%1").arg(defVal));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return defVal;
|
|
|
|
}
|
2015-07-21 19:26:33 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QDomElement VMeasurements::MakeEmpty(const QString &name)
|
|
|
|
{
|
|
|
|
QDomElement element = createElement(TagMeasurement);
|
|
|
|
|
|
|
|
SetAttribute(element, AttrName, name);
|
|
|
|
|
|
|
|
if (type == MeasurementsType::Standard)
|
|
|
|
{
|
2015-07-22 11:44:31 +02:00
|
|
|
SetAttribute(element, AttrBase, QString("0"));
|
2015-07-21 19:26:33 +02:00
|
|
|
SetAttribute(element, AttrSizeIncrease, QString("0"));
|
|
|
|
SetAttribute(element, AttrHeightIncrease, QString("0"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-07-22 11:44:31 +02:00
|
|
|
SetAttribute(element, AttrValue, QString("0"));
|
2015-07-21 19:26:33 +02:00
|
|
|
SetAttribute(element, AttrDescription, QString(""));
|
|
|
|
}
|
|
|
|
|
|
|
|
return element;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QDomElement VMeasurements::FindM(const QString &name) const
|
|
|
|
{
|
|
|
|
QDomNodeList list = elementsByTagName(TagMeasurement);
|
|
|
|
|
|
|
|
for (int i=0; i < list.size(); ++i)
|
|
|
|
{
|
|
|
|
const QDomElement domElement = list.at(i).toElement();
|
|
|
|
if (domElement.isNull() == false)
|
|
|
|
{
|
|
|
|
const QString parameter = domElement.attribute(AttrName);
|
|
|
|
if (parameter == name)
|
|
|
|
{
|
|
|
|
return domElement;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return QDomElement();
|
|
|
|
}
|
2015-07-24 12:06:39 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
qreal VMeasurements::EvalFormula(VContainer *data, const QString &formula, bool *ok) const
|
|
|
|
{
|
|
|
|
if (formula.isEmpty())
|
|
|
|
{
|
|
|
|
*ok = true;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// Replace line return character with spaces for calc if exist
|
|
|
|
QString f = formula;
|
|
|
|
f.replace("\n", " ");
|
|
|
|
Calculator *cal = new Calculator(data, type);
|
|
|
|
const qreal result = cal->EvalFormula(f);
|
|
|
|
delete cal;
|
|
|
|
|
|
|
|
*ok = true;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
catch (qmu::QmuParserError &e)
|
|
|
|
{
|
|
|
|
*ok = false;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|