source: tspsg/src/mainwindow.cpp @ aaf2113307

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

+ Implemented File/Save? action.
+ Added "Save Solution" and "Back to Task" buttons to Solution tab for better usability.

  • Increased maximum number of cities to 20. Solving for 18-20 cities is already takes much time, so I thought it doesn't make sense to increase more.
  • Columns and rows are now resized to contents on all platforms.
  • Property mode set to 100644
File size: 20.0 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        initDocStyleSheet();
33        solutionText->document()->setDefaultFont(settings->value("Output/Font",QFont(DEF_FONT_FAMILY,DEF_FONT_SIZE)).value<QFont>());
34        solutionText->setTextColor(settings->value("Output/Color",DEF_FONT_COLOR).value<QColor>());
35        solutionText->setWordWrapMode(QTextOption::WordWrap);
36#ifdef Q_OS_WINCE
37        // A little hack for toolbar icons to have sane size.
38int s = qMin(QApplication::desktop()->screenGeometry().width(),QApplication::desktop()->screenGeometry().height());
39        toolBar->setIconSize(QSize(s / 10,s / 10));
40#endif
41#ifndef Q_OS_WINCE
42        printer = new QPrinter();
43#endif // Q_OS_WINCE
44        groupSettingsLanguageList = new QActionGroup(this);
45        actionSettingsLanguageEnglish->setData("en");
46        actionSettingsLanguageEnglish->setActionGroup(groupSettingsLanguageList);
47        loadLangList();
48        spinCities->setMaximum(MAX_NUM_CITIES);
49        actionSettingsLanguageAutodetect->setChecked(settings->value("Language","").toString().isEmpty());
50        connect(actionFileNew,SIGNAL(triggered()),this,SLOT(actionFileNewTriggered()));
51        connect(actionFileOpen,SIGNAL(triggered()),this,SLOT(actionFileOpenTriggered()));
52        connect(actionFileSave,SIGNAL(triggered()),this,SLOT(actionFileSaveTriggered()));
53        connect(actionFileSaveAsTask,SIGNAL(triggered()),this,SLOT(actionFileSaveAsTaskTriggered()));
54        connect(actionFileSaveAsSolution,SIGNAL(triggered()),this,SLOT(actionFileSaveAsSolutionTriggered()));
55        connect(actionSettingsPreferences,SIGNAL(triggered()),this,SLOT(actionSettingsPreferencesTriggered()));
56        connect(actionSettingsLanguageAutodetect,SIGNAL(triggered(bool)),this,SLOT(actionSettingsLanguageAutodetectTriggered(bool)));
57        connect(groupSettingsLanguageList,SIGNAL(triggered(QAction *)),this,SLOT(groupSettingsLanguageListTriggered(QAction *)));
58        connect(actionHelpAboutQt,SIGNAL(triggered()),qApp,SLOT(aboutQt()));
59        connect(actionHelpAbout,SIGNAL(triggered()),this,SLOT(actionHelpAboutTriggered()));
60#ifndef Q_OS_WINCE
61        connect(actionFilePrintSetup,SIGNAL(triggered()),this,SLOT(actionFilePrintSetupTriggered()));
62#endif // Q_OS_WINCE
63        connect(buttonSolve,SIGNAL(clicked()),this,SLOT(buttonSolveClicked()));
64        connect(buttonRandom,SIGNAL(clicked()),this,SLOT(buttonRandomClicked()));
65        connect(buttonBackToTask,SIGNAL(clicked()),this,SLOT(buttonBackToTaskClicked()));
66        connect(spinCities,SIGNAL(valueChanged(int)),this,SLOT(spinCitiesValueChanged(int)));
67        setCentralWidget(tabWidget);
68QRect rect = geometry();
69#ifndef Q_OS_WINCE
70        if (settings->value("SavePos",false).toBool()) {
71                // Loading of saved window state
72                settings->beginGroup("MainWindow");
73                resize(settings->value("Size",size()).toSize());
74                move(settings->value("Position",pos()).toPoint());
75                if (settings->value("Maximized",false).toBool())
76                        setWindowState(windowState() | Qt::WindowMaximized);
77                settings->endGroup();
78        } else {
79                // Centering main window
80                rect.moveCenter(QApplication::desktop()->availableGeometry(this).center());
81                setGeometry(rect);
82        }
83#endif // Q_OS_WINCE
84        qsrand(QDateTime().currentDateTime().toTime_t());
85        tspmodel = new CTSPModel();
86        connect(tspmodel,SIGNAL(numCitiesChanged(int)),this,SLOT(numCitiesChanged(int)));
87        connect(tspmodel,SIGNAL(dataChanged(const QModelIndex &, const QModelIndex &)),this,SLOT(dataChanged()));
88        connect(tspmodel,SIGNAL(layoutChanged()),this,SLOT(dataChanged()));
89        if ((QCoreApplication::arguments().count() > 1) && (tspmodel->loadTask(QCoreApplication::arguments().at(1))))
90                setFileName(QCoreApplication::arguments().at(1));
91        else {
92                setFileName();
93                spinCities->setValue(settings->value("NumCities",DEF_NUM_CITIES).toInt());
94        }
95        taskView->setModel(tspmodel);
96        setWindowModified(false);
97        taskView->resizeColumnsToContents();
98        taskView->resizeRowsToContents();
99}
100
101void MainWindow::enableSolutionActions(bool enable)
102{
103        buttonSaveSolution->setEnabled(enable);
104        actionFileSaveAsSolution->setEnabled(enable);
105        solutionText->setEnabled(enable);
106        if (!enable)
107                output.clear();
108}
109
110bool MainWindow::loadLanguage(QString lang)
111{
112// i18n
113bool ad = false;
114        if (lang.isEmpty()) {
115                ad = settings->value("Language","").toString().isEmpty();
116                lang = settings->value("Language",QLocale::system().name()).toString();
117        }
118static QTranslator *qtTranslator;
119        if (qtTranslator) {
120                qApp->removeTranslator(qtTranslator);
121                delete qtTranslator;
122                qtTranslator = NULL;
123        }
124        qtTranslator = new QTranslator();
125static QTranslator *translator;
126        if (translator) {
127                qApp->removeTranslator(translator);
128                delete translator;
129        }
130        translator = new QTranslator();
131        if (lang.compare("en") && !lang.startsWith("en_")) {
132                // Trying to load system Qt library translation...
133                if (qtTranslator->load("qt_" + lang,QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
134                        qApp->installTranslator(qtTranslator);
135                else
136                        // No luck. Let's try to load bundled one.
137                        if (qtTranslator->load("qt_" + lang,"i18n"))
138                                qApp->installTranslator(qtTranslator);
139                        else {
140                                delete qtTranslator;
141                                qtTranslator = NULL;
142                        }
143                // Now let's load application translation.
144                if (translator->load(lang,"i18n"))
145                        qApp->installTranslator(translator);
146                else {
147                        if (!ad)
148                                QMessageBox(QMessageBox::Warning,trUtf8("Language change"),trUtf8("Unable to load translation language."),QMessageBox::Ok,this).exec();
149                        delete translator;
150                        translator = NULL;
151                        return false;
152                }
153        }
154        return true;
155}
156
157void MainWindow::initDocStyleSheet()
158{
159QColor color = settings->value("Output/Color",DEF_FONT_COLOR).value<QColor>();
160QColor hilight;
161        if (color.value() < 192)
162                hilight.setHsv(color.hue(),color.saturation(),127 + qRound(color.value() / 2));
163        else
164                hilight.setHsv(color.hue(),color.saturation(),color.value() / 2);
165        solutionText->document()->setDefaultStyleSheet("* {color: " + color.name() +";} p {margin: 0px 10px;} table {margin: 5px;} td {padding: 1px 5px;} .hasalts {color: " + hilight.name() + ";} .selected {color: #A00000; font-weight: bold;} .alternate {color: #008000; font-weight: bold;}");
166        solutionText->document()->setDefaultFont(settings->value("Output/Font",QFont(DEF_FONT_FAMILY,DEF_FONT_SIZE)).value<QFont>());
167}
168
169void MainWindow::setFileName(QString fileName)
170{
171        this->fileName = fileName;
172        setWindowTitle(QString("%1[*] - %2").arg(QFileInfo(fileName).completeBaseName()).arg(trUtf8("Travelling Salesman Problem")));
173}
174
175void MainWindow::spinCitiesValueChanged(int n)
176{
177int count = tspmodel->numCities();
178        tspmodel->setNumCities(n);
179        if (n > count)
180                for (int k = count; k < n; k++) {
181                        taskView->resizeColumnToContents(k);
182                        taskView->resizeRowToContents(k);
183                }
184}
185
186bool MainWindow::maybeSave()
187{
188        if (!isWindowModified())
189                return true;
190int res = QMessageBox(QMessageBox::Warning,trUtf8("Unsaved Changes"),trUtf8("Would you like to save changes in current task?"),QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel,this).exec();
191        if (res == QMessageBox::Save)
192                return saveTask();
193        else if (res == QMessageBox::Cancel)
194                return false;
195        else
196                return true;
197}
198
199void MainWindow::actionFileNewTriggered()
200{
201        if (!maybeSave())
202                return;
203        tspmodel->clear();
204        taskView->resizeColumnsToContents();
205        taskView->resizeRowsToContents();
206        setFileName();
207        setWindowModified(false);
208        tabWidget->setCurrentIndex(0);
209        solutionText->clear();
210        enableSolutionActions(false);
211}
212
213void MainWindow::actionFileOpenTriggered()
214{
215        if (!maybeSave())
216                return;
217QFileDialog od(this);
218        od.setAcceptMode(QFileDialog::AcceptOpen);
219        od.setFileMode(QFileDialog::ExistingFile);
220QStringList filters(trUtf8("All Supported Formats") + " (*.tspt *.zkt)");
221        filters.append(trUtf8("%1 Task Files").arg("TSPSG") + " (*.tspt)");
222        filters.append(trUtf8("%1 Task Files").arg("ZKomModRd") + " (*.zkt)");
223        filters.append(trUtf8("All Files") + " (*)");
224        od.setNameFilters(filters);
225        if (od.exec() != QDialog::Accepted)
226                return;
227QStringList files = od.selectedFiles();
228        if (files.empty())
229                return;
230        QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
231        if (!tspmodel->loadTask(files.first())) {
232                QApplication::restoreOverrideCursor();
233                return;
234        }
235        setFileName(files.first());
236        taskView->resizeColumnsToContents();
237        taskView->resizeRowsToContents();
238        tabWidget->setCurrentIndex(0);
239        setWindowModified(false);
240        solutionText->clear();
241        enableSolutionActions(false);
242        QApplication::restoreOverrideCursor();
243}
244
245void MainWindow::actionFileSaveTriggered()
246{
247        if ((fileName == trUtf8("Untitled") + ".tspt") || (!fileName.endsWith(".tspt",Qt::CaseInsensitive)))
248                saveTask();
249        else {
250                QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
251                if (tspmodel->saveTask(fileName))
252                        setWindowModified(false);
253                QApplication::restoreOverrideCursor();
254        }
255}
256
257void MainWindow::actionFileSaveAsTaskTriggered()
258{
259        saveTask();
260}
261
262void MainWindow::actionFileSaveAsSolutionTriggered()
263{
264static QString selectedFile;
265        if (selectedFile.isEmpty())
266                selectedFile = "solution.html";
267QFileDialog sd(this);
268        sd.setAcceptMode(QFileDialog::AcceptSave);
269QStringList filters(trUtf8("HTML Files") + " (*.html *.htm)");
270#if QT_VERSION >= 0x040500
271        filters.append(trUtf8("OpenDocument Files") + " (*.odt)");
272#endif // QT_VERSION >= 0x040500
273        filters.append(trUtf8("All Files") + " (*)");
274        sd.setNameFilters(filters);
275        sd.selectFile(selectedFile);
276        if (sd.exec() != QDialog::Accepted)
277                return;
278QStringList files = sd.selectedFiles();
279        if (files.empty())
280                return;
281        selectedFile = files.first();
282#if QT_VERSION >= 0x040500
283QTextDocumentWriter dw(selectedFile);
284        if (!(selectedFile.endsWith(".htm",Qt::CaseInsensitive) || selectedFile.endsWith(".html",Qt::CaseInsensitive) || selectedFile.endsWith(".odt",Qt::CaseInsensitive) || selectedFile.endsWith(".txt",Qt::CaseInsensitive)))
285                dw.setFormat("plaintext");
286        dw.write(solutionText->document());
287#else
288        // Qt < 4.5 has no QTextDocumentWriter class
289QFile file(selectedFile);
290        if (!file.open(QFile::WriteOnly))
291                return;
292QTextStream ts(&file);
293        ts.setCodec(QTextCodec::codecForName("UTF-8"));
294        ts << solutionText->document()->toHtml("UTF-8");
295#endif // QT_VERSION >= 0x040500
296}
297
298bool MainWindow::saveTask() {
299QFileDialog sd(this);
300        sd.setAcceptMode(QFileDialog::AcceptSave);
301QStringList filters(trUtf8("%1 Task File").arg("TSPSG") + " (*.tspt)");
302        filters.append(trUtf8("All Files") + " (*)");
303        sd.setNameFilters(filters);
304        sd.setDefaultSuffix("tspt");
305        if (fileName.endsWith(".tspt",Qt::CaseInsensitive))
306                sd.selectFile(fileName);
307        else
308                sd.selectFile(QFileInfo(fileName).canonicalPath() + "/" + QFileInfo(fileName).completeBaseName() + ".tspt");
309        if (sd.exec() != QDialog::Accepted)
310                return false;
311QStringList files = sd.selectedFiles();
312        if (files.empty())
313                return false;
314        QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
315        if (tspmodel->saveTask(files.first())) {
316                setFileName(files.first());
317                setWindowModified(false);
318                QApplication::restoreOverrideCursor();
319                return true;
320        }
321        QApplication::restoreOverrideCursor();
322        return false;
323}
324
325void MainWindow::actionSettingsPreferencesTriggered()
326{
327SettingsDialog sd(this);
328        if (sd.exec() != QDialog::Accepted)
329                return;
330        if (sd.colorChanged() || sd.fontChanged()) {
331                initDocStyleSheet();
332                if (!output.isEmpty() && sd.colorChanged() && (QMessageBox(QMessageBox::Question,trUtf8("Settings Changed"),trUtf8("You have changed color settings.\nDo you wish to apply them to current solution text?"),QMessageBox::Yes | QMessageBox::No,this).exec() == QMessageBox::Yes)) {
333                        QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
334                        solutionText->clear();
335                        solutionText->setHtml(output.join(""));
336                        QApplication::restoreOverrideCursor();
337                }
338        }
339}
340
341#ifndef Q_OS_WINCE
342void MainWindow::actionFilePrintSetupTriggered()
343{
344QPrintDialog pd(printer,this);
345#if QT_VERSION >= 0x040500
346        // No such methods in Qt < 4.5
347        pd.setOption(QAbstractPrintDialog::PrintSelection,false);
348        pd.setOption(QAbstractPrintDialog::PrintPageRange,false);
349#endif
350        pd.exec();
351}
352#endif // Q_OS_WINCE
353
354void MainWindow::buttonRandomClicked()
355{
356        tspmodel->randomize();
357        setWindowModified(true);
358        taskView->resizeColumnsToContents();
359        taskView->resizeRowsToContents();
360}
361
362void MainWindow::buttonBackToTaskClicked()
363{
364        tabWidget->setCurrentIndex(0);
365}
366
367void MainWindow::outputMatrix(tMatrix matrix, QStringList &output, int nRow, int nCol)
368{
369int n = spinCities->value();
370QString line="";
371        output.append("<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
372        for (int r = 0; r < n; r++) {
373                line = "<tr>";
374                for (int c = 0; c < n; c++) {
375                        if (matrix[r][c] == INFINITY)
376                                line += "<td align=\"center\">"INFSTR"</td>";
377                        else if ((r == nRow) && (c == nCol))
378                                line += "<td align=\"center\" class=\"selected\">" + QVariant(matrix[r][c]).toString() + "</td>";
379                        else
380                                line += "<td align=\"center\">" + QVariant(matrix[r][c]).toString() + "</td>";
381                }
382                line += "</tr>";
383                output.append(line);
384        }
385        output.append("</table>");
386}
387
388void MainWindow::buttonSolveClicked()
389{
390tMatrix matrix;
391QList<double> row;
392int n = spinCities->value();
393bool ok;
394        for (int r = 0; r < n; r++) {
395                row.clear();
396                for (int c = 0; c < n; c++) {
397                        row.append(tspmodel->index(r,c).data(Qt::UserRole).toDouble(&ok));
398                        if (!ok) {
399                                QMessageBox(QMessageBox::Critical,trUtf8("Data error"),trUtf8("Error in cell [Row %1; Column %2]: Invalid data format.").arg(r + 1).arg(c + 1),QMessageBox::Ok,this).exec();
400                                return;
401                        }
402                }
403                matrix.append(row);
404        }
405CTSPSolver solver;
406sStep *root = solver.solve(n,matrix,this);
407        if (!root)
408                return;
409        QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
410QColor color = settings->value("Output/Color",DEF_FONT_COLOR).value<QColor>();
411        output.clear();
412        output.append("<p>" + trUtf8("Variant #%1").arg(spinVariant->value()) + "</p>");
413        output.append("<p>" + trUtf8("Task:") + "</p>");
414        outputMatrix(matrix,output);
415        output.append("<hr>");
416        output.append("<p>" + trUtf8("Solution of Variant #%1 task").arg(spinVariant->value()) + "</p>");
417sStep *step = root;
418        n = 1;
419QString path = "";
420        while (n <= spinCities->value()) {
421                if (step->prNode->prNode != NULL || (step->prNode->prNode == NULL && step->plNode->prNode == NULL)) {
422                        if (n != spinCities->value()) {
423                                output.append("<p>" + trUtf8("Step #%1").arg(n++) + "</p>");
424                                outputMatrix(step->matrix,output,step->candidate.nRow,step->candidate.nCol);
425                                if (step->alts)
426                                        output.append("<p class=\"hasalts\">" + trUtf8("This step has alternate candidates for branching.") + "</p>");
427                                output.append("<p>&nbsp;</p>");
428                        }
429                        path += QString(" (%1,%2)").arg(step->candidate.nRow + 1).arg(step->candidate.nCol + 1);
430                }
431                if (step->prNode->prNode != NULL)
432                        step = step->prNode;
433                else if (step->plNode->prNode != NULL)
434                        step = step->plNode;
435                else
436                        break;
437        }
438        output.append("<p>" + trUtf8("Optimal path:") + "</p>");
439        output.append("<p>&nbsp;&nbsp;" + path + "</p>");
440        output.append("<p>" + trUtf8("The price is <b>%1</b> units.").arg(step->price) + "</p>");
441        solutionText->setHtml(output.join(""));
442        solutionText->setDocumentTitle(trUtf8("Solution of Variant #%1 task").arg(spinVariant->value()));
443        enableSolutionActions();
444        tabWidget->setCurrentIndex(1);
445        QApplication::restoreOverrideCursor();
446}
447
448void MainWindow::actionHelpAboutTriggered()
449{
450        // TODO: Normal about window :-)
451QString about = QString::fromUtf8("TSPSG - TSP Solver and Generator\n");
452        about += QString::fromUtf8("    Version: "BUILD_VERSION"\n");
453        about += QString::fromUtf8("    Copyright (C) 2007-%1 Lёppa <contacts[at]oleksii[dot]name>\n").arg(QDate::currentDate().toString("yyyy"));
454        about += QString::fromUtf8("Target OS: %1\n").arg(OS);
455        about += "Qt library:\n";
456        about += QString::fromUtf8("    Compile time: %1\n").arg(QT_VERSION_STR);
457        about += QString::fromUtf8("    Runtime: %1\n").arg(qVersion());
458        about += QString::fromUtf8("Built on %1 at %2\n").arg(__DATE__).arg(__TIME__);
459        about += "\n";
460        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.";
461        QMessageBox(QMessageBox::Information,"About",about,QMessageBox::Ok,this).exec();
462}
463
464void MainWindow::loadLangList()
465{
466QSettings langinfo("i18n/languages.ini",QSettings::IniFormat);
467#if QT_VERSION >= 0x040500
468        // In Qt < 4.5 QSettings doesn't have method setIniCodec.
469        langinfo.setIniCodec("UTF-8");
470#endif
471QDir dir("i18n","*.qm",QDir::Name | QDir::IgnoreCase,QDir::Files);
472        if (!dir.exists())
473                return;
474QFileInfoList langs = dir.entryInfoList();
475        if (langs.size() <= 0)
476                return;
477QAction *a;
478        for (int k = 0; k < langs.size(); k++) {
479                QFileInfo lang = langs.at(k);
480                if (!lang.completeBaseName().startsWith("qt_") && lang.completeBaseName().compare("en")) {
481#if QT_VERSION >= 0x040500
482                        a = menuSettingsLanguage->addAction(langinfo.value(lang.completeBaseName() + "/NativeName",lang.completeBaseName()).toString());
483#else
484                        // We use Name if Qt < 4.5 because NativeName is in UTF-8, QSettings
485                        // reads .ini file as ASCII and there is no way to set file encoding.
486                        a = menuSettingsLanguage->addAction(langinfo.value(lang.completeBaseName() + "/Name",lang.completeBaseName()).toString());
487#endif
488                        a->setData(lang.completeBaseName());
489                        a->setCheckable(true);
490                        a->setActionGroup(groupSettingsLanguageList);
491                        if (settings->value("Language",QLocale::system().name()).toString().startsWith(lang.completeBaseName()))
492                                a->setChecked(true);
493                }
494        }
495}
496
497void MainWindow::actionSettingsLanguageAutodetectTriggered(bool checked)
498{
499        if (checked) {
500                settings->remove("Language");
501                QMessageBox(QMessageBox::Information,trUtf8("Language change"),trUtf8("Language will be autodetected on next application start."),QMessageBox::Ok,this).exec();
502        } else
503                settings->setValue("Language",groupSettingsLanguageList->checkedAction()->data().toString());
504}
505
506void MainWindow::groupSettingsLanguageListTriggered(QAction *action)
507{
508        if (actionSettingsLanguageAutodetect->isChecked()) {
509                // We have language autodetection. It needs to be disabled to change language.
510                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) {
511                        actionSettingsLanguageAutodetect->trigger();
512                } else
513                        return;
514        }
515bool untitled = (fileName == trUtf8("Untitled") + ".tspt");
516        if (loadLanguage(action->data().toString())) {
517                settings->setValue("Language",action->data().toString());
518                retranslateUi(this);
519                if (untitled)
520                        setFileName();
521        }
522}
523
524void MainWindow::closeEvent(QCloseEvent *event)
525{
526        if (!maybeSave()) {
527                event->ignore();
528                return;
529        }
530        settings->setValue("NumCities",spinCities->value());
531#ifndef Q_OS_WINCE
532        // Saving windows state
533        if (settings->value("SavePos",false).toBool()) {
534                settings->beginGroup("MainWindow");
535                settings->setValue("Maximized",isMaximized());
536                if (!isMaximized()) {
537                        settings->setValue("Size",size());
538                        settings->setValue("Position",pos());
539                }
540                settings->endGroup();
541        }
542#endif // Q_OS_WINCE
543        QMainWindow::closeEvent(event);
544}
545
546void MainWindow::dataChanged()
547{
548        setWindowModified(true);
549}
550
551void MainWindow::numCitiesChanged(int nCities)
552{
553        blockSignals(true);
554        spinCities->setValue(nCities);
555        blockSignals(false);
556}
Note: See TracBrowser for help on using the repository browser.