[2bbe924ad8] | 1 | /* |
---|
| 2 | * TSPSG: TSP Solver and Generator |
---|
| 3 | * Copyright (C) 2007-2010 Lёppa <contacts[at]oleksii[dot]name> |
---|
| 4 | * |
---|
| 5 | * $Id$ |
---|
| 6 | * $URL$ |
---|
| 7 | * |
---|
| 8 | * This file is part of TSPSG. |
---|
| 9 | * |
---|
| 10 | * TSPSG is free software: you can redistribute it and/or modify |
---|
| 11 | * it under the terms of the GNU General Public License as published by |
---|
| 12 | * the Free Software Foundation, either version 3 of the License, or |
---|
| 13 | * (at your option) any later version. |
---|
| 14 | * |
---|
| 15 | * TSPSG is distributed in the hope that it will be useful, |
---|
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 18 | * GNU General Public License for more details. |
---|
| 19 | * |
---|
| 20 | * You should have received a copy of the GNU General Public License |
---|
| 21 | * along with TSPSG. If not, see <http://www.gnu.org/licenses/>. |
---|
| 22 | */ |
---|
| 23 | |
---|
| 24 | #include "mainwindow.h" |
---|
[2a436ea693] | 25 | #if QT_VERSION < 0x040600 |
---|
| 26 | #ifdef Q_CC_MSVC |
---|
| 27 | #pragma message("WARNING: You are using Qt version < 4.6. Application will not support some non-critical features.") |
---|
| 28 | #elif defined(Q_CC_GNU) |
---|
| 29 | #warning WARNING: You are using Qt version < 4.6. Application will not support some non-critical features. |
---|
[2bbe924ad8] | 30 | #else |
---|
[2a436ea693] | 31 | #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. |
---|
[2bbe924ad8] | 32 | #endif |
---|
| 33 | #endif |
---|
| 34 | |
---|
| 35 | //#ifdef STATIC_BUILD |
---|
[cac8759dba] | 36 | // #ifndef NOSVG |
---|
| 37 | // Q_IMPORT_PLUGIN(qsvgicon) |
---|
| 38 | // #endif |
---|
[2bbe924ad8] | 39 | //#endif |
---|
| 40 | |
---|
| 41 | int main(int argc, char *argv[]) |
---|
| 42 | { |
---|
| 43 | QApplication app(argc, argv); |
---|
| 44 | app.setOverrideCursor(QCursor(Qt::WaitCursor)); |
---|
| 45 | QTextCodec::setCodecForLocale(QTextCodec::codecForName("utf8")); |
---|
| 46 | QTextCodec::setCodecForCStrings(QTextCodec::codecForName("utf8")); |
---|
| 47 | QTextCodec::setCodecForTr(QTextCodec::codecForName("utf8")); |
---|
| 48 | app.setOrganizationName("Oleksii \"Lёppa\" Serdiuk"); |
---|
| 49 | app.setOrganizationDomain("oleksii.name"); |
---|
[b2e8e7ec71] | 50 | app.setApplicationName("TSP Solver and Generator"); |
---|
[2bbe924ad8] | 51 | app.setApplicationVersion(BUILD_VERSION); |
---|
| 52 | |
---|
| 53 | // Seeding random number generator |
---|
| 54 | qsrand(QDateTime::currentDateTime().toTime_t() ^ QCursor::pos().x() ^ QCursor::pos().y()); |
---|
| 55 | |
---|
[97e90f9be6] | 56 | #ifdef Q_WS_WINCE_WM |
---|
[b2e8e7ec71] | 57 | // Qt "leaves" unpacked .ttf files after running - let's try to delete them. |
---|
| 58 | QStringList files = QDir(app.applicationDirPath(), "*.ttf").entryList(); |
---|
| 59 | foreach (QString file, files) { |
---|
| 60 | QFile::remove(file); |
---|
| 61 | } |
---|
| 62 | #endif |
---|
[cb1608daaf] | 63 | // Don't load the font if it is already available |
---|
| 64 | if (!QFontDatabase().families().contains(DEF_FONT_FACE)) |
---|
| 65 | QFontDatabase::addApplicationFont(":/files/DejaVuLGCSansMono.ttf"); |
---|
[7cd6da5021] | 66 | |
---|
[2bbe924ad8] | 67 | QTranslator en; |
---|
| 68 | if (en.load("tspsg_en", PATH_L10N)) |
---|
| 69 | app.installTranslator(&en); |
---|
[3cadf24d00] | 70 | else if (en.load("tspsg_en", ":/l10n")) |
---|
| 71 | app.installTranslator(&en); |
---|
[2bbe924ad8] | 72 | |
---|
| 73 | MainWindow mainwindow; |
---|
| 74 | #ifdef HANDHELD |
---|
| 75 | mainwindow.showMaximized(); |
---|
| 76 | #else // HANDHELD |
---|
| 77 | mainwindow.show(); |
---|
| 78 | #endif // HANDHELD |
---|
| 79 | app.restoreOverrideCursor(); |
---|
| 80 | return app.exec(); |
---|
| 81 | } |
---|