/************************************************************************
 **
 **  @file   vapplication.cpp
 **  @author Roman Telezhynskyi <dismine(at)gmail.com>
 **  @date   November 15, 2013
 **
 **  @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) 2013 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 "vapplication.h"
#include "../exception/vexceptionobjecterror.h"
#include "../exception/vexceptionbadid.h"
#include "../exception/vexceptionconversionerror.h"
#include "../exception/vexceptionemptyparameter.h"
#include "../exception/vexceptionwrongid.h"
#include "vmaingraphicsview.h"
#include "../container/calculator.h"
#include "../version.h"

#include <QDebug>
#include <QDir>
#include <QProcess>
#include <QTemporaryFile>
#include <QUndoStack>
#include <QtCore/qmath.h>
#include <QTemporaryFile>

const qreal VApplication::PrintDPI = 96.0;

#if defined(Q_OS_WIN) && defined(Q_CC_GNU)
const QString VApplication::GistFileName = QStringLiteral("gist.json");
#endif // defined(Q_OS_WIN) && defined(Q_CC_GNU)

#define DefWidth 1.2//mm

//---------------------------------------------------------------------------------------------------------------------
/**
 * @brief VApplication constructor.
 * @param argc number arguments.
 * @param argv command line.
 */
VApplication::VApplication(int &argc, char **argv)
    : QApplication(argc, argv), _patternUnit(Unit::Cm), _patternType(MeasurementsType::Individual),
      _widthMainLine(DefWidth), _widthHairLine(DefWidth/3.0), measurements(QMap<QString, VTranslation>()),
      guiTexts(QMap<QString, VTranslation>()), descriptions(QMap<QString, VTranslation>()),
      variables(QMap<QString, VTranslation>()), functions(QMap<QString, VTranslation>()),
      postfixOperators(QMap<QString, VTranslation>()), stDescriptions(QMap<QString, VTranslation>()),
      undoStack(nullptr), sceneView(nullptr), currentScene(nullptr),
      autoSaveTimer(nullptr), mainWindow(nullptr), openingPattern(false), settings(nullptr), doc(nullptr)
{
    undoStack = new QUndoStack(this);

    InitLineWidth();
    InitMeasurements();
    InitVariables();
    InitFunctions();
    InitPostfixOperators();
    InitSTDescriptions();
}

//---------------------------------------------------------------------------------------------------------------------
/**
 * @brief NewValentina start Valentina in new process, send path to pattern file in argument.
 * @param fileName path to pattern file.
 */
void VApplication::NewValentina(const QString &fileName)
{
    QProcess *v = new QProcess();
    QStringList arguments;
    arguments << fileName;
    if (fileName.isEmpty())
    {
        v->startDetached(QCoreApplication::applicationFilePath());
    }
    else
    {
        v->startDetached(QCoreApplication::applicationFilePath(), arguments);
    }
    delete v;
}

//---------------------------------------------------------------------------------------------------------------------
void VApplication::CheckFactor(qreal &oldFactor, const qreal &Newfactor)
{
    if (Newfactor <= 2 && Newfactor >= 0.5)
    {
        oldFactor = Newfactor;
    }
}

//---------------------------------------------------------------------------------------------------------------------
/**
 * @brief notify Reimplemented from QApplication::notify().
 * @param receiver receiver.
 * @param event event.
 * @return value that is returned from the receiver's event handler.
 */
// reimplemented from QApplication so we can throw exceptions in slots
bool VApplication::notify(QObject *receiver, QEvent *event)
{
    try
    {
        return QApplication::notify(receiver, event);
    }
    catch (const VExceptionObjectError &e)
    {
        e.CriticalMessageBox(tr("Error parsing file. Program will be terminated."), mainWindow);
        abort();
    }
    catch (const VExceptionBadId &e)
    {
        e.CriticalMessageBox(tr("Error bad id. Program will be terminated."), mainWindow);
        abort();
    }
    catch (const VExceptionConversionError &e)
    {
        e.CriticalMessageBox(tr("Error can't convert value. Program will be terminated."), mainWindow);
        abort();
    }
    catch (const VExceptionEmptyParameter &e)
    {
        e.CriticalMessageBox(tr("Error empty parameter. Program will be terminated."), mainWindow);
        abort();
    }
    catch (const VExceptionWrongId &e)
    {
        e.CriticalMessageBox(tr("Error wrong id. Program will be terminated."), mainWindow);
        abort();
    }
    catch (const VException &e)
    {
        e.CriticalMessageBox(tr("Something's wrong!!"), mainWindow);
        return true;
    }
    catch (std::exception& e)
    {
      qCritical() << "Exception thrown:" << e.what();
    }
    return false;
}

//---------------------------------------------------------------------------------------------------------------------
double VApplication::toPixel(double val, const Unit &unit) const
{
    double result = 0;
    switch (unit)
    {
    case Unit::Mm:
        result = (val / 25.4) * PrintDPI;
        break;
    case Unit::Cm:
        result = ((val * 10.0) / 25.4) * PrintDPI;
        break;
    case Unit::Inch:
        result = val * PrintDPI;
        break;
    default:
        break;
    }
    return result;
}

//---------------------------------------------------------------------------------------------------------------------
double VApplication::toPixel(double val) const
{
    return toPixel(val, _patternUnit);
}

//---------------------------------------------------------------------------------------------------------------------
double VApplication::fromPixel(double pix, const Unit &unit) const
{
    double result = 0;
    switch (unit)
    {
    case Unit::Mm:
        result = (pix / PrintDPI) * 25.4;
        break;
    case Unit::Cm:
        result = ((pix / PrintDPI) * 25.4) / 10.0;
        break;
    case Unit::Inch:
        result = pix / PrintDPI;
        break;
    default:
        break;
    }
    return result;
}

//---------------------------------------------------------------------------------------------------------------------
double VApplication::fromPixel(double pix) const
{
    return fromPixel(pix, _patternUnit);
}

//---------------------------------------------------------------------------------------------------------------------
QString VApplication::pathToTables() const
{
    if (_patternType == MeasurementsType::Individual)
    {
        return QStringLiteral("://tables/individual/individual.vit");
    }
    else
    {
        const QString stPath = QStringLiteral("/tables/standard");
        #ifdef Q_OS_WIN
            return QApplication::applicationDirPath() + stPath;
        #else
            #ifdef QT_DEBUG
                return QApplication::applicationDirPath() + stPath;
            #else
                QDir dir(QApplication::applicationDirPath() + stPath);
                if (dir.exists())
                {
                    return dir.absolutePath();
                }
                else
                {
                    return QStringLiteral("/usr/share/valentina/tables/standard");
                }
            #endif
        #endif
    }
}

//---------------------------------------------------------------------------------------------------------------------
QString VApplication::translationsPath() const
{
    const QString trPath = QStringLiteral("/translations");
#ifdef Q_OS_WIN
    return QApplication::applicationDirPath() + trPath;
#else
#ifdef QT_DEBUG
    return QApplication::applicationDirPath() + trPath;
    #else
        QDir dir(QApplication::applicationDirPath() + trPath);
        if (dir.exists())
        {
            return dir.absolutePath();
        }
        else
        {
            return QStringLiteral("/usr/share/valentina/translations");
        }
    #endif
#endif
}

