2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file main.cpp
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2013-11-15 13:41:26 +01:00
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2013-06-20 16:09:50 +02:00
|
|
|
#include "mainwindow.h"
|
2014-09-25 17:44:06 +02:00
|
|
|
#include "core/vapplication.h"
|
2015-06-25 12:42:49 +02:00
|
|
|
#include <QMessageBox> // For QT_REQUIRE_VERSION
|
2015-10-18 21:30:51 +02:00
|
|
|
#include <QTimer>
|
2015-06-25 12:42:49 +02:00
|
|
|
|
2015-08-27 17:39:02 +02:00
|
|
|
// Lock producing random attribute order in XML
|
2015-08-27 22:02:54 +02:00
|
|
|
// https://stackoverflow.com/questions/27378143/qt-5-produce-random-attribute-order-in-xml
|
|
|
|
extern Q_CORE_EXPORT QBasicAtomicInt qt_qhash_seed;
|
2015-08-27 17:39:02 +02:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-08-25 19:53:03 +02:00
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2014-02-07 17:12:18 +01:00
|
|
|
Q_INIT_RESOURCE(cursor);
|
|
|
|
Q_INIT_RESOURCE(icon);
|
|
|
|
Q_INIT_RESOURCE(schema);
|
|
|
|
Q_INIT_RESOURCE(theme);
|
2014-12-05 13:52:24 +01:00
|
|
|
Q_INIT_RESOURCE(flags);
|
2015-04-11 16:30:49 +02:00
|
|
|
Q_INIT_RESOURCE(icons);
|
2015-06-08 11:29:50 +02:00
|
|
|
Q_INIT_RESOURCE(toolicon);
|
2014-02-07 17:12:18 +01:00
|
|
|
|
2015-04-01 14:51:54 +02:00
|
|
|
QT_REQUIRE_VERSION(argc, argv, "5.0.0");
|
2014-05-07 18:59:54 +02:00
|
|
|
|
2015-07-26 09:17:53 +02:00
|
|
|
qt_qhash_seed.store(0); // Lock producing random attribute order in XML
|
|
|
|
|
2013-10-01 20:15:59 +02:00
|
|
|
VApplication app(argc, argv);
|
2015-08-25 19:53:03 +02:00
|
|
|
|
2015-06-11 14:24:38 +02:00
|
|
|
app.InitOptions();
|
2014-02-19 22:34:57 +01:00
|
|
|
|
2013-06-20 16:09:50 +02:00
|
|
|
MainWindow w;
|
2015-12-05 15:16:29 +01:00
|
|
|
#if !defined(Q_OS_MAC)
|
2013-07-03 14:29:26 +02:00
|
|
|
app.setWindowIcon(QIcon(":/icon/64x64/icon64x64.png"));
|
2015-12-05 15:16:29 +01:00
|
|
|
#endif // !defined(Q_OS_MAC)
|
2014-07-08 12:59:50 +02:00
|
|
|
app.setMainWindow(&w);
|
2015-08-27 18:03:43 +02:00
|
|
|
|
2015-10-11 11:06:14 +02:00
|
|
|
QTimer::singleShot(0, &w, SLOT(ProcessCMD()));
|
2014-07-13 14:49:00 +02:00
|
|
|
|
2015-10-11 11:06:14 +02:00
|
|
|
return app.exec();
|
2013-06-20 16:09:50 +02:00
|
|
|
}
|