2015-06-18 10:45:38 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vabstractapplication.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 18 6, 2015
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2015 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
|
|
|
**
|
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
** GNU General Public License for more details.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#include "vabstractapplication.h"
|
2015-06-18 19:23:24 +02:00
|
|
|
#include "../vmisc/def.h"
|
2015-06-18 10:45:38 +02:00
|
|
|
|
2015-09-19 21:58:32 +02:00
|
|
|
#include <QLibraryInfo>
|
|
|
|
|
2015-06-18 10:45:38 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VAbstractApplication::VAbstractApplication(int &argc, char **argv)
|
2015-06-18 19:23:24 +02:00
|
|
|
:QApplication(argc, argv),
|
|
|
|
undoStack(nullptr),
|
|
|
|
mainWindow(nullptr),
|
2015-06-25 12:42:49 +02:00
|
|
|
settings(nullptr),
|
2015-09-19 21:58:32 +02:00
|
|
|
qtTranslator(nullptr),
|
|
|
|
qtxmlTranslator(nullptr),
|
|
|
|
appTranslator(nullptr),
|
|
|
|
pmsTranslator(nullptr),
|
2015-06-18 19:23:24 +02:00
|
|
|
_patternUnit(Unit::Cm),
|
|
|
|
_patternType(MeasurementsType::Individual),
|
|
|
|
currentScene(nullptr),
|
|
|
|
sceneView(nullptr),
|
|
|
|
doc(nullptr),
|
|
|
|
openingPattern(false)
|
2015-06-18 10:45:38 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VAbstractApplication::~VAbstractApplication()
|
|
|
|
{}
|
|
|
|
|
2015-06-18 19:23:24 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
Unit VAbstractApplication::patternUnit() const
|
|
|
|
{
|
|
|
|
return _patternUnit;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
const Unit *VAbstractApplication::patternUnitP() const
|
|
|
|
{
|
|
|
|
return &_patternUnit;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VAbstractApplication::setPatternUnit(const Unit &patternUnit)
|
|
|
|
{
|
|
|
|
_patternUnit = patternUnit;
|
|
|
|
}
|
|
|
|
|
2015-06-18 10:45:38 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief getSettings hide settings constructor.
|
|
|
|
* @return pointer to class for acssesing to settings in ini file.
|
|
|
|
*/
|
2015-07-24 14:06:53 +02:00
|
|
|
VCommonSettings *VAbstractApplication::Settings()
|
2015-06-18 10:45:38 +02:00
|
|
|
{
|
|
|
|
SCASSERT(settings != nullptr);
|
|
|
|
return settings;
|
|
|
|
}
|
2015-06-18 19:23:24 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QGraphicsScene *VAbstractApplication::getCurrentScene() const
|
|
|
|
{
|
|
|
|
SCASSERT(currentScene != nullptr);
|
|
|
|
return currentScene;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VAbstractApplication::setCurrentScene(QGraphicsScene *value)
|
|
|
|
{
|
|
|
|
currentScene = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VMainGraphicsView *VAbstractApplication::getSceneView() const
|
|
|
|
{
|
|
|
|
return sceneView;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VAbstractApplication::setSceneView(VMainGraphicsView *value)
|
|
|
|
{
|
|
|
|
sceneView = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
double VAbstractApplication::toPixel(double val) const
|
|
|
|
{
|
|
|
|
return ToPixel(val, _patternUnit);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
double VAbstractApplication::fromPixel(double pix) const
|
|
|
|
{
|
|
|
|
return FromPixel(pix, _patternUnit);
|
|
|
|
}
|
2015-09-19 21:58:32 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VAbstractApplication::LoadTranslation(const QString &locale)
|
|
|
|
{
|
|
|
|
if (locale.isEmpty())
|
|
|
|
{
|
|
|
|
qDebug()<<"Locale is empty.";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
qDebug()<<"Checked locale:"<<locale;
|
|
|
|
|
|
|
|
ClearTranslation();
|
|
|
|
|
|
|
|
qtTranslator = new QTranslator(this);
|
|
|
|
#if defined(Q_OS_WIN)
|
|
|
|
qtTranslator->load("qt_" + locale, translationsPath());
|
|
|
|
#else
|
|
|
|
qtTranslator->load("qt_" + locale, QLibraryInfo::location(QLibraryInfo::TranslationsPath));
|
|
|
|
#endif
|
|
|
|
installTranslator(qtTranslator);
|
|
|
|
|
|
|
|
qtxmlTranslator = new QTranslator(this);
|
|
|
|
#if defined(Q_OS_WIN)
|
|
|
|
qtxmlTranslator->load("qtxmlpatterns_" + locale, translationsPath());
|
|
|
|
#else
|
|
|
|
qtxmlTranslator->load("qtxmlpatterns_" + locale, QLibraryInfo::location(QLibraryInfo::TranslationsPath));
|
|
|
|
#endif
|
|
|
|
installTranslator(qtxmlTranslator);
|
|
|
|
|
|
|
|
appTranslator = new QTranslator(this);
|
|
|
|
appTranslator->load("valentina_" + locale, translationsPath());
|
|
|
|
installTranslator(appTranslator);
|
|
|
|
|
|
|
|
const QString system = Settings()->GetPMSystemCode();
|
|
|
|
|
|
|
|
pmsTranslator = new QTranslator(this);
|
|
|
|
pmsTranslator->load("measurements_" + system + "_" + locale, translationsPath());
|
|
|
|
installTranslator(pmsTranslator);
|
|
|
|
|
|
|
|
InitTrVars();//Very important do it after load QM files.
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VAbstractApplication::ClearTranslation()
|
|
|
|
{
|
|
|
|
if (not qtTranslator.isNull())
|
|
|
|
{
|
|
|
|
removeTranslator(qtTranslator);
|
|
|
|
delete qtTranslator;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (not qtxmlTranslator.isNull())
|
|
|
|
{
|
|
|
|
removeTranslator(qtxmlTranslator);
|
|
|
|
delete qtxmlTranslator;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (not appTranslator.isNull())
|
|
|
|
{
|
|
|
|
removeTranslator(appTranslator);
|
|
|
|
delete appTranslator;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (not pmsTranslator.isNull())
|
|
|
|
{
|
|
|
|
removeTranslator(pmsTranslator);
|
|
|
|
delete pmsTranslator;
|
|
|
|
}
|
|
|
|
}
|