source: tspsg/src/mainwindow.cpp @ 140912822f

0.1.3.145-beta1-symbian0.1.4.170-beta2-bb10appveyorimgbotreadme
Last change on this file since 140912822f was 140912822f, checked in by Oleksii Serdiuk, 15 years ago

Code tweaks to compile without errors using Qt < 4.5.

  • Property mode set to 100644
File size: 11.8 KB
Line 
1/*
2 *  TSPSG - TSP Solver and Generator
3 *  Copyright (C) 2007-2009 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"
25
26MainWindow::MainWindow(QWidget *parent)
27        : QMainWindow(parent)
28{
29        settings = new QSettings(QSettings::IniFormat,QSettings::UserScope,"TSPSG","tspsg");
30        loadLanguage();
31        setupUi(this);
32#ifndef Q_OS_WINCE
33        printer = new QPrinter();
34#endif // Q_OS_WINCE
35        groupSettingsLanguageList = new QActionGroup(this);
36        actionSettingsLanguageEnglish->setData("en");
37        actionSettingsLanguageEnglish->setActionGroup(groupSettingsLanguageList);
38        loadLangList();
39        spinCities->setValue(settings->value("NumCities",5).toInt());
40        actionSettingsLanguageAutodetect->setChecked(settings->value("Language","").toString().isEmpty());
41        connect(actionFileNew,SIGNAL(triggered()),this,SLOT(actionFileNewTriggered()));
42        connect(actionFileOpen,SIGNAL(triggered()),this,SLOT(actionFileOpenTriggered()));
43        connect(actionFileSaveTask,SIGNAL(triggered()),this,SLOT(actionFileSaveTaskTriggered()));
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()));
48#ifndef Q_OS_WINCE
49        connect(actionFilePrintSetup,SIGNAL(triggered()),this,SLOT(actionFilePrintSetupTriggered()));
50#endif // Q_OS_WINCE
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)));
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
61        if (settings->value("SavePos",false).toBool()) {
62                // Loading of saved window state
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())
67                        setWindowState(windowState() | Qt::WindowMaximized);
68                settings->endGroup();
69        } else {
70                // Centering main window
71                rect.moveCenter(QApplication::desktop()->availableGeometry(this).center());
72                setGeometry(rect);
73        }
74#endif // Q_OS_WINCE
75        qsrand(QDateTime().currentDateTime().toTime_t());
76        tspmodel = new CTSPModel();
77        tspmodel->setNumCities(spinCities->value());
78        taskView->setModel(tspmodel);
79        connect(tspmodel,SIGNAL(numCitiesChanged(int)),this,SLOT(numCitiesChanged(int)));
80#ifdef Q_OS_WINCE
81        taskView->resizeColumnsToContents();
82        taskView->resizeRowsToContents();
83#endif // Q_OS_WINCE
84}
85
86bool MainWindow::loadLanguage(QString lang)
87{
88// i18n
89bool ad = false;
90        if (lang.isEmpty()) {
91                ad = settings->value("Language","").toString().isEmpty();
92                lang = settings->value("Language",QLocale::system().name()).toString();
93        }
94static QTranslator *qtTranslator;
95        if (qtTranslator) {
96                qApp->removeTranslator(qtTranslator);
97                delete qtTranslator;
98                qtTranslator = NULL;
99        }
100        qtTranslator = new QTranslator();
101static QTranslator *translator;
102        if (translator) {
103                qApp->removeTranslator(translator);
104                delete translator;
105        }
106        translator = new QTranslator();
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                        }
119                // Now let's load application translation.
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{
135#ifdef Q_OS_WINCE
136int count = tspmodel->numCities();
137#endif // Q_OS_WINCE
138        tspmodel->setNumCities(n);
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
146}
147
148
149void MainWindow::actionFileNewTriggered()
150{
151        tspmodel->clear();
152}
153
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
188void MainWindow::actionSettingsPreferencesTriggered()
189{
190SettingsDialog sd(this);
191        sd.exec();
192}
193
194#ifndef Q_OS_WINCE
195void MainWindow::actionFilePrintSetupTriggered()
196{
197QPrintDialog pd(printer,this);
198#if QT_VERSION >= 0x040500
199        // No such methods in Qt < 4.5
200        pd.setOption(QAbstractPrintDialog::PrintSelection,false);
201        pd.setOption(QAbstractPrintDialog::PrintPageRange,false);
202#endif
203        pd.exec();
204}
205#endif // Q_OS_WINCE
206
207void MainWindow::buttonRandomClicked()
208{
209        tspmodel->randomize();
210#ifdef Q_OS_WINCE
211        taskView->resizeColumnsToContents();
212        taskView->resizeRowsToContents();
213#endif // Q_OS_WINCE
214}
215
216void MainWindow::buttonSolveClicked()
217{
218        // TODO: Task solving goes here :-)
219tMatrix matrix;
220double *row;
221int n = spinCities->value();
222bool ok;
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) {
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();
229                                return;
230                        }
231                }
232                matrix.append(row);
233        }
234CTSPSolver solver;
235sStep *root = solver.solve(spinCities->value(),matrix);
236        if (!root)
237                QMessageBox(QMessageBox::Critical,trUtf8("Solution error"),trUtf8("There was an error while solving the task."),QMessageBox::Ok,this).exec();
238        // tabWidget->setCurrentIndex(1);
239}
240
241void MainWindow::actionHelpAboutTriggered()
242{
243        // TODO: Normal about window :-)
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";
247        about += QString::fromUtf8("    OS: %1\n").arg(OS);
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.";
252        QMessageBox(QMessageBox::Information,"About",about,QMessageBox::Ok,this).exec();
253}
254
255void MainWindow::loadLangList()
256{
257QSettings langinfo("i18n/languages.ini",QSettings::IniFormat);
258#if QT_VERSION >= 0x040500
259        // In Qt < 4.5 QSettings doesn't have method setIniCodec.
260        langinfo.setIniCodec("UTF-8");
261#endif
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);
271                if (!lang.completeBaseName().startsWith("qt_") && lang.completeBaseName().compare("en")) {
272#if QT_VERSION >= 0x040500
273                        a = menuSettingsLanguage->addAction(langinfo.value(lang.completeBaseName() + "/NativeName",lang.completeBaseName()).toString());
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
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        }
306        if (loadLanguage(action->data().toString())) {
307                settings->setValue("Language",action->data().toString());
308                retranslateUi(this);
309        }
310}
311
312void MainWindow::closeEvent(QCloseEvent *event)
313{
314        settings->setValue("NumCities",spinCities->value());
315#ifndef Q_OS_WINCE
316        // Saving windows state
317        if (settings->value("SavePos",false).toBool()) {
318                settings->beginGroup("MainWindow");
319                settings->setValue("Maximized",isMaximized());
320                if (!isMaximized()) {
321                        settings->setValue("Size",size());
322                        settings->setValue("Position",pos());
323                }
324                settings->endGroup();
325        }
326#endif // Q_OS_WINCE
327        QMainWindow::closeEvent(event);
328}
329
330void MainWindow::numCitiesChanged(int nCities)
331{
332        spinCities->setValue(nCities);
333}
Note: See TracBrowser for help on using the repository browser.