2014-06-18 23:44:46 +00:00
|
|
|
#include "mainscreen.h"
|
|
|
|
#include <QApplication>
|
2014-06-27 22:22:44 +00:00
|
|
|
#include <QTranslator>
|
2014-06-28 03:36:10 +00:00
|
|
|
#include <QDebug>
|
2014-09-08 17:07:42 +00:00
|
|
|
#include "../src/appDatabase/savedata.h"
|
2014-09-22 22:26:37 +00:00
|
|
|
#include "../src/appDatabase/jce_logger.h"
|
2014-09-08 17:07:42 +00:00
|
|
|
|
2014-06-18 23:44:46 +00:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2014-09-17 16:52:21 +00:00
|
|
|
#ifdef QT_DEBUG // Incase QtCreator is in Debug mode all qDebug messages will go to terminal
|
2014-09-17 13:14:05 +00:00
|
|
|
qDebug() << "Running a debug build";
|
2014-09-17 16:52:21 +00:00
|
|
|
#else // If QtCreator is on Release mode , qDebug messages will be logged in a log file.
|
2014-09-23 02:57:35 +00:00
|
|
|
// qDebug() << "Running a release build";
|
2014-09-17 13:14:05 +00:00
|
|
|
qInstallMessageHandler(jce_logger::customMessageHandler);
|
|
|
|
#endif
|
|
|
|
|
2014-09-17 16:52:21 +00:00
|
|
|
qDebug() << "Start : JCE Manager Launched";
|
|
|
|
|
2014-06-18 23:44:46 +00:00
|
|
|
QApplication a(argc, argv);
|
2014-06-28 03:36:10 +00:00
|
|
|
QTranslator translator;
|
2014-09-08 17:07:42 +00:00
|
|
|
QString loco;
|
|
|
|
SaveData data;
|
|
|
|
loco = data.getLocal();
|
2014-09-17 16:52:21 +00:00
|
|
|
//Loading Local (From Settings file (SaveData.cpp)
|
2014-09-08 17:07:42 +00:00
|
|
|
if(loco == "default")
|
|
|
|
{
|
|
|
|
QString locale = QLocale::system().name();
|
|
|
|
translator.load("jce_"+locale , a.applicationDirPath());
|
2014-09-16 21:08:29 +00:00
|
|
|
qDebug() << "Local : Default Local Loaded";
|
|
|
|
}else if(loco == "he"){
|
2014-09-08 17:07:42 +00:00
|
|
|
translator.load("jce_he" , a.applicationDirPath());
|
2014-09-16 21:08:29 +00:00
|
|
|
qDebug() << "Local : Hebrew Local Loaded";
|
|
|
|
}else{
|
2014-09-08 17:07:42 +00:00
|
|
|
translator.load("jce_en" , a.applicationDirPath());
|
2014-09-16 21:08:29 +00:00
|
|
|
qDebug() << "Local : English Local Loaded";
|
|
|
|
}
|
2014-09-17 16:52:21 +00:00
|
|
|
a.installTranslator(&translator); //Setting local
|
2014-10-01 13:38:57 +00:00
|
|
|
a.setApplicationVersion(APP_VERSION);
|
2014-06-18 23:44:46 +00:00
|
|
|
MainScreen w;
|
|
|
|
w.show();
|
|
|
|
|
2014-09-17 16:52:21 +00:00
|
|
|
//Getting the exit code from QApplication. for debug reasons
|
2014-09-16 21:08:29 +00:00
|
|
|
int returnCode = a.exec();
|
|
|
|
if(returnCode == 0)
|
|
|
|
qDebug() << "End : JCE Manager Ended Successfully With A Return Code: " << returnCode;
|
|
|
|
else
|
|
|
|
qCritical() << "End : JCE Manager Ended Unusccessfully With A Return Code: " << returnCode;
|
|
|
|
return returnCode;
|
2014-06-18 23:44:46 +00:00
|
|
|
}
|