2016-07-25 18:23:00 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file
|
|
|
|
** @author Valentina Zhuravska <zhuravska19(at)gmail.com>
|
|
|
|
** @date 19 7, 2016
|
|
|
|
**
|
|
|
|
** @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) 2016 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 "vabstractmainwindow.h"
|
2017-04-12 08:49:05 +02:00
|
|
|
#include "../vpropertyexplorer/checkablemessagebox.h"
|
|
|
|
#include "../vmisc/vabstractapplication.h"
|
2016-07-25 18:23:00 +02:00
|
|
|
|
2017-04-12 08:49:05 +02:00
|
|
|
#include <QStyle>
|
|
|
|
|
|
|
|
VAbstractMainWindow::VAbstractMainWindow(QWidget *parent)
|
|
|
|
: QMainWindow(parent),
|
|
|
|
m_curFileFormatVersion(0x0),
|
|
|
|
m_curFileFormatVersionStr(QLatin1String("0.0.0"))
|
2016-07-25 18:23:00 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-04-12 08:49:05 +02:00
|
|
|
bool VAbstractMainWindow::ContinueFormatRewrite(const QString ¤tFormatVersion,
|
|
|
|
const QString &maxFormatVersion)
|
|
|
|
{
|
|
|
|
if (qApp->Settings()->GetConfirmFormatRewriting())
|
|
|
|
{
|
|
|
|
Utils::CheckableMessageBox msgBox(this);
|
|
|
|
msgBox.setWindowTitle(tr("Confirm format rewriting"));
|
|
|
|
msgBox.setText(tr("This file is using previous format version v%1. The current is v%2. "
|
|
|
|
"Saving the file with this app version will update the format version for this "
|
|
|
|
"file. This may prevent you from be abale to open the file with older app versions. "
|
|
|
|
"Do you really want to continue?").arg(currentFormatVersion).arg(maxFormatVersion));
|
|
|
|
msgBox.setStandardButtons(QDialogButtonBox::Yes | QDialogButtonBox::No);
|
|
|
|
msgBox.setDefaultButton(QDialogButtonBox::No);
|
|
|
|
msgBox.setIconPixmap(QApplication::style()->standardIcon(QStyle::SP_MessageBoxQuestion).pixmap(32, 32));
|
|
|
|
|
|
|
|
int dialogResult = msgBox.exec();
|
|
|
|
|
|
|
|
if (dialogResult == QDialog::Accepted)
|
|
|
|
{
|
|
|
|
qApp->Settings()->SetConfirmFormatRewriting(not msgBox.isChecked());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|