2015-07-10 11:49:37 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file main.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 10 7, 2015
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2015 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
|
|
|
**
|
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
** GNU General Public License for more details.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#include "tmainwindow.h"
|
2015-07-10 13:14:55 +02:00
|
|
|
#include "mapplication.h"
|
|
|
|
|
|
|
|
#include <QMessageBox> // For QT_REQUIRE_VERSION
|
2015-07-10 11:49:37 +02:00
|
|
|
|
2015-07-26 09:17:53 +02:00
|
|
|
// Lock producing random attribute order in XML
|
|
|
|
// https://stackoverflow.com/questions/27378143/qt-5-produce-random-attribute-order-in-xml
|
|
|
|
extern Q_CORE_EXPORT QBasicAtomicInt qt_qhash_seed;
|
|
|
|
|
2015-07-10 11:49:37 +02:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2015-07-12 16:19:53 +02:00
|
|
|
Q_INIT_RESOURCE(tapeicon);
|
2015-07-12 17:15:35 +02:00
|
|
|
Q_INIT_RESOURCE(theme);
|
2015-07-24 19:53:21 +02:00
|
|
|
Q_INIT_RESOURCE(icon);
|
2015-07-25 14:59:40 +02:00
|
|
|
Q_INIT_RESOURCE(schema);
|
2015-08-02 17:27:18 +02:00
|
|
|
Q_INIT_RESOURCE(flags);
|
2015-07-10 13:14:55 +02:00
|
|
|
|
|
|
|
QT_REQUIRE_VERSION(argc, argv, "5.0.0");
|
|
|
|
|
2015-07-26 09:17:53 +02:00
|
|
|
qt_qhash_seed.store(0); // Lock producing random attribute order in XML
|
|
|
|
|
2015-07-10 13:14:55 +02:00
|
|
|
MApplication app(argc, argv);
|
|
|
|
if (not app.IsTheOnly())
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2015-07-15 09:16:59 +02:00
|
|
|
app.InitOptions();
|
2015-08-20 12:56:55 +02:00
|
|
|
app.ParseCommandLine(app.arguments());
|
2015-07-10 13:14:55 +02:00
|
|
|
return app.exec();
|
2015-07-10 11:49:37 +02:00
|
|
|
}
|