source: tspsg-svn/trunk/src/mainwindow.cpp @ 35

Last change on this file since 35 was 33, checked in by laleppa, 15 years ago

Code tweaks to compile without errors using Qt < 4.5.

  • Property svn:keywords set to Id URL
File size: 11.8 KB
RevLine 
[1]1/*
[6]2 *  TSPSG - TSP Solver and Generator
[17]3 *  Copyright (C) 2007-2009 Lёppa <contacts[at]oleksii[dot]name>
[1]4 *
[6]5 *  $Id: mainwindow.cpp 33 2009-06-30 17:14:52Z laleppa $
6 *  $URL: https://tspsg.svn.sourceforge.net/svnroot/tspsg/trunk/src/mainwindow.cpp $
[4]7 *
[6]8 *  This file is part of TSPSG.
[1]9 *
[6]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.
[1]14 *
[6]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.
[1]19 *
[6]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/>.
[1]22 */
23
24#include "mainwindow.h"
25
26MainWindow::MainWindow(QWidget *parent)
[21]27        : QMainWindow(parent)
[1]28{
[29]29        settings = new QSettings(QSettings::IniFormat,QSettings::UserScope,"TSPSG","tspsg");
30        loadLanguage();
[1]31        setupUi(this);
[29]32#ifndef Q_OS_WINCE
33        printer = new QPrinter();
34#endif // Q_OS_WINCE
35        groupSettingsLanguageList = new QActionGroup(this);
[30]36        actionSettingsLanguageEnglish->setData("en");
37        actionSettingsLanguageEnglish->setActionGroup(groupSettingsLanguageList);
[29]38        loadLangList();
[23]39        spinCities->setValue(settings->value("NumCities",5).toInt());
[29]40        actionSettingsLanguageAutodetect->setChecked(settings->value("Language","").toString().isEmpty());
41        connect(actionFileNew,SIGNAL(triggered()),this,SLOT(actionFileNewTriggered()));
[31]42        connect(actionFileOpen,SIGNAL(triggered()),this,SLOT(actionFileOpenTriggered()));
43        connect(actionFileSaveTask,SIGNAL(triggered()),this,SLOT(actionFileSaveTaskTriggered()));
[29]44        connect(actionSettingsPreferences,SIGNAL(triggered()),this,SLOT(actionSettingsPreferencesTriggered()));
45        connect(actionSettingsLanguageAutodetect,SIGNAL(triggered(bool)),this,SLOT(actionSettingsLanguageAutodetectTriggered(bool)));
46        connect(groupSettingsLanguageList,SIGNAL(triggered(QAction *)),this,SLOT(groupSettingsLanguageListTriggered(QAction *)));
47        connect(actionHelpAbout,SIGNAL(triggered()),this,SLOT(actionHelpAboutTriggered()));
[17]48#ifndef Q_OS_WINCE
[29]49        connect(actionFilePrintSetup,SIGNAL(triggered()),this,SLOT(actionFilePrintSetupTriggered()));
[17]50#endif // Q_OS_WINCE
[29]51        connect(buttonSolve,SIGNAL(clicked()),this,SLOT(buttonSolveClicked()));
52        connect(buttonRandom,SIGNAL(clicked()),this,SLOT(buttonRandomClicked()));
53        connect(spinCities,SIGNAL(valueChanged(int)),this,SLOT(spinCitiesValueChanged(int)));
[17]54QRect rect = geometry();
55#ifdef Q_OS_WINCE
56        // HACK: Fix for all tabWidget elements becoming "unclickable" if making it central widget.
57        rect.setSize(QApplication::desktop()->availableGeometry().size());
58        rect.setHeight(rect.height() - (QApplication::desktop()->screenGeometry().height() - QApplication::desktop()->availableGeometry().height()));
59        tabWidget->resize(rect.width(),rect.height() - toolBar->size().height());
60#else
[23]61        if (settings->value("SavePos",false).toBool()) {
[21]62                // Loading of saved window state
[23]63                settings->beginGroup("MainWindow");
64                resize(settings->value("Size",size()).toSize());
65                move(settings->value("Position",pos()).toPoint());
66                if (settings->value("Maximized",false).toBool())
[21]67                        setWindowState(windowState() | Qt::WindowMaximized);
[23]68                settings->endGroup();
[21]69        } else {
70                // Centering main window
71                rect.moveCenter(QApplication::desktop()->availableGeometry(this).center());
72                setGeometry(rect);
73        }
[17]74#endif // Q_OS_WINCE
[11]75        qsrand(QDateTime().currentDateTime().toTime_t());
[15]76        tspmodel = new CTSPModel();
77        tspmodel->setNumCities(spinCities->value());
78        taskView->setModel(tspmodel);
[31]79        connect(tspmodel,SIGNAL(numCitiesChanged(int)),this,SLOT(numCitiesChanged(int)));
[21]80#ifdef Q_OS_WINCE
81        taskView->resizeColumnsToContents();
82        taskView->resizeRowsToContents();
83#endif // Q_OS_WINCE
[6]84}
85
[30]86bool MainWindow::loadLanguage(QString lang)
[4]87{
[29]88// i18n
[30]89bool ad = false;
90        if (lang.isEmpty()) {
91                ad = settings->value("Language","").toString().isEmpty();
92                lang = settings->value("Language",QLocale::system().name()).toString();
93        }
[29]94static QTranslator *qtTranslator;
95        if (qtTranslator) {
96                qApp->removeTranslator(qtTranslator);
97                delete qtTranslator;
98                qtTranslator = NULL;
99        }
100        qtTranslator = new QTranslator();
[30]101static QTranslator *translator;
102        if (translator) {
103                qApp->removeTranslator(translator);
104                delete translator;
105        }
106        translator = new QTranslator();
[29]107        if (lang.compare("en") && !lang.startsWith("en_")) {
108                // Trying to load system Qt library translation...
109                if (qtTranslator->load("qt_" + lang,QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
110                        qApp->installTranslator(qtTranslator);
111                else
112                        // No luck. Let's try to load bundled one.
113                        if (qtTranslator->load("qt_" + lang,"i18n"))
114                                qApp->installTranslator(qtTranslator);
115                        else {
116                                delete qtTranslator;
117                                qtTranslator = NULL;
118                        }
[30]119                // Now let's load application translation.
[29]120                if (translator->load(lang,"i18n"))
121                        qApp->installTranslator(translator);
122                else {
123                        if (!ad)
124                                QMessageBox(QMessageBox::Warning,trUtf8("Language change"),trUtf8("Unable to load translation language."),QMessageBox::Ok,this).exec();
125                        delete translator;
126                        translator = NULL;
127                        return false;
128                }
129        }
130        return true;
131}
132
133void MainWindow::spinCitiesValueChanged(int n)
134{
[21]135#ifdef Q_OS_WINCE
136int count = tspmodel->numCities();
137#endif // Q_OS_WINCE
[15]138        tspmodel->setNumCities(n);
[21]139#ifdef Q_OS_WINCE
140        if (n > count)
141                for (int k = count; k < n; k++) {
142                        taskView->resizeColumnToContents(k);
143                        taskView->resizeRowToContents(k);
144                }
145#endif // Q_OS_WINCE
[1]146}
147
[29]148
149void MainWindow::actionFileNewTriggered()
[1]150{
[29]151        tspmodel->clear();
152}
153
[31]154void MainWindow::actionFileOpenTriggered()
155{
156QFileDialog od(this);
157        od.setAcceptMode(QFileDialog::AcceptOpen);
158        od.setFileMode(QFileDialog::ExistingFile);
159QStringList filters(trUtf8("All Supported Formats") + " (*.tspt *.zkt)");
160        filters.append(QString(trUtf8("%1 Task Files")).arg("TSPSG") + " (*.tspt)");
161        filters.append(QString(trUtf8("%1 Task Files")).arg("ZKomModRd") + " (*.zkt)");
162        filters.append(trUtf8("All Files") + " (*)");
163        od.setNameFilters(filters);
164        if (od.exec() != QDialog::Accepted)
165                return;
166QStringList files = od.selectedFiles();
167        if (files.size() < 1)
168                return;
169        tspmodel->loadTask(files.first());
170}
171
172void MainWindow::actionFileSaveTaskTriggered()
173{
174QFileDialog sd(this);
175        sd.setAcceptMode(QFileDialog::AcceptSave);
176QStringList filters(QString(trUtf8("%1 Task File")).arg("TSPSG") + " (*.tspt)");
177        filters.append(trUtf8("All Files") + " (*)");
178        sd.setNameFilters(filters);
179        sd.setDefaultSuffix("tspt");
180        if (sd.exec() != QDialog::Accepted)
181                return;
182QStringList files = sd.selectedFiles();
183        if (files.size() < 1)
184                return;
185        tspmodel->saveTask(files.first());
186}
187
[29]188void MainWindow::actionSettingsPreferencesTriggered()
189{
[1]190SettingsDialog sd(this);
[21]191        sd.exec();
[1]192}
[6]193
[17]194#ifndef Q_OS_WINCE
[29]195void MainWindow::actionFilePrintSetupTriggered()
[17]196{
[29]197QPrintDialog pd(printer,this);
[33]198#if QT_VERSION >= 0x040500
199        // No such methods in Qt < 4.5
[29]200        pd.setOption(QAbstractPrintDialog::PrintSelection,false);
201        pd.setOption(QAbstractPrintDialog::PrintPageRange,false);
[33]202#endif
[17]203        pd.exec();
204}
205#endif // Q_OS_WINCE
206
[29]207void MainWindow::buttonRandomClicked()
[6]208{
[15]209        tspmodel->randomize();
[21]210#ifdef Q_OS_WINCE
211        taskView->resizeColumnsToContents();
212        taskView->resizeRowsToContents();
213#endif // Q_OS_WINCE
[6]214}
215
[29]216void MainWindow::buttonSolveClicked()
[6]217{
[13]218        // TODO: Task solving goes here :-)
219tMatrix matrix;
220double *row;
[15]221int n = spinCities->value();
[13]222bool ok;
[15]223        for (int r = 0; r < n; r++) {
224                row = new double[n];
225                for (int c = 0; c < n; c++) {
226                        row[c] = tspmodel->index(r,c).data(Qt::UserRole).toDouble(&ok);
227                        if (!ok) {
[27]228                                QMessageBox(QMessageBox::Critical,trUtf8("Data error"),QString(trUtf8("Error in cell [Row %1; Column %2]: Invalid data format.")).arg(r + 1).arg(c + 1),QMessageBox::Ok,this).exec();
[15]229                                return;
[13]230                        }
231                }
232                matrix.append(row);
233        }
234CTSPSolver solver;
235sStep *root = solver.solve(spinCities->value(),matrix);
236        if (!root)
[27]237                QMessageBox(QMessageBox::Critical,trUtf8("Solution error"),trUtf8("There was an error while solving the task."),QMessageBox::Ok,this).exec();
[12]238        // tabWidget->setCurrentIndex(1);
[6]239}
[21]240
[29]241void MainWindow::actionHelpAboutTriggered()
[21]242{
243        // TODO: Normal about window :-)
[30]244QString about = QString::fromUtf8("TSPSG - TSP Solver and Generator\n");
245about += QString::fromUtf8("    Copyright (C) 2007-%1 Lёppa <contacts[at]oleksii[dot]name>\n").arg(QDate::currentDate().toString("yyyy"));
246        about += "Qt library versions:\n";
[31]247        about += QString::fromUtf8("    OS: %1\n").arg(OS);
[30]248        about += QString::fromUtf8("    Compile time: %1\n").arg(QT_VERSION_STR);
249        about += QString::fromUtf8("    Runtime: %1\n").arg(qVersion());
250        about += "\n";
251        about += "TSPSG is licensed under the terms of the GNU General Public License. You should have received a copy of the GNU General Public License along with TSPSG.";
[27]252        QMessageBox(QMessageBox::Information,"About",about,QMessageBox::Ok,this).exec();
[21]253}
254
[29]255void MainWindow::loadLangList()
256{
257QSettings langinfo("i18n/languages.ini",QSettings::IniFormat);
[33]258#if QT_VERSION >= 0x040500
259        // In Qt < 4.5 QSettings doesn't have method setIniCodec.
[29]260        langinfo.setIniCodec("UTF-8");
[33]261#endif
[29]262QDir dir("i18n","*.qm",QDir::Name | QDir::IgnoreCase,QDir::Files);
263        if (!dir.exists())
264                return;
265QFileInfoList langs = dir.entryInfoList();
266        if (langs.size() <= 0)
267                return;
268QAction *a;
269        for (int k = 0; k < langs.size(); k++) {
270                QFileInfo lang = langs.at(k);
[30]271                if (!lang.completeBaseName().startsWith("qt_") && lang.completeBaseName().compare("en")) {
[33]272#if QT_VERSION >= 0x040500
[29]273                        a = menuSettingsLanguage->addAction(langinfo.value(lang.completeBaseName() + "/NativeName",lang.completeBaseName()).toString());
[33]274#else
275                        // We use Name if Qt < 4.5 because NativeName is in UTF-8, QSettings
276                        // reads .ini file as ASCII and there is no way to set file encoding.
277                        a = menuSettingsLanguage->addAction(langinfo.value(lang.completeBaseName() + "/Name",lang.completeBaseName()).toString());
278#endif
[29]279                        a->setData(lang.completeBaseName());
280                        a->setCheckable(true);
281                        a->setActionGroup(groupSettingsLanguageList);
282                        if (settings->value("Language",QLocale::system().name()).toString().startsWith(lang.completeBaseName()))
283                                a->setChecked(true);
284                }
285        }
286}
287
288void MainWindow::actionSettingsLanguageAutodetectTriggered(bool checked)
289{
290        if (checked) {
291                settings->remove("Language");
292                QMessageBox(QMessageBox::Information,trUtf8("Language change"),trUtf8("Language will be autodetected on next application start."),QMessageBox::Ok,this).exec();
293        } else
294                settings->setValue("Language",groupSettingsLanguageList->checkedAction()->data().toString());
295}
296
297void MainWindow::groupSettingsLanguageListTriggered(QAction *action)
298{
299        if (actionSettingsLanguageAutodetect->isChecked()) {
300                // We have language autodetection. It needs to be disabled to change language.
301                if (QMessageBox(QMessageBox::Question,trUtf8("Language change"),trUtf8("You have language autodetection turned on.\nIt needs to be off.\nDo you wish to turn it off?"),QMessageBox::Yes | QMessageBox::No,this).exec() == QMessageBox::Yes) {
302                        actionSettingsLanguageAutodetect->trigger();
303                } else
304                        return;
305        }
[30]306        if (loadLanguage(action->data().toString())) {
[29]307                settings->setValue("Language",action->data().toString());
308                retranslateUi(this);
309        }
310}
311
[21]312void MainWindow::closeEvent(QCloseEvent *event)
313{
[26]314        settings->setValue("NumCities",spinCities->value());
315#ifndef Q_OS_WINCE
[21]316        // Saving windows state
[23]317        if (settings->value("SavePos",false).toBool()) {
318                settings->beginGroup("MainWindow");
319                settings->setValue("Maximized",isMaximized());
[21]320                if (!isMaximized()) {
[23]321                        settings->setValue("Size",size());
322                        settings->setValue("Position",pos());
[21]323                }
[23]324                settings->endGroup();
[21]325        }
[26]326#endif // Q_OS_WINCE
[21]327        QMainWindow::closeEvent(event);
328}
[31]329
330void MainWindow::numCitiesChanged(int nCities)
331{
332        spinCities->setValue(nCities);
333}
Note: See TracBrowser for help on using the repository browser.