//---------------------------------------------------------------------------------------------------------------------
void VApplication::InitLineWidth()
{
    switch (_patternUnit)
    {
        case Unit::Mm:
            _widthMainLine = DefWidth;
            break;
        case Unit::Cm:
            _widthMainLine = DefWidth/10.0;
            break;
        case Unit::Inch:
            _widthMainLine = DefWidth/25.4;
            break;
        default:
            _widthMainLine = DefWidth;
            break;
    }
    _widthHairLine = _widthMainLine/3.0;
}

//---------------------------------------------------------------------------------------------------------------------
void VApplication::InitMeasurement(const QString &name, const VTranslation &m, const VTranslation &g,
                                   const VTranslation &d)
{
    measurements.insert(name, m);
    guiTexts.insert(name, g);
    descriptions.insert(name, d);
}

//---------------------------------------------------------------------------------------------------------------------
void VApplication::InitMeasurements()
{
    //Note. We can't use here function and variables because lupdate tool doesn't see string in variables and doesn't
    //mark such string to translation.
    VTranslation m;
    VTranslation g;
    VTranslation d;

    //=================================================================================================================
    // head_and_neck
    m = VTranslation::translate("Measurements", "head_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Head girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around fullest part of Head",
                                "Full measurement description");
    InitMeasurement(headGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "mid_neck_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Mid-neck girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around middle part of Neck",
                                "Full measurement description");
    InitMeasurement(midNeckGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "neck_base_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Neck Base girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around Neck at base", "Full measurement description");
    InitMeasurement(neckBaseGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "head_and_neck_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Head and Neck length", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Vertical Distance from Crown to Nape",
                                "Full measurement description");
    InitMeasurement(headAndNeckLength_M, m, g, d);
    //=================================================================================================================
    // torso
    m = VTranslation::translate("Measurements", "center_front_waist_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Front Center length", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Front Neck Center over tape at Bustline to Front Waist "
                                "Center", "Full measurement description");
    InitMeasurement(centerFrontWaistLength_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "center_back_waist_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Back Center length", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Back Neck Center to Back Waist Center",
                                "Full measurement description");
    InitMeasurement(centerBackWaistLength_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "shoulder_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Shoulder length", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "NeckPoint to ShoulderTip", "Full measurement description");
    InitMeasurement(shoulderLength_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "side_waist_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Side Waist length", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Armpit to Waist side", "Full measurement description");
    InitMeasurement(sideWaistLength_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "trunk_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Trunk length", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions",
                                "Around Body from middle of Shoulder length to BustPoint to Crotch up back to beginning"
                                " point",
                                "Full measurement description");
    InitMeasurement(trunkLength_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "shoulder_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Shoulder girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around Arms and Torso, at bicep level parallel to floor, "
                                "with arms hanging at the sides", "Full measurement description");
    InitMeasurement(shoulderGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "upper_chest_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Upper Chest girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around Chest at Armfold level, will be parallel to floor "
                                "across back, will not be parallel to floor across front chest",
                                "Full measurement description");
    InitMeasurement(upperChestGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "bust_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Bust girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around fullest part of Bust, parallel to floor",
                                "Full measurement description");
    InitMeasurement(bustGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "under_bust_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Under Bust girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around Chest below the Bust, parallel to floor",
                                "Full measurement description");
    InitMeasurement(underBustGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "waist_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Waist girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Tie a string around smallest part of waist, keep string "
                                "tied while taking meaasurements. Not usually parallel to floor for front waist or "
                                "back waist.",
                                "Full measurement description");
    InitMeasurement(waistGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "high_hip_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "HighHip girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around HighHip, parallel to floor",
                                "Full measurement description");
    InitMeasurement(highHipGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "hip_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Hip girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around Hip, parallel to floor",
                                "Full measurement description");
    InitMeasurement(hipGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "upper_front_chest_width",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Front Upper Chest width", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Across Front UpperChest, smallest width from armscye to "
                                "armscye", "Full measurement description");
    InitMeasurement(upperFrontChestWidth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "front_chest_width",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Front Chest width", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Across Front Chest, from armfold to armfold",
                                "Full measurement description");
    InitMeasurement(frontChestWidth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "across_front_shoulder_width",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Front Across Shoulder width", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "From ShoulderTip to ShoulderTip, across Front",
                                "Full measurement description");
    InitMeasurement(acrossFrontShoulderWidth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "across_back_shoulder_width",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Back Across Shoulder width", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "From ShoulderTip to ShoulderTip, across Back",
                                "Full measurement description");
    InitMeasurement(acrossBackShoulderWidth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "upper_back_width",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Back Upper Chest width", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Across Back UpperChest, smallest width from armscye to "
                                "armscye", "Full measurement description");
    InitMeasurement(upperBackWidth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "back_width",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Back Chest width", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Across Back Chest, from armfold to armfold",
                                "Full measurement description");
    InitMeasurement(backWidth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "bustpoint_to_bustpoint",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "BustPoint to BustPoint", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Distance between BustPoints, across Chest",
                                "Full measurement description");
    InitMeasurement(bustpointToBustpoint_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "halter_bustpoint_to_bustpoint",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Halter Bustpoint to Bustpoint", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Distance from Bustpoint, behind neck, down to Bustpoint",
                                "Full measurement description");
    InitMeasurement(halterBustpointToBustpoint_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "neck_to_bustpoint",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "NeckPoint to BustPoint", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "From NeckPoint to BustPoint",
                                "Full measurement description");
    InitMeasurement(neckToBustpoint_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "crotch_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Crotch length", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "From Front Waist Center, down to crotch, up to Back Waist "
                                "Center", "Full measurement description");
    InitMeasurement(crotchLength_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "rise_height",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Rise height", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Sit on hard chair, measure from side waist straight down "
                                "to chair bottom", "Full measurement description");
    InitMeasurement(riseHeight_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "shoulder_drop",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Shoulder Drop", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Vertical Distance from NeckPoint level to ShoulderTip "
                                "level", "Full measurement description");
    InitMeasurement(shoulderDrop_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "shoulder_slope_degrees",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Shoulder Slope degrees", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Degrees of angle from NeckPoint to ShoulderTip – requires "
                                "goniometer", "Full measurement description");
    InitMeasurement(shoulderSlopeDegrees_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "front_shoulder_slope_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Front Shoulder Balance", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "ShoulderTip to Front Waist Center",
                                "Full measurement description");
    InitMeasurement(frontShoulderSlopeLength_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "back_shoulder_slope_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Back Shoulder Balance", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "ShoulderTip to Back Waist Center",
                                "Full measurement description");
    InitMeasurement(backShoulderSlopeLength_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "front_shoulder_to_waist_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Front Full Length", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "NeckPoint straight down front chest to Waistline",
                                "Full measurement description");
    InitMeasurement(frontShoulderToWaistLength_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "back_shoulder_to_waist_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Back Full Length", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Back NeckPoint straight down back chest to Waistline",
                                "Full measurement description");
    InitMeasurement(backShoulderToWaistLength_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "front_neck_arc",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Front Neck arc", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "NeckPoint to NeckPoint through Front Neck Center",
                                "Full measurement description");
    InitMeasurement(frontNeckArc_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "back_neck_arc",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Back Neck arc", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "NeckPoint to NeckPoint across Nape",
                                "Full measurement description");
    InitMeasurement(backNeckArc_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "front_upper_chest_arc",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Front upper-bust arc", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Front upper-bust arc", "Full measurement description");
    InitMeasurement(frontUpperChestArc_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "back_upper_chest_arc",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Back UpperBust arc", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Back UpperBust side to side",
                                "Full measurement description");
    InitMeasurement(backUpperChestArc_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "front_waist_arc",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Front Waist arc", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Front Waist side to side", "Full measurement description");
    InitMeasurement(frontWaistArc_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "back_waist_arc",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Back Waist arc", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Back Waist side to side", "Full measurement description");
    InitMeasurement(backWaistArc_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "front_upper_hip_arc",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Front UpperHip arc", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Front UpperHip side to side",
                                "Full measurement description");
    InitMeasurement(frontUpperHipArc_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "back_upper_hip_arc",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Back UpperHip arc", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Back UpperHip side to side",
                                "Full measurement description");
    InitMeasurement(backUpperHipArc_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "front_hip_arc",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Front Hip arc", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Front Hip side to side",
                                "Full measurement description");
    InitMeasurement(frontHipArc_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "back_hip_arc",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Back Hip arc", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Back Hip side to side", "Full measurement description");
    InitMeasurement(backHipArc_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "chest_slope",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Chest Balance", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "NeckPoint to Front ArmfoldPoint",
                                "Full measurement description");
    InitMeasurement(chestSlope_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "back_slope",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Back Balance", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "NeckPoint to Back ArmfoldPoint",
                                "Full measurement description");
    InitMeasurement(backSlope_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "front_waist_slope",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Front Waist Balance", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "NeckPoint across Front Chest to Waist side",
                                "Full measurement description");
    InitMeasurement(frontWaistSlope_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "back_waist_slope",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Back Waist Balance", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "NeckPoint across Back Chest to Waist side",
                                "Full measurement description");
    InitMeasurement(backWaistSlope_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "front_neck_to_upper_chest_height",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Front UpperChest height", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Front Neck Center straight down to UpperChest line",
                                "Full measurement description");
    InitMeasurement(frontNeckToUpperChestHeight_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "front_neck_to_bust_height",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Bust height", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Front Neck Center straight down to Bust line",
                                "Full measurement description");
    InitMeasurement(frontNeckToBustHeight_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "front_waist_to_upper_chest",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Front Upper chest waist", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Front Upper chest waist",
                                "Full measurement description");
    InitMeasurement(frontWaistToUpperChest_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "front_waist_to_lower_breast",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Front waist to lower breast", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Front waist to lower breast",
                                "Full measurement description");
    InitMeasurement(frontWaistToLowerBreast_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "back_waist_to_upper_chest",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Back waist to upper chest", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Back waist to upper chest",
                                "Full measurement description");
    InitMeasurement(backWaistToUpperChest_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "strap_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Strap length", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Strap length",
                                "Full measurement description");
    InitMeasurement(strapLength_M, m, g, d);
    //=================================================================================================================
    // arm
    m = VTranslation::translate("Measurements", "armscye_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Armscye Girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around Armscye", "Full measurement description");
    InitMeasurement(armscyeGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "elbow_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Elbow Girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around Elbow with elbow bent",
                                "Full measurement description");
    InitMeasurement(elbowGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "upper_arm_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Upperarm Girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around UpperArm", "Full measurement description");
    InitMeasurement(upperArmGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "wrist_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Wrist girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around Wrist", "Full measurement description");
    InitMeasurement(wristGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "scye_depth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Armscye depth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Nape straight down to UnderBust line (same as Back "
                                "UpperBust height)", "Full measurement description");
    InitMeasurement(scyeDepth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "shoulder_and_arm_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Shoulder and Arm length", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "NeckPoint to ShoulderTip to Wrist, with elbow bent and "
                                "hand on hip", "Full measurement description");
    InitMeasurement(shoulderAndArmLength_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "underarm_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Underarm length", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Armpit to Wrist, with arm straight and hanging at side",
                                "Full measurement description");
    InitMeasurement(underarmLength_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "cervicale_to_wrist_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Nape to wrist length", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Nape to Wrist, with elbow bent and hand on hip",
                                "Full measurement description");
    InitMeasurement(cervicaleToWristLength_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "shoulder_to_elbow_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Elbow length", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "ShoulderTip to Elbow, with elbow bent and hand on hip",
                                "Full measurement description");
    InitMeasurement(shoulderToElbowLength_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "arm_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Arm length", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "ShoulderTip to Wrist, with elbow bent and hand on hip",
                                "Full measurement description");
    InitMeasurement(armLength_M, m, g, d);
    //=================================================================================================================
    // hand
    m = VTranslation::translate("Measurements", "hand_width",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Hand width", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Hand side to side", "Full measurement description");
    InitMeasurement(handWidth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "hand_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Hand length", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Hand Middle Finger tip to wrist",
                                "Full measurement description");
    InitMeasurement(handLength_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "hand_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Hand girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around Hand", "Full measurement description");
    InitMeasurement(handGirth_M, m, g, d);
    //=================================================================================================================
    // leg
    m = VTranslation::translate("Measurements", "thigh_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Thigh girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around Thigh", "Full measurement description");
    InitMeasurement(thighGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "mid_thigh_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Midthigh girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around MidThigh", "Full measurement description");
    InitMeasurement(midThighGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "knee_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Knee girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around Knee", "Full measurement description");
    InitMeasurement(kneeGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "calf_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Calf girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around Calf", "Full measurement description");
    InitMeasurement(calfGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "ankle_girth",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Ankle girth", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Around Ankle", "Full measurement description");
    InitMeasurement(ankleGirth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "knee_height",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Knee height", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Knee to Floor", "Full measurement description");
    InitMeasurement(kneeHeight_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "ankle_height",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Ankle height", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Ankle to Floor", "Full measurement description");
    InitMeasurement(ankleHeight_M, m, g, d);
    //=================================================================================================================
    // foot
    m = VTranslation::translate("Measurements", "foot_width",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Foot width", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Widest part of Foot side to side",
                                "Full measurement description");
    InitMeasurement(footWidth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "foot_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Foot length", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Tip of Longest Toe straight to back of heel",
                                "Full measurement description");
    InitMeasurement(footLength_M, m, g, d);
    //=================================================================================================================
    // heights
    m = VTranslation::translate("Measurements", "height",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Total Height", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Top of head to floor", "Full measurement description");
    InitMeasurement(height_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "cervicale_height",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Nape height", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Nape to Floor", "Full measurement description");
    InitMeasurement(cervicaleHeight_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "cervicale_to_knee_height",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Nape to knee height", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Nape to Knee", "Full measurement description");
    InitMeasurement(cervicaleToKneeHeight_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "waist_height",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Waist height", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Waist side to floor", "Full measurement description");
    InitMeasurement(waistHeight_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "high_hip_height",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "HighHip height", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "HighHip side to Floor", "Full measurement description");
    InitMeasurement(highHipHeight_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "hip_height",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Hip height", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Hip side to Floor", "Full measurement description");
    InitMeasurement(hipHeight_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "waist_to_hip_height",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Waist to Hip height", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Waist side to Hip", "Full measurement description");
    InitMeasurement(waistToHipHeight_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "waist_to_knee_height",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Waist to Knee height", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Waist side to Knee", "Full measurement description");
    InitMeasurement(waistToKneeHeight_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "crotch_height",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Crotch height/Inseam", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Crotch to Floor along inside leg",
                                "Full measurement description");
    InitMeasurement(crotchHeight_M, m, g, d);
    //=================================================================================================================
    //extended
    m = VTranslation::translate("Measurements", "size", "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Size", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Size", "Full measurement description");
    InitMeasurement(size_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "height_front_neck_base_point",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Height front neck base point", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Height of the point base of the neck in front",
                                "Full measurement description");
    InitMeasurement(heightFrontNeckBasePoint_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "height_base_neck_side_point",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Height base neck side point", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Height of the base of the neck side point",
                                "Full measurement description");
    InitMeasurement(heightBaseNeckSidePoint_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "height_shoulder_point",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Height shoulder point", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "The height of the shoulder point",
                                "Full measurement description");
    InitMeasurement(heightShoulderPoint_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "height_nipple_point",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Height nipple point", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Height nipple point", "Full measurement description");
    InitMeasurement(heightNipplePoint_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "height_back_angle_axilla",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Height back angle axilla", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Height back angle axilla", "Full measurement description");
    InitMeasurement(heightBackAngleAxilla_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "height_scapular_point",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Height scapular point", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Height scapular point", "Full measurement description");
    InitMeasurement(heightScapularPoint_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "height_under_buttock_folds",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Height under buttock folds", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Height under buttock folds",
                                "Full measurement description");
    InitMeasurement(heightUnderButtockFolds_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "hips_excluding_protruding_abdomen",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Hips excluding protruding abdomen", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Hips excluding protruding abdomen",
                                "Full measurement description");
    InitMeasurement(hipsExcludingProtrudingAbdomen_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "girth_foot_instep",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Girth foot instep", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Girth foot instep", "Full measurement description");
    InitMeasurement(girthFootInstep_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "side_waist_to_floor",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Side waist to floor", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "The distance from the side waist to floor",
                                "Full measurement description");
    InitMeasurement(sideWaistToFloor_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "front_waist_to_floor",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Front waist to floor", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "The distance from the front waist to floor",
                                "Full measurement description");
    InitMeasurement(frontWaistToFloor_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "arc_through_groin_area",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Arc through groin area", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Arc through groin area", "Full measurement description");
    InitMeasurement(arcThroughGroinArea_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "waist_to_plane_seat",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Waist to plane seat", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "The distance from the waist to the plane seat",
                                "Full measurement description");
    InitMeasurement(waistToPlaneSeat_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "neck_to_radial_point",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Neck to radial point", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "The distance from the base of the neck to the side of the "
                                "radial point", "Full measurement description");
    InitMeasurement(neckToRadialPoint_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "neck_to_third_finger",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Neck to third finger", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Distance from the base of the neck side point to the end "
                                "of the third finger", "Full measurement description");
    InitMeasurement(neckToThirdFinger_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "neck_to_first_line_chest_circumference",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Neck to first line chest circumference",
                                "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "The distance from the base of the neck to the side of the "
                                "first line in front of chest circumference", "Full measurement description");
    InitMeasurement(neckToFirstLineChestCircumference_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "front_waist_length",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Front waist length", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "The distance from the base of the neck to the waist side "
                                "front (waist length in the front)", "Full measurement description");
    InitMeasurement(frontWaistLength_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "arc_through_shoulder_joint",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Arc through shoulder joint", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Arc through the highest point of the shoulder joint",
                                "Full measurement description");
    InitMeasurement(arcThroughShoulderJoint_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "neck_to_back_line_chest_circumference",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Neck to back line chest circumference",
                                "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "The distance from the base of the neck to the back line "
                                "of chest circumference of the first and the second based on ledge vanes",
                                "Full measurement description");
    InitMeasurement(neckToBackLineChestCircumference_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "waist_to_neck_side",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Waist to neck side", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "The distance from the waist to the back base of the neck "
                                "side point", "Full measurement description");
    InitMeasurement(waistToNeckSide_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "arc_length_upper_body",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Arc length upper body", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Arc length of the upper body through the base of the neck "
                                "side point", "Full measurement description");
    InitMeasurement(arcLengthUpperBody_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "chest_width",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Chest width", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Chest width", "Full measurement description");
    InitMeasurement(chestWidth_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "anteroposterior_diameter_hands",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Anteroposterior diameter hands", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Anteroposterior diameter of the hands",
                                "Full measurement description");
    InitMeasurement(anteroposteriorDiameterHands_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "height_clavicular_point",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Height clavicular point", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Height clavicular point", "Full measurement description");
    InitMeasurement(heightClavicularPoint_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "height_armhole_slash",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Height armhole slash", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "The distance from the point to the cervical level of the "
                                "posterior angle of the front armpit (underarm height oblique)",
                                "Full measurement description");
    InitMeasurement(heightArmholeSlash_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "slash_shoulder_height",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Slash shoulder height", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Slash shoulder height", "Full measurement description");
    InitMeasurement(slashShoulderHeight_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "half_girth_neck",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Half girth neck", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Half girth neck", "Full measurement description");
    InitMeasurement(halfGirthNeck_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "half_girth_neck_for_shirts",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Half girth neck for shirts", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Half girth neck for shirts",
                                "Full measurement description");
    InitMeasurement(halfGirthNeckForShirts_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "half_girth_chest_first",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Half girth chest first", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Half girth chest first", "Full measurement description");
    InitMeasurement(halfGirthChestFirst_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "half_girth_chest_second",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Half girth chest second", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Half girth chest second", "Full measurement description");
    InitMeasurement(halfGirthChestSecond_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "half_girth_chest_third",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Half girth chest third", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Half girth chest third", "Full measurement description");
    InitMeasurement(halfGirthChestThird_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "half_girth_waist",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Half girth waist", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Half girth waist", "Full measurement description");
    InitMeasurement(halfGirthWaist_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "half_girth_hips_considering_protruding_abdomen",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Half girth hips considering protruding abdomen",
                                "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Half girth hips considering protruding abdomen",
                                "Full measurement description");
    InitMeasurement(halfGirthHipsConsideringProtrudingAbdomen_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "half_girth_hips_excluding_protruding_abdomen",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Half girth hips excluding protruding abdomen",
                                "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Half girth hips excluding protruding abdomen",
                                "Full measurement description");
    InitMeasurement(halfGirthHipsExcludingProtrudingAbdomen_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "girth_knee_flexed_feet",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Girth knee flexed feet", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Girth knee flexed feet", "Full measurement description");
    InitMeasurement(girthKneeFlexedFeet_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "neck_transverse_diameter",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Neck transverse diameter", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Neck transverse diameter", "Full measurement description");
    InitMeasurement(neckTransverseDiameter_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "front_slash_shoulder_height",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Front slash shoulder height", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Front slash shoulder height",
                                "Full measurement description");
    InitMeasurement(frontSlashShoulderHeight_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "neck_to_front_waist_line",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Neck to front waist line", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "The distance from the base of the neck to the waist line "
                                "front", "Full measurement description");
    InitMeasurement(neckToFrontWaistLine_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "hand_vertical_diameter",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Hand vertical diameter", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Hand vertical diameter", "Full measurement description");
    InitMeasurement(handVerticalDiameter_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "neck_to_knee_point",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Neck to knee point", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Distance from neck to knee point",
                                "Full measurement description");
    InitMeasurement(neckToKneePoint_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "waist_to_knee",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Waist to knee", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "The distance from the waist to the knee",
                                "Full measurement description");
    InitMeasurement(waistToKnee_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "shoulder_height",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Shoulder height", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Shoulder height", "Full measurement description");
    InitMeasurement(shoulderHeight_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "head_height",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Head height", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Head height", "Full measurement description");
    InitMeasurement(headHeight_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "body_position",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Body position", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Body position", "Full measurement description");
    InitMeasurement(bodyPosition_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "arc_behind_shoulder_girdle",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Arc behind shoulder girdle", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Arc behind the shoulder girdle",
                                "Full measurement description");
    InitMeasurement(arcBehindShoulderGirdle_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "neck_to_neck_base",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Neck to neck base", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Distance from neck point to point on the base of the neck "
                                "side neck girth measurement line", "Full measurement description");
    InitMeasurement(neckToNeckBase_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "depth_waist_first",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Depth waist first", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Depth waist first", "Full measurement description");
    InitMeasurement(depthWaistFirst_M, m, g, d);
    //=================================================================================================================
    m = VTranslation::translate("Measurements", "depth_waist_second",
                                "Short measurement name. Don't use math symbols in name!!!!");
    g = VTranslation::translate("MeasurementsFullNames", "Depth waist second", "Full measurement name");
    d = VTranslation::translate("MeasurementsDescriptions", "Depth waist second", "Full measurement description");
    InitMeasurement(depthWaistSecond_M, m, g, d);
}

//---------------------------------------------------------------------------------------------------------------------
void VApplication::InitVariables()
{
    variables.insert(line_, VTranslation::translate("Variables", "Line_", "Left symbol _ in name"));
    variables.insert(angleLine_, VTranslation::translate("Variables", "AngleLine_", "Left symbol _ in name"));
    variables.insert(arc_, VTranslation::translate("Variables", "Arc_", "Left symbol _ in name"));
    variables.insert(spl_, VTranslation::translate("Variables", "Spl_", "Left symbol _ in name"));
    variables.insert(splPath, VTranslation::translate("Variables", "SplPath",
                                                      "Do not add symbol _ to the end of name"));
}

//---------------------------------------------------------------------------------------------------------------------
void VApplication::InitFunctions()
{
    functions.insert(sin_F, VTranslation::translate("Functions", "sin", "sine function"));
    functions.insert(cos_F, VTranslation::translate("Functions", "cos", "cosine function"));
    functions.insert(tan_F, VTranslation::translate("Functions", "tan", "tangens function"));
    functions.insert(asin_F, VTranslation::translate("Functions", "asin", "arcus sine function"));
    functions.insert(acos_F, VTranslation::translate("Functions", "acos", "arcus cosine function"));
    functions.insert(atan_F, VTranslation::translate("Functions", "atan", "arcus tangens function"));
    functions.insert(sinh_F, VTranslation::translate("Functions", "sinh", "hyperbolic sine function"));
    functions.insert(cosh_F, VTranslation::translate("Functions", "cosh", "hyperbolic cosine"));
    functions.insert(tanh_F, VTranslation::translate("Functions", "tanh", "hyperbolic tangens function"));
    functions.insert(asinh_F, VTranslation::translate("Functions", "asinh", "hyperbolic arcus sine function"));
    functions.insert(acosh_F, VTranslation::translate("Functions", "acosh", "hyperbolic arcus tangens function"));
    functions.insert(atanh_F, VTranslation::translate("Functions", "atanh", "hyperbolic arcur tangens function"));
    functions.insert(log2_F, VTranslation::translate("Functions", "log2", "logarithm to the base 2"));
    functions.insert(log10_F, VTranslation::translate("Functions", "log10", "logarithm to the base 10"));
    functions.insert(log_F, VTranslation::translate("Functions", "log", "logarithm to the base 10"));
    functions.insert(ln_F, VTranslation::translate("Functions", "ln", "logarithm to base e (2.71828...)"));
    functions.insert(exp_F, VTranslation::translate("Functions", "exp", "e raised to the power of x"));
    functions.insert(sqrt_F, VTranslation::translate("Functions", "sqrt", "square root of a value"));
    functions.insert(sign_F, VTranslation::translate("Functions", "sign", "sign function -1 if x<0; 1 if x>0"));
    functions.insert(rint_F, VTranslation::translate("Functions", "rint", "round to nearest integer"));
    functions.insert(abs_F, VTranslation::translate("Functions", "abs", "absolute value"));
    functions.insert(min_F, VTranslation::translate("Functions", "min", "min of all arguments"));
    functions.insert(max_F, VTranslation::translate("Functions", "max", "max of all arguments"));
    functions.insert(sum_F, VTranslation::translate("Functions", "sum", "sum of all arguments"));
    functions.insert(avg_F, VTranslation::translate("Functions", "avg", "mean value of all arguments"));
}

//---------------------------------------------------------------------------------------------------------------------
void VApplication::InitPostfixOperators()
{
    postfixOperators.insert(cm_Oprt, VTranslation::translate("PostfixOperators", "cm", "centimeter"));
    postfixOperators.insert(mm_Oprt, VTranslation::translate("PostfixOperators", "mm", "millimeter"));
    postfixOperators.insert(in_Oprt, VTranslation::translate("PostfixOperators", "in", "inch"));
}

//---------------------------------------------------------------------------------------------------------------------
void VApplication::InitSTDescriptions()
{
    stDescriptions.insert("0", VTranslation::translate("STDescriptions",
                                                       "Standard figures of men 1st group, chest 100 cm",
                                                       "Standard table description"));
}

//---------------------------------------------------------------------------------------------------------------------
bool VApplication::MeasurementsFromUser(QString &newFormula, int position, const QString &token, int &bias) const
{
    QMap<QString, VTranslation>::const_iterator i = measurements.constBegin();
    while (i != measurements.constEnd())
    {
        if (token == i.value().translate())
        {
            newFormula.replace(position, token.length(), i.key());
            bias = token.length() - i.key().length();
            return true;
        }
        ++i;
    }
    return false;
}

//---------------------------------------------------------------------------------------------------------------------
bool VApplication::VariablesFromUser(QString &newFormula, int position, const QString &token, int &bias) const
{
    QMap<QString, VTranslation>::const_iterator i = variables.constBegin();
    while (i != variables.constEnd())
    {
        if (token.indexOf( i.value().translate() ) == 0)
        {
            newFormula.replace(position, i.value().translate().length(), i.key());
            QString newToken = token;
            newToken.replace(0, i.value().translate().length(), i.key());
            bias = token.length() - newToken.length();
            return true;
        }
        ++i;
    }
    return false;
}

//---------------------------------------------------------------------------------------------------------------------
bool VApplication::PostfixOperatorsFromUser(QString &newFormula, int position, const QString &token, int &bias) const
{
    QMap<QString, VTranslation>::const_iterator i = postfixOperators.constBegin();
    while (i != postfixOperators.constEnd())
    {
        if (token == i.value().translate())
        {
            newFormula.replace(position, token.length(), i.key());
            bias = token.length() - i.key().length();
            return true;
        }
        ++i;
    }
    return false;
}

//---------------------------------------------------------------------------------------------------------------------
bool VApplication::FunctionsFromUser(QString &newFormula, int position, const QString &token, int &bias) const
{
    QMap<QString, VTranslation>::const_iterator i = functions.constBegin();
    while (i != functions.constEnd())
    {
        if (token == i.value().translate())
        {
            newFormula.replace(position, token.length(), i.key());
            bias = token.length() - i.key().length();
            return true;
        }
        ++i;
    }
    return false;
}

//---------------------------------------------------------------------------------------------------------------------
bool VApplication::VariablesToUser(QString &newFormula, int position, const QString &token, int &bias) const
{
    QMap<QString, VTranslation>::const_iterator i = variables.constBegin();
    while (i != variables.constEnd())
    {
        if (token.indexOf( i.key() ) == 0)
        {
            newFormula.replace(position, i.key().length(), i.value().translate());

            QString newToken = token;
            newToken.replace(0, i.key().length(), i.value().translate());
            bias = token.length() - newToken.length();
            return true;
        }
        ++i;
    }
    return false;
}

void VApplication::CorrectionsPositions(int position, int bias, QMap<int, QString> &tokens,
                                        QMap<int, QString> &numbers)
{
    if (bias == 0)
    {
        return;
    }

    BiasTokens(position, bias, tokens);
    BiasTokens(position, bias, numbers);
}

void VApplication::BiasTokens(int position, int bias, QMap<int, QString> &tokens) const
{
    QMap<int, QString> newTokens;
    QMap<int, QString>::const_iterator i = tokens.constBegin();
    while (i != tokens.constEnd())
    {
        if (i.key()<= position)
        {
            newTokens.insert(i.key(), i.value());
        }
        else
        {
            newTokens.insert(i.key()-bias, i.value());
        }
        ++i;
    }
    tokens = newTokens;
}

//---------------------------------------------------------------------------------------------------------------------
void VApplication::setPatternUnit(const Unit &patternUnit)
{
    _patternUnit = patternUnit;
    InitLineWidth();
}

//---------------------------------------------------------------------------------------------------------------------
QString VApplication::VarToUser(const QString &var) const
{
    if (measurements.contains(var))
    {
        return measurements.value(var).translate();
    }

    if (functions.contains(var))
    {
        return functions.value(var).translate();
    }

    if (postfixOperators.contains(var))
    {
        return postfixOperators.value(var).translate();
    }

    QString newVar = var;
    int bias = 0;
    if (VariablesToUser(newVar, 0, var, bias))
    {
        return newVar;
    }
    return newVar;
}

//---------------------------------------------------------------------------------------------------------------------
QString VApplication::VarFromUser(const QString &var) const
{
    QString newVar = var;
    int bias = 0;
    if (MeasurementsFromUser(newVar, 0, var, bias))
    {
        return newVar;
    }

    if (VariablesFromUser(newVar, 0, var, bias))
    {
        return newVar;
    }

    if (PostfixOperatorsFromUser(newVar, 0, var, bias))
    {
        return newVar;
    }

    if (FunctionsFromUser(newVar, 0, var, bias))
    {
        return newVar;
    }
    return newVar;
}

//---------------------------------------------------------------------------------------------------------------------
QString VApplication::GuiText(const QString &measurement) const
{
    return guiTexts.value(measurement).translate();
}

//---------------------------------------------------------------------------------------------------------------------
QString VApplication::Description(const QString &measurement) const
{
    return descriptions.value(measurement).translate();
}

//---------------------------------------------------------------------------------------------------------------------
QString VApplication::PostfixOperator(const QString &name) const
{
    return postfixOperators.value(name).translate();
}

//---------------------------------------------------------------------------------------------------------------------
QString VApplication::FormulaFromUser(const QString &formula)
{
    QString newFormula = formula;

    Calculator *cal = new Calculator(formula);
    QMap<int, QString> tokens = cal->GetTokens();
    QMap<int, QString> numbers = cal->GetNumbers();
    delete cal;

    QList<int> tKeys = tokens.keys();
    QList<QString> tValues = tokens.values();
    for (int i = 0; i < tKeys.size(); ++i)
    {
        int bias = 0;
        if (MeasurementsFromUser(newFormula, tKeys.at(i), tValues.at(i), bias))
        {
            if (bias != 0)
            {
                CorrectionsPositions(tKeys.at(i), bias, tokens, numbers);
                tKeys = tokens.keys();
                tValues = tokens.values();
            }
            continue;
        }

        if (VariablesFromUser(newFormula, tKeys.at(i), tValues.at(i), bias))
        {
            if (bias != 0)
            {
                CorrectionsPositions(tKeys.at(i), bias, tokens, numbers);
                tKeys = tokens.keys();
                tValues = tokens.values();
            }
            continue;
        }

        if (PostfixOperatorsFromUser(newFormula, tKeys.at(i), tValues.at(i), bias))
        {
            if (bias != 0)
            {
                CorrectionsPositions(tKeys.at(i), bias, tokens, numbers);
                tKeys = tokens.keys();
                tValues = tokens.values();
            }
            continue;
        }

        if (FunctionsFromUser(newFormula, tKeys.at(i), tValues.at(i), bias))
        {
            if (bias != 0)
            {
                CorrectionsPositions(tKeys.at(i), bias, tokens, numbers);
                tKeys = tokens.keys();
                tValues = tokens.values();
            }
            continue;
        }
    }

    bool osSeparatorValue = getSettings()->value("configuration/osSeparator", 1).toBool();

    QLocale loc = QLocale::system();
    if (loc != QLocale(QLocale::C) && osSeparatorValue)
    {
        QList<int> nKeys = numbers.keys();
        QList<QString> nValues = numbers.values();
        for (int i = 0; i < nKeys.size(); ++i)
        {
            bool ok = false;
            qreal d = loc.toDouble(nValues.at(i), &ok);
            if (ok == false)
            {
                qDebug()<<"Can't convert to double token"<<nValues.at(i);
                continue;
            }
            if (qFloor (d) < d)
            {
                QLocale loc = QLocale(QLocale::C);
                QString dStr = loc.toString(d);
                newFormula.replace(nKeys.at(i), nValues.at(i).length(), dStr);
                int bias = nValues.at(i).length() - dStr.length();
                if (bias != 0)
                {
                    CorrectionsPositions(nKeys.at(i), bias, tokens, numbers);
                    nKeys = numbers.keys();
                    nValues = numbers.values();
                }
            }

        }
    }

    return newFormula;
}

//---------------------------------------------------------------------------------------------------------------------
QString VApplication::FormulaToUser(const QString &formula)
{
    QString newFormula = formula;

    QMap<int, QString> tokens;
    QMap<int, QString> numbers;
    try
    {
        Calculator *cal = new Calculator(formula, false);
        tokens = cal->GetTokens();
        numbers = cal->GetNumbers();
        delete cal;
    }
    catch (qmu::QmuParserError &e)
    {
        qDebug() << "\nMath parser error:\n"
                 << "--------------------------------------\n"
                 << "Message:     " << e.GetMsg()  << "\n"
                 << "Expression:  " << e.GetExpr() << "\n"
                 << "--------------------------------------";
        return newFormula;
    }

    QList<int> tKeys = tokens.keys();
    QList<QString> tValues = tokens.values();
    for (int i = 0; i < tKeys.size(); ++i)
    {
        if (measurements.contains(tValues.at(i)))
        {
            newFormula.replace(tKeys.at(i), tValues.at(i).length(), measurements.value(tValues.at(i)).translate());
            int bias = tValues.at(i).length() - measurements.value(tValues.at(i)).translate().length();
            if (bias != 0)
            {
                CorrectionsPositions(tKeys.at(i), bias, tokens, numbers);
                tKeys = tokens.keys();
                tValues = tokens.values();
            }
            continue;
        }

        if (functions.contains(tValues.at(i)))
        {
            newFormula.replace(tKeys.at(i), tValues.at(i).length(), functions.value(tValues.at(i)).translate());
            int bias = tValues.at(i).length() - functions.value(tValues.at(i)).translate().length();
            if (bias != 0)
            {
                CorrectionsPositions(tKeys.at(i), bias, tokens, numbers);
                tKeys = tokens.keys();
                tValues = tokens.values();
            }
            continue;
        }

        if (postfixOperators.contains(tValues.at(i)))
        {
            newFormula.replace(tKeys.at(i), tValues.at(i).length(), postfixOperators.value(tValues.at(i)).translate());
            int bias = tValues.at(i).length() - postfixOperators.value(tValues.at(i)).translate().length();
            if (bias != 0)
            {
                CorrectionsPositions(tKeys.at(i), bias, tokens, numbers);
                tKeys = tokens.keys();
                tValues = tokens.values();
            }
            continue;
        }

        int bias = 0;
        if (VariablesToUser(newFormula, tKeys.at(i), tValues.at(i), bias))
        {
            if (bias != 0)
            {
                CorrectionsPositions(tKeys.at(i), bias, tokens, numbers);
                tKeys = tokens.keys();
                tValues = tokens.values();
            }
            continue;
        }
    }

    bool osSeparatorValue = getSettings()->value("configuration/osSeparator", 1).toBool();

    QLocale loc = QLocale::system();
    if (loc != QLocale::C && osSeparatorValue)
    {
        QList<int> nKeys = numbers.keys();
        QList<QString> nValues = numbers.values();
        for (int i = 0; i < nKeys.size(); ++i)
        {
            QLocale loc = QLocale(QLocale::C);
            bool ok = false;
            qreal d = loc.toDouble(nValues.at(i), &ok);
            if (ok == false)
            {
                qDebug()<<"Can't convert to double token"<<nValues.at(i);
                continue;
            }
            if (qFloor (d) < d)
            {
                QLocale loc = QLocale::system();
                QString dStr = loc.toString(d);
                newFormula.replace(nKeys.at(i), nValues.at(i).length(), dStr);
                int bias = nValues.at(i).length() - dStr.length();

                if (bias != 0)
                {
                    CorrectionsPositions(nKeys.at(i), bias, tokens, numbers);
                    nKeys = numbers.keys();
                    nValues = numbers.values();
                }
            }
        }
    }

    return newFormula;
}

//---------------------------------------------------------------------------------------------------------------------
QWidget *VApplication::getMainWindow() const
{
    return mainWindow;
}

//---------------------------------------------------------------------------------------------------------------------
void VApplication::setMainWindow(QWidget *value)
{
    SCASSERT(value != nullptr)
    mainWindow = value;
}

//---------------------------------------------------------------------------------------------------------------------
bool VApplication::getOpeningPattern() const
{
    return openingPattern;
}

//---------------------------------------------------------------------------------------------------------------------
void VApplication::setOpeningPattern()
{
    openingPattern = !openingPattern;
}

//---------------------------------------------------------------------------------------------------------------------
/**
 * @brief VApplication::OpenSettings get acsses to application settings.
 *
 * Because we can create object in constructor we open file separately.
 */
void VApplication::OpenSettings()
{
    settings = new QSettings(QSettings::IniFormat, QSettings::UserScope, QApplication::organizationName(),
                             QApplication::applicationName(), this);
}

//---------------------------------------------------------------------------------------------------------------------
/**
 * @brief VApplication::getSettings hide settings constructor.
 * @return pointer to class for acssesing to settings in ini file.
 */
QSettings *VApplication::getSettings()
{
    SCASSERT(settings != nullptr);
    return settings;
}

//---------------------------------------------------------------------------------------------------------------------
VMainGraphicsScene *VApplication::getCurrentScene() const
{
    SCASSERT(currentScene != nullptr);
    return currentScene;
}

//---------------------------------------------------------------------------------------------------------------------
void VApplication::setCurrentScene(VMainGraphicsScene *value)
{
    currentScene = value;
}

//---------------------------------------------------------------------------------------------------------------------
void VApplication::setOverrideCursor(const QString &pixmapPath, int hotX, int hotY)
{
#ifndef QT_NO_CURSOR
    QPixmap oldPixmap;
    if (QCursor *oldCursor = QGuiApplication::overrideCursor())
    {
        oldPixmap = oldCursor->pixmap();
    }
    QPixmap newPixmap(pixmapPath);

    QImage oldImage = oldPixmap.toImage();
    QImage newImage = newPixmap.toImage();

    if (oldImage != newImage )
    {
        QApplication::setOverrideCursor(QCursor(newPixmap, hotX, hotY));
    }
#endif
}

//---------------------------------------------------------------------------------------------------------------------
void VApplication::restoreOverrideCursor(const QString &pixmapPath)
{
#ifndef QT_NO_CURSOR
    QPixmap oldPixmap;
    if (QCursor *oldCursor = QGuiApplication::overrideCursor())
    {
        oldPixmap = oldCursor->pixmap();
    }
    QPixmap newPixmap(pixmapPath);

    QImage oldImage = oldPixmap.toImage();
    QImage newImage = newPixmap.toImage();

    if (oldImage == newImage )
    {
        QApplication::restoreOverrideCursor();
    }
#endif
}

//---------------------------------------------------------------------------------------------------------------------
QStringList VApplication::LabelLanguages()
{
    QStringList list = QStringList() << "de" // German
                                     << "en" // English
                                     << "fr" // French
                                     << "ru" // Russian
                                     << "uk" // Ukrainian
                                     << "hr" // Croatian
                                     << "sr" // Serbian
                                     << "bs"; // Bosnian
    return list;
}

//---------------------------------------------------------------------------------------------------------------------
QString VApplication::STDescription(const QString &id) const
{
    if (stDescriptions.contains(id))
    {
        return stDescriptions.value(id).translate();
    }
    else
    {
        qWarning()<<"Unknown id number. Got"<<id;
    }
    return QString();
}

//---------------------------------------------------------------------------------------------------------------------
bool VApplication::SafeCopy(const QString &source, const QString &destination, QString &error)
{
    bool result = false;

#ifdef Q_OS_WIN32
    qt_ntfs_permission_lookup++; // turn checking on
#endif /*Q_OS_WIN32*/

    QFile patternFile(destination);
    patternFile.setPermissions(QFile::ReadOwner | QFile::WriteOwner);
    // We need here temporary file because we want restore document after error of copying temp file.
    QTemporaryFile tempOfPattern;
    if (tempOfPattern.open())
    {
        if (patternFile.exists())
        {
            patternFile.copy(tempOfPattern.fileName());
        }
    }
    if ( patternFile.exists() == false || patternFile.remove() )
    {
        QFile sourceFile(source);
        if ( sourceFile.copy(patternFile.fileName()) == false )
        {
            error = tr("Could not copy temp file to document file");
            tempOfPattern.copy(destination);
            result = false;
        }
        else
        {
            result = true;
        }
    }
    else
    {
        error = tr("Could not remove document file");
        result = false;
    }

#ifdef Q_OS_WIN32
    qt_ntfs_permission_lookup--; // turn off check permission again
#endif /*Q_OS_WIN32*/

    return result;
}

#if defined(Q_OS_WIN) && defined(Q_CC_GNU)
//---------------------------------------------------------------------------------------------------------------------
// Catch exception and create report. Use if program build with Mingw compiler.
// See more about catcher https://github.com/jrfonseca/drmingw/blob/master/README.md
void VApplication::DrMingw()
{
    QFile drmingw("exchndl.dll");
    if(drmingw.exists())
    {// If don't want create reports just delete exchndl.dll from installer
        LoadLibrary(L"exchndl.dll");
    }
}

//---------------------------------------------------------------------------------------------------------------------
void VApplication::CollectReports() const
{
    // Seek file "binary_name.RPT"
    const QString reportName = QString("%1/%2.RPT").arg(applicationDirPath())
            .arg(QFileInfo(arguments().at(0)).baseName());
    QFile reportFile(reportName);
    if (reportFile.exists())
    { // Hooray we have found crash
        if (settings == nullptr)
        {
            return;// Settings was not opened.
        }

        if (settings->value("configuration/send_report/state", 1).toBool())
        { // Try send report
            // Remove gist.json file before close app.
            connect(this, &VApplication::aboutToQuit, this, &VApplication::CleanGist, Qt::UniqueConnection);
            SendReport(reportName);
        }
        else
        { // Just collect report to /reports directory
            CollectReport(reportName);
        }
    }
}

//---------------------------------------------------------------------------------------------------------------------
void VApplication::CollectReport(const QString &reportName) const
{
    const QString reportsDir = QString("%1/reports").arg(qApp->applicationDirPath());
    QDir reports(reportsDir);
    if (reports.exists() == false)
    {
        reports.mkpath("."); // Create directory for reports if need
    }

    const QDateTime now = QDateTime::currentDateTime();
    const QString timestamp = now.toString(QLatin1String("yyyyMMdd-hhmmsszzz"));
    const QString filename = QString("%1/reports/crash-%2.RPT").arg(qApp->applicationDirPath()).arg(timestamp);

    QFile reportFile(reportName);
    reportFile.copy(filename); // Collect new crash
    reportFile.remove(); // Clear after yourself
}

//---------------------------------------------------------------------------------------------------------------------
void VApplication::CleanGist() const
{
    QFile gistFile(GistFileName);
    if (gistFile.exists())
    {
        gistFile.remove();
    }
}

//---------------------------------------------------------------------------------------------------------------------
void VApplication::SendReport(const QString &reportName) const
{
    QString content;
    QFile reportFile(reportName);
    if (!reportFile.open(QIODevice::ReadOnly | QIODevice::Text))
    {
        return;
    }

    QTextStream in(&reportFile);
    while (!in.atEnd())
    {
        content.append(in.readLine()+"\r\n");// Windows end of line
    }
    reportFile.close();

    // Additional information
    content.append(QString("-------------------------------")+"\r\n");
    content.append(QString("Version:%1").arg(APP_VERSION)+"\r\n");
    content.append(QString("Based on Qt %2 (32 bit)").arg(QT_VERSION_STR)+"\r\n");
    content.append(QString("Built on %3 at %4").arg(__DATE__).arg(__TIME__)+"\r\n");

    // Creating json with report
    // Example:
    //{
    //  "description":"Crash report",
    //  "public":"true",
    //  "files":{
    //      "file1.txt":{
    //          "content":"Report text here"
    //      }
    //  }
    //}

    // Useful to know when crash was created
    const QDateTime now = QDateTime::currentDateTime();
    const QString timestamp = now.toString(QLatin1String("yyyy/MM/dd hh:mm:ss:zzz"));
    const QString report = QString("Crash report was created %2").arg(timestamp);

    QJsonObject reportObject;
    reportObject.insert(QStringLiteral("description"), QJsonValue(report));
    reportObject.insert(QStringLiteral("public"), QJsonValue(QString("true")));

    QJsonObject contentObject;
    contentObject.insert(QStringLiteral("content"), QJsonValue(content));

    QJsonObject fileObject;
    fileObject.insert(QFileInfo(reportName).fileName(), QJsonValue(contentObject));
    reportObject.insert(QStringLiteral("files"), QJsonValue(fileObject));

    QFile gistFile(GistFileName);
    if (!gistFile.open(QIODevice::WriteOnly | QIODevice::Truncate | QIODevice::Text))
    {
        qDebug("Couldn't open gist file.");
        return;
    }

    // Save data to file
    QJsonDocument saveRep(reportObject);
    gistFile.write(saveRep.toJson());
    gistFile.close();

    QFile curlFile("curl.exe");
    if (curlFile.exists())
    {// Trying send report
        // Change token 28df778e0ef75e3724f7b9622fb70b9c69187779 if need
        QString arg = QString("curl.exe -k -H \"Authorization: bearer 28df778e0ef75e3724f7b9622fb70b9c69187779\" "
                              "-H \"Accept: application/json\" -H \"Content-type: application/json\" -X POST "
                              "--data @gist.json https://api.github.com/gists");
        QProcess::startDetached(arg);
        reportFile.remove();// Clear after yourself
    }
    else
    {// We can not send than just collect
        CollectReport(reportName);
    }
}
#endif //defined(Q_OS_WIN) && defined(Q_CC_GNU)