2015-07-16 11:38:54 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vvitconverter.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 15 7, 2015
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2015-07-16 11:38:54 +02:00
|
|
|
** 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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#ifndef VVITCONVERTER_H
|
|
|
|
#define VVITCONVERTER_H
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <qcompilerdetection.h>
|
|
|
|
#include <QCoreApplication>
|
|
|
|
#include <QString>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
2015-09-07 13:51:21 +02:00
|
|
|
#include "vabstractmconverter.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "vabstractconverter.h"
|
|
|
|
|
|
|
|
class QDomElement;
|
2015-07-16 11:38:54 +02:00
|
|
|
|
2015-09-07 13:51:21 +02:00
|
|
|
class VVITConverter : public VAbstractMConverter
|
2015-07-16 11:38:54 +02:00
|
|
|
{
|
|
|
|
Q_DECLARE_TR_FUNCTIONS(VVITConverter)
|
|
|
|
public:
|
2015-10-12 13:52:48 +02:00
|
|
|
explicit VVITConverter(const QString &fileName);
|
2017-04-01 16:27:55 +02:00
|
|
|
virtual ~VVITConverter() Q_DECL_EQ_DEFAULT;
|
2015-07-16 11:38:54 +02:00
|
|
|
|
2016-07-07 17:04:26 +02:00
|
|
|
static const QString MeasurementMaxVerStr;
|
|
|
|
static const QString CurrentSchema;
|
2018-07-26 20:21:08 +02:00
|
|
|
static Q_DECL_CONSTEXPR const int MeasurementMinVer = FORMAT_VERSION(0, 2, 0);
|
2018-07-30 15:43:01 +02:00
|
|
|
static Q_DECL_CONSTEXPR const int MeasurementMaxVer = FORMAT_VERSION(0, 5, 0);
|
2015-07-16 11:38:54 +02:00
|
|
|
|
|
|
|
protected:
|
2018-06-26 14:53:48 +02:00
|
|
|
virtual int MinVer() const override;
|
|
|
|
virtual int MaxVer() const override;
|
2015-07-16 11:38:54 +02:00
|
|
|
|
2018-06-26 14:53:48 +02:00
|
|
|
virtual QString MinVerStr() const override;
|
|
|
|
virtual QString MaxVerStr() const override;
|
2015-07-16 11:38:54 +02:00
|
|
|
|
2018-06-26 14:53:48 +02:00
|
|
|
virtual QString XSDSchema(int ver) const override;
|
|
|
|
virtual void ApplyPatches() override;
|
|
|
|
virtual void DowngradeToCurrentMaxVersion() override;
|
|
|
|
virtual bool IsReadOnly() const override;
|
2015-07-16 11:38:54 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(VVITConverter)
|
2016-07-07 17:04:26 +02:00
|
|
|
static const QString MeasurementMinVerStr;
|
2015-07-16 11:38:54 +02:00
|
|
|
|
2015-09-07 13:51:21 +02:00
|
|
|
void AddNewTagsForV0_3_0();
|
|
|
|
QString MUnitV0_2_0();
|
|
|
|
void ConvertMeasurementsToV0_3_0();
|
|
|
|
QDomElement AddMV0_3_0(const QString &name, qreal value);
|
2015-10-13 10:13:43 +02:00
|
|
|
void GenderV0_3_1();
|
2015-10-16 19:26:05 +02:00
|
|
|
void PM_SystemV0_3_2();
|
2015-11-11 15:26:48 +01:00
|
|
|
void ConvertMeasurementsToV0_3_3();
|
2017-09-19 15:07:48 +02:00
|
|
|
void ConverCustomerNameToV0_4_0();
|
2015-09-07 13:51:21 +02:00
|
|
|
|
2015-07-16 11:38:54 +02:00
|
|
|
void ToV0_3_0();
|
2015-10-13 10:13:43 +02:00
|
|
|
void ToV0_3_1();
|
2015-10-16 19:26:05 +02:00
|
|
|
void ToV0_3_2();
|
2015-11-11 15:26:48 +01:00
|
|
|
void ToV0_3_3();
|
2017-09-19 15:07:48 +02:00
|
|
|
void ToV0_4_0();
|
2018-07-30 15:43:01 +02:00
|
|
|
void ToV0_5_0();
|
2015-07-16 11:38:54 +02:00
|
|
|
};
|
|
|
|
|
2016-07-07 17:04:26 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
inline int VVITConverter::MinVer() const
|
|
|
|
{
|
|
|
|
return MeasurementMinVer;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
inline int VVITConverter::MaxVer() const
|
|
|
|
{
|
|
|
|
return MeasurementMaxVer;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
inline QString VVITConverter::MinVerStr() const
|
|
|
|
{
|
|
|
|
return MeasurementMinVerStr;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
inline QString VVITConverter::MaxVerStr() const
|
|
|
|
{
|
|
|
|
return MeasurementMaxVerStr;
|
|
|
|
}
|
|
|
|
|
2015-07-16 11:38:54 +02:00
|
|
|
#endif // VVITCONVERTER_H
|