/* * TSPSG: TSP Solver and Generator * Copyright (C) 2007-2010 Lёppa * * $Id: main.cpp 136 2010-09-14 18:51:50Z laleppa $ * $URL: https://tspsg.svn.sourceforge.net/svnroot/tspsg/trunk/src/main.cpp $ * * This file is part of TSPSG. * * TSPSG 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. * * TSPSG 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 TSPSG. If not, see . */ #include "mainwindow.h" #if QT_VERSION < 0x040600 #ifdef Q_CC_MSVC #pragma message("WARNING: You are using Qt version < 4.6. Application will not support some non-critical features.") #elif defined(Q_CC_GNU) #warning WARNING: You are using Qt version < 4.6. Application will not support some non-critical features. #else #error You are using Qt version < 4.6. Application will not support some non-critical features. To continue, please, comment line 31 at main.cpp. #endif #endif //#ifdef STATIC_BUILD // #ifndef NOSVG // Q_IMPORT_PLUGIN(qsvgicon) // #endif // Q_IMPORT_PLUGIN(qjpeg) // Q_IMPORT_PLUGIN(qtiff) //#endif int main(int argc, char *argv[]) { QApplication app(argc, argv); app.setOverrideCursor(QCursor(Qt::WaitCursor)); QTextCodec::setCodecForLocale(QTextCodec::codecForName("utf8")); QTextCodec::setCodecForCStrings(QTextCodec::codecForName("utf8")); QTextCodec::setCodecForTr(QTextCodec::codecForName("utf8")); app.setOrganizationName("Oleksii \"Lёppa\" Serdiuk"); app.setOrganizationDomain("oleksii.name"); app.setApplicationName("TSP Solver and Generator"); app.setApplicationVersion(BUILD_VERSION); // Seeding random number generator qsrand(QDateTime::currentDateTime().toTime_t() ^ QCursor::pos().x() ^ QCursor::pos().y()); #ifdef Q_OS_WINCE_WM // Qt "leaves" unpacked .ttf files after running - let's try to delete them. QStringList files = QDir(app.applicationDirPath(), "*.ttf").entryList(); foreach (QString file, files) { QFile::remove(file); } #endif // Don't load the font if it is already available if (!QFontDatabase().families().contains(DEF_FONT_FACE)) QFontDatabase::addApplicationFont(":/files/DejaVuLGCSansMono.ttf"); QTranslator en; if (en.load("tspsg_en", PATH_L10N)) app.installTranslator(&en); else if (en.load("tspsg_en", ":/l10n")) app.installTranslator(&en); MainWindow mainwindow; #ifdef HANDHELD mainwindow.showMaximized(); #else // HANDHELD mainwindow.show(); #endif // HANDHELD app.restoreOverrideCursor(); return app.exec(); }