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

Last change on this file since 135 was 135, checked in by laleppa, 14 years ago
  • TSPSG now compiles when QtConcurrent? is not available (QT_NO_CONCURRENT is set).
  • Don't set non-existent icons under Windows Mobile.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Id URL
File size: 56.3 KB
Line 
1/*
2 *  TSPSG: TSP Solver and Generator
3 *  Copyright (C) 2007-2010 Lёppa <contacts[at]oleksii[dot]name>
4 *
5 *  $Id: mainwindow.cpp 135 2010-09-10 17:49:32Z laleppa $
6 *  $URL: https://tspsg.svn.sourceforge.net/svnroot/tspsg/trunk/src/mainwindow.cpp $
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
26#ifdef Q_OS_WIN32
27        #include "shobjidl.h"
28#endif
29
30#ifdef _T_T_L_
31#include "_.h"
32_C_ _R_ _Y_ _P_ _T_
33#endif
34
35/*!
36 * \brief Class constructor.
37 * \param parent Main Window parent widget.
38 *
39 *  Initializes Main Window and creates its layout based on target OS.
40 *  Loads TSPSG settings and opens a task file if it was specified as a commandline parameter.
41 */
42MainWindow::MainWindow(QWidget *parent)
43        : QMainWindow(parent)
44{
45        settings = new QSettings(QSettings::IniFormat, QSettings::UserScope, "TSPSG", "tspsg", this);
46
47        if (settings->contains("Style")) {
48QStyle *s = QStyleFactory::create(settings->value("Style").toString());
49                if (s != NULL)
50                        QApplication::setStyle(s);
51                else
52                        settings->remove("Style");
53        }
54
55        loadLanguage();
56        setupUi();
57        setAcceptDrops(true);
58
59        initDocStyleSheet();
60
61#ifndef QT_NO_PRINTER
62        printer = new QPrinter(QPrinter::HighResolution);
63#endif // QT_NO_PRINTER
64
65#ifdef Q_OS_WINCE_WM
66        currentGeometry = QApplication::desktop()->availableGeometry(0);
67        // We need to react to SIP show/hide and resize the window appropriately
68        connect(QApplication::desktop(), SIGNAL(workAreaResized(int)), SLOT(desktopResized(int)));
69#endif // Q_OS_WINCE_WM
70        connect(actionFileNew, SIGNAL(triggered()), SLOT(actionFileNewTriggered()));
71        connect(actionFileOpen, SIGNAL(triggered()), SLOT(actionFileOpenTriggered()));
72        connect(actionFileSave, SIGNAL(triggered()), SLOT(actionFileSaveTriggered()));
73        connect(actionFileSaveAsTask, SIGNAL(triggered()), SLOT(actionFileSaveAsTaskTriggered()));
74        connect(actionFileSaveAsSolution, SIGNAL(triggered()), SLOT(actionFileSaveAsSolutionTriggered()));
75#ifndef QT_NO_PRINTER
76        connect(actionFilePrintPreview, SIGNAL(triggered()), SLOT(actionFilePrintPreviewTriggered()));
77        connect(actionFilePrint, SIGNAL(triggered()), SLOT(actionFilePrintTriggered()));
78#endif // QT_NO_PRINTER
79#ifndef HANDHELD
80        connect(actionSettingsToolbarsConfigure, SIGNAL(triggered()), SLOT(actionSettingsToolbarsConfigureTriggered()));
81#endif // HANDHELD
82        connect(actionSettingsPreferences, SIGNAL(triggered()), SLOT(actionSettingsPreferencesTriggered()));
83#ifdef Q_OS_WIN32
84        connect(actionHelpCheck4Updates, SIGNAL(triggered()), SLOT(actionHelpCheck4UpdatesTriggered()));
85#endif // Q_OS_WIN32
86        connect(actionSettingsLanguageAutodetect, SIGNAL(triggered(bool)), SLOT(actionSettingsLanguageAutodetectTriggered(bool)));
87        connect(groupSettingsLanguageList, SIGNAL(triggered(QAction *)), SLOT(groupSettingsLanguageListTriggered(QAction *)));
88        connect(actionSettingsStyleSystem, SIGNAL(triggered(bool)), SLOT(actionSettingsStyleSystemTriggered(bool)));
89        connect(groupSettingsStyleList, SIGNAL(triggered(QAction*)), SLOT(groupSettingsStyleListTriggered(QAction*)));
90        connect(actionHelpAboutQt, SIGNAL(triggered()), qApp, SLOT(aboutQt()));
91        connect(actionHelpAbout, SIGNAL(triggered()), SLOT(actionHelpAboutTriggered()));
92
93        connect(buttonSolve, SIGNAL(clicked()), SLOT(buttonSolveClicked()));
94        connect(buttonRandom, SIGNAL(clicked()), SLOT(buttonRandomClicked()));
95        connect(buttonBackToTask, SIGNAL(clicked()), SLOT(buttonBackToTaskClicked()));
96        connect(spinCities, SIGNAL(valueChanged(int)), SLOT(spinCitiesValueChanged(int)));
97
98#ifndef HANDHELD
99        // Centering main window
100QRect rect = geometry();
101        rect.moveCenter(QApplication::desktop()->availableGeometry(this).center());
102        setGeometry(rect);
103        if (settings->value("SavePos", DEF_SAVEPOS).toBool()) {
104                // Loading of saved window state
105                settings->beginGroup("MainWindow");
106                restoreGeometry(settings->value("Geometry").toByteArray());
107                restoreState(settings->value("State").toByteArray());
108                settings->endGroup();
109        }
110#endif // HANDHELD
111
112        tspmodel = new CTSPModel(this);
113        taskView->setModel(tspmodel);
114        connect(tspmodel, SIGNAL(numCitiesChanged(int)), SLOT(numCitiesChanged(int)));
115        connect(tspmodel, SIGNAL(dataChanged(const QModelIndex &, const QModelIndex &)), SLOT(dataChanged(const QModelIndex &, const QModelIndex &)));
116        connect(tspmodel, SIGNAL(layoutChanged()), SLOT(dataChanged()));
117        if ((QCoreApplication::arguments().count() > 1) && (tspmodel->loadTask(QCoreApplication::arguments().at(1))))
118                setFileName(QCoreApplication::arguments().at(1));
119        else {
120                setFileName();
121                spinCities->setValue(settings->value("NumCities",DEF_NUM_CITIES).toInt());
122                spinCitiesValueChanged(spinCities->value());
123        }
124        setWindowModified(false);
125}
126
127MainWindow::~MainWindow()
128{
129#ifndef QT_NO_PRINTER
130        delete printer;
131#endif
132}
133
134/* Privates **********************************************************/
135
136void MainWindow::actionFileNewTriggered()
137{
138        if (!maybeSave())
139                return;
140        QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
141        tspmodel->clear();
142        setFileName();
143        setWindowModified(false);
144        tabWidget->setCurrentIndex(0);
145        solutionText->clear();
146        toggleSolutionActions(false);
147        QApplication::restoreOverrideCursor();
148}
149
150void MainWindow::actionFileOpenTriggered()
151{
152        if (!maybeSave())
153                return;
154
155QStringList filters(tr("All Supported Formats") + " (*.tspt *.zkt)");
156        filters.append(tr("%1 Task Files").arg("TSPSG") + " (*.tspt)");
157        filters.append(tr("%1 Task Files").arg("ZKomModRd") + " (*.zkt)");
158        filters.append(tr("All Files") + " (*)");
159
160QString file;
161        if ((fileName == tr("Untitled") + ".tspt") && settings->value("SaveLastUsed", DEF_SAVE_LAST_USED).toBool())
162                file = settings->value(OS"/LastUsed/TaskLoadPath").toString();
163        else
164                file = QFileInfo(fileName).path();
165QFileDialog::Options opts = settings->value("UseNativeDialogs", DEF_USE_NATIVE_DIALOGS).toBool() ? QFileDialog::Options() : QFileDialog::DontUseNativeDialog;
166        file = QFileDialog::getOpenFileName(this, tr("Task Load"), file, filters.join(";;"), NULL, opts);
167        if (file.isEmpty() || !QFileInfo(file).isFile())
168                return;
169        if (settings->value("SaveLastUsed", DEF_SAVE_LAST_USED).toBool())
170                settings->setValue(OS"/LastUsed/TaskLoadPath", QFileInfo(file).path());
171
172        if (!tspmodel->loadTask(file))
173                return;
174        setFileName(file);
175        tabWidget->setCurrentIndex(0);
176        setWindowModified(false);
177        solutionText->clear();
178        toggleSolutionActions(false);
179}
180
181bool MainWindow::actionFileSaveTriggered()
182{
183        if ((fileName == tr("Untitled") + ".tspt") || !fileName.endsWith(".tspt", Qt::CaseInsensitive))
184                return saveTask();
185        else
186                if (tspmodel->saveTask(fileName)) {
187                        setWindowModified(false);
188                        return true;
189                } else
190                        return false;
191}
192
193void MainWindow::actionFileSaveAsTaskTriggered()
194{
195        saveTask();
196}
197
198void MainWindow::actionFileSaveAsSolutionTriggered()
199{
200static QString selectedFile;
201        if (selectedFile.isEmpty()) {
202                if (settings->value("SaveLastUsed", DEF_SAVE_LAST_USED).toBool()) {
203                        selectedFile = settings->value(OS"/LastUsed/SolutionSavePath").toString();
204                }
205        } else
206                selectedFile = QFileInfo(selectedFile).path();
207        if (!selectedFile.isEmpty())
208                selectedFile.append("/");
209        if (fileName == tr("Untitled") + ".tspt") {
210#ifndef QT_NO_PRINTER
211                selectedFile += "solution.pdf";
212#else
213                selectedFile += "solution.html";
214#endif // QT_NO_PRINTER
215        } else {
216#ifndef QT_NO_PRINTER
217                selectedFile += QFileInfo(fileName).completeBaseName() + ".pdf";
218#else
219                selectedFile += QFileInfo(fileName).completeBaseName() + ".html";
220#endif // QT_NO_PRINTER
221        }
222
223QStringList filters;
224#ifndef QT_NO_PRINTER
225        filters.append(tr("PDF Files") + " (*.pdf)");
226#endif
227        filters.append(tr("HTML Files") + " (*.html *.htm)");
228        filters.append(tr("OpenDocument Files") + " (*.odt)");
229        filters.append(tr("All Files") + " (*)");
230
231QFileDialog::Options opts(settings->value("UseNativeDialogs", DEF_USE_NATIVE_DIALOGS).toBool() ? QFileDialog::Options() : QFileDialog::DontUseNativeDialog);
232QString file = QFileDialog::getSaveFileName(this, QString(), selectedFile, filters.join(";;"), NULL, opts);
233        if (file.isEmpty())
234                return;
235        selectedFile = file;
236        if (settings->value("SaveLastUsed", DEF_SAVE_LAST_USED).toBool())
237                settings->setValue(OS"/LastUsed/SolutionSavePath", QFileInfo(selectedFile).path());
238        QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
239#ifndef QT_NO_PRINTER
240        if (selectedFile.endsWith(".pdf",Qt::CaseInsensitive)) {
241QPrinter printer(QPrinter::HighResolution);
242                printer.setOutputFormat(QPrinter::PdfFormat);
243                printer.setOutputFileName(selectedFile);
244                solutionText->document()->print(&printer);
245                QApplication::restoreOverrideCursor();
246                return;
247        }
248#endif
249        if (selectedFile.endsWith(".htm", Qt::CaseInsensitive) || selectedFile.endsWith(".html", Qt::CaseInsensitive)) {
250QFile file(selectedFile);
251                if (!file.open(QFile::WriteOnly)) {
252                        QApplication::restoreOverrideCursor();
253                        QMessageBox::critical(this, tr("Solution Save"), tr("Unable to save the solution.\nError: %1").arg(file.errorString()));
254                        return;
255                }
256QFileInfo fi(selectedFile);
257QString format = settings->value("Output/GraphImageFormat", DEF_GRAPH_IMAGE_FORMAT).toString();
258#if !defined(NOSVG)
259        if (!QImageWriter::supportedImageFormats().contains(format.toAscii()) && (format != "svg")) {
260#else // NOSVG
261        if (!QImageWriter::supportedImageFormats().contains(format.toAscii())) {
262#endif // NOSVG
263                format = DEF_GRAPH_IMAGE_FORMAT;
264                settings->remove("Output/GraphImageFormat");
265        }
266QString html = solutionText->document()->toHtml("UTF-8"),
267                img =  fi.completeBaseName() + "." + format;
268                html.replace(QRegExp("<img\\s+src=\"tspsg://graph.pic\""), QString("<img src=\"%1\" alt=\"%2\"").arg(img, tr("Solution Graph")));
269
270                // Saving solution text as HTML
271QTextStream ts(&file);
272                ts.setCodec(QTextCodec::codecForName("UTF-8"));
273                ts << html;
274                file.close();
275
276                // Saving solution graph as SVG or PNG (depending on settings and SVG support)
277#if !defined(NOSVG)
278                if (format == "svg") {
279QSvgGenerator svg;
280                        svg.setSize(QSize(graph.width(), graph.height()));
281                        svg.setResolution(graph.logicalDpiX());
282                        svg.setFileName(fi.path() + "/" + img);
283                        svg.setTitle(tr("Solution Graph"));
284                        svg.setDescription(tr("Generated with %1").arg(QApplication::applicationName()));
285QPainter p;
286                        p.begin(&svg);
287                        p.drawPicture(1, 1, graph);
288                        p.end();
289                } else {
290#endif // NOSVG
291QImage i(graph.width(), graph.height(), QImage::Format_ARGB32);
292                        i.fill(0x00FFFFFF);
293QPainter p;
294                        p.begin(&i);
295                        p.drawPicture(1, 1, graph);
296                        p.end();
297QImageWriter pic(fi.path() + "/" + img);
298                        if (pic.supportsOption(QImageIOHandler::Description)) {
299                                pic.setText("Title", "Solution Graph");
300                                pic.setText("Software", QApplication::applicationName());
301                        }
302                        if (format == "png")
303                                pic.setQuality(5);
304                        else if (format == "jpeg")
305                                pic.setQuality(80);
306                        if (!pic.write(i)) {
307                                QApplication::restoreOverrideCursor();
308                                QMessageBox::critical(this, tr("Solution Save"), tr("Unable to save the solution graph.\nError: %1").arg(pic.errorString()));
309                                return;
310                        }
311#if !defined(NOSVG)
312                }
313#endif // NOSVG
314        } else {
315QTextDocumentWriter dw(selectedFile);
316                if (!selectedFile.endsWith(".odt",Qt::CaseInsensitive))
317                        dw.setFormat("plaintext");
318                if (!dw.write(solutionText->document()))
319                        QMessageBox::critical(this, tr("Solution Save"), tr("Unable to save the solution.\nError: %1").arg(dw.device()->errorString()));
320        }
321        QApplication::restoreOverrideCursor();
322}
323
324#ifndef QT_NO_PRINTER
325void MainWindow::actionFilePrintPreviewTriggered()
326{
327QPrintPreviewDialog ppd(printer, this);
328        connect(&ppd,SIGNAL(paintRequested(QPrinter *)),SLOT(printPreview(QPrinter *)));
329        ppd.exec();
330}
331
332void MainWindow::actionFilePrintTriggered()
333{
334QPrintDialog pd(printer,this);
335        if (pd.exec() != QDialog::Accepted)
336                return;
337        QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
338        solutionText->print(printer);
339        QApplication::restoreOverrideCursor();
340}
341#endif // QT_NO_PRINTER
342
343void MainWindow::actionSettingsPreferencesTriggered()
344{
345SettingsDialog sd(this);
346        if (sd.exec() != QDialog::Accepted)
347                return;
348        if (sd.colorChanged() || sd.fontChanged()) {
349                if (!solutionText->document()->isEmpty() && sd.colorChanged())
350                        QMessageBox::information(this, tr("Settings Changed"), tr("You have changed color settings.\nThey will be applied to the next solution output."));
351                initDocStyleSheet();
352        }
353        if (sd.translucencyChanged() != 0)
354                toggleTranclucency(sd.translucencyChanged() == 1);
355}
356
357void MainWindow::actionSettingsLanguageAutodetectTriggered(bool checked)
358{
359        if (checked) {
360                settings->remove("Language");
361                QMessageBox::information(this, tr("Language change"), tr("Language will be autodetected on the next %1 start.").arg(QApplication::applicationName()));
362        } else
363                settings->setValue("Language", groupSettingsLanguageList->checkedAction()->data().toString());
364}
365
366void MainWindow::groupSettingsLanguageListTriggered(QAction *action)
367{
368        if (actionSettingsLanguageAutodetect->isChecked()) {
369                // We have language autodetection. It needs to be disabled to change language.
370                if (QMessageBox::question(this, tr("Language change"), tr("You have language autodetection turned on.\nIt needs to be off.\nDo you wish to turn it off?"), QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes) {
371                        actionSettingsLanguageAutodetect->trigger();
372                } else
373                        return;
374        }
375bool untitled = (fileName == tr("Untitled") + ".tspt");
376        if (loadLanguage(action->data().toString())) {
377                QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
378                settings->setValue("Language",action->data().toString());
379                retranslateUi();
380                if (untitled)
381                        setFileName();
382#ifdef Q_OS_WIN32
383                if (QtWin::isCompositionEnabled() && settings->value("UseTranslucency", DEF_USE_TRANSLUCENCY).toBool())  {
384                        toggleStyle(labelVariant, true);
385                        toggleStyle(labelCities, true);
386                }
387#endif
388                QApplication::restoreOverrideCursor();
389                if (!solutionText->document()->isEmpty())
390                        QMessageBox::information(this, tr("Settings Changed"), tr("You have changed the application language.\nTo get current solution output in the new language\nyou need to re-run the solution process."));
391        }
392}
393
394void MainWindow::actionSettingsStyleSystemTriggered(bool checked)
395{
396        if (checked) {
397                settings->remove("Style");
398                QMessageBox::information(this, tr("Style Change"), tr("To apply the default style you need to restart %1.").arg(QApplication::applicationName()));
399        } else {
400                settings->setValue("Style", groupSettingsStyleList->checkedAction()->text());
401        }
402}
403
404void MainWindow::groupSettingsStyleListTriggered(QAction *action)
405{
406QStyle *s = QStyleFactory::create(action->text());
407        if (s != NULL) {
408                QApplication::setStyle(s);
409                settings->setValue("Style", action->text());
410                actionSettingsStyleSystem->setChecked(false);
411        }
412}
413
414#ifndef HANDHELD
415void MainWindow::actionSettingsToolbarsConfigureTriggered()
416{
417QtToolBarDialog dlg(this);
418        dlg.setToolBarManager(toolBarManager);
419        dlg.exec();
420QToolButton *tb = static_cast<QToolButton *>(toolBarMain->widgetForAction(actionFileSave));
421        if (tb != NULL) {
422                tb->setMenu(menuFileSaveAs);
423                tb->setPopupMode(QToolButton::MenuButtonPopup);
424                tb->resize(tb->sizeHint());
425        }
426
427        loadToolbarList();
428}
429#endif // HANDHELD
430
431#ifdef Q_OS_WIN32
432void MainWindow::actionHelpCheck4UpdatesTriggered()
433{
434        if (!hasUpdater()) {
435                QMessageBox::warning(this, tr("Unsupported Feature"), tr("Sorry, but this feature is not supported on your platform\nor support for this feature was not installed."));
436                return;
437        }
438
439        QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
440        QProcess::execute("updater/Update.exe -name=\"TSPSG: TSP Solver and Generator\" -check=\"freeupdate\"");
441        QApplication::restoreOverrideCursor();
442}
443#endif // Q_OS_WIN32
444
445void MainWindow::actionHelpAboutTriggered()
446{
447        QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
448
449QString title;
450        title += QString("<b>%1</b><br>").arg(QApplication::applicationName());
451        title += QString("%1: <b>%2</b><br>").arg(tr("Version"), QApplication::applicationVersion());
452#ifndef HANDHELD
453        title += QString("<b>&copy; 2007-%1 <a href=\"http://%2/\">%3</a></b><br>").arg(QDate::currentDate().toString("yyyy"), QApplication::organizationDomain(), QApplication::organizationName());
454#endif // HANDHELD
455        title += QString("<b><a href=\"http://tspsg.info/\">http://tspsg.info/</a></b>");
456
457QString about;
458        about += QString("%1: <b>%2</b><br>").arg(tr("Target OS (ARCH)"), PLATFROM);
459#ifndef STATIC_BUILD
460        about += QString("%1 (%2):<br>").arg(tr("Qt library"), tr("shared"));
461        about += QString("&nbsp;&nbsp;&nbsp;&nbsp;%1: <b>%2</b><br>").arg(tr("Build time"), QT_VERSION_STR);
462        about += QString("&nbsp;&nbsp;&nbsp;&nbsp;%1: <b>%2</b><br>").arg(tr("Runtime"), qVersion());
463#else
464        about += QString("%1: <b>%2</b> (%3)<br>").arg(tr("Qt library"), QT_VERSION_STR, tr("static"));
465#endif // STATIC_BUILD
466        about += tr("Buid <b>%1</b>, built on <b>%2</b> at <b>%3</b> with <b>%4</b> compiler.").arg(BUILD_NUMBER).arg(__DATE__).arg(__TIME__).arg(COMPILER) + "<br>";
467        about += QString("%1: <b>%2</b><br>").arg(tr("Algorithm"), CTSPSolver::getVersionId());
468        about += "<br>";
469        about += tr("This program is free software: you can redistribute it and/or modify<br>\n"
470                "it under the terms of the GNU General Public License as published by<br>\n"
471                "the Free Software Foundation, either version 3 of the License, or<br>\n"
472                "(at your option) any later version.<br>\n"
473                "<br>\n"
474                "This program is distributed in the hope that it will be useful,<br>\n"
475                "but WITHOUT ANY WARRANTY; without even the implied warranty of<br>\n"
476                "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the<br>\n"
477                "GNU General Public License for more details.<br>\n"
478                "<br>\n"
479                "You should have received a copy of the GNU General Public License<br>\n"
480                "along with TSPSG.  If not, see <a href=\"http://www.gnu.org/licenses/\">www.gnu.org/licenses/</a>.");
481
482QString credits;
483        credits += tr("%1 was created using <b>Qt&nbsp;framework</b> licensed "
484                "under the terms of the GNU Lesser General Public License,<br>\n"
485                "see <a href=\"http://qt.nokia.com/\">qt.nokia.com</a><br>\n"
486                "<br>\n"
487                "Most icons used in %1 are part of <b>Oxygen&nbsp;Icons</b> project "
488                "licensed according to the GNU Lesser General Public License,<br>\n"
489                "see <a href=\"http://www.oxygen-icons.org/\">www.oxygen-icons.org</a><br>\n"
490                "<br>\n"
491                "Country flag icons used in %1 are part of the free "
492                "<b>Flag&nbsp;Icons</b> collection created by <b>IconDrawer</b>,<br>\n"
493                "see <a href=\"http://www.icondrawer.com/\">www.icondrawer.com</a><br>\n"
494                "<br>\n"
495                "%1 comes with the default \"embedded\" font <b>DejaVu&nbsp;LGC&nbsp;Sans&nbsp;"
496                "Mono</b> from the <b>DejaVu fonts</b> licensed under a Free license</a>,<br>\n"
497                "see <a href=\"http://dejavu-fonts.org/\">dejavu-fonts.org</a>")
498                        .arg("TSPSG");
499
500QFile f(":/files/COPYING");
501        f.open(QIODevice::ReadOnly);
502
503QString translation = QApplication::translate("--------", "AUTHORS %1", "Please, provide translator credits here. %1 will be replaced with VERSION");
504        if ((translation != "AUTHORS %1") && (translation.contains("%1"))) {
505QString about = QApplication::translate("--------", "VERSION", "Please, provide your translation version here.");
506                if (about != "VERSION")
507                        translation = translation.arg(about);
508        }
509
510QDialog *dlg = new QDialog(this);
511QLabel *lblIcon = new QLabel(dlg),
512        *lblTitle = new QLabel(dlg);
513#ifdef HANDHELD
514QLabel *lblSubTitle = new QLabel(QString("<b>&copy; 2007-%1 <a href=\"http://%2/\">%3</a></b>").arg(QDate::currentDate().toString("yyyy"), QApplication::organizationDomain(), QApplication::organizationName()), dlg);
515#endif // HANDHELD
516QTabWidget *tabs = new QTabWidget(dlg);
517QTextBrowser *txtAbout = new QTextBrowser(dlg);
518QTextBrowser *txtLicense = new QTextBrowser(dlg);
519QTextBrowser *txtCredits = new QTextBrowser(dlg);
520QVBoxLayout *vb = new QVBoxLayout();
521QHBoxLayout *hb1 = new QHBoxLayout(),
522        *hb2 = new QHBoxLayout();
523QDialogButtonBox *bb = new QDialogButtonBox(QDialogButtonBox::Ok, Qt::Horizontal, dlg);
524
525        lblTitle->setOpenExternalLinks(true);
526        lblTitle->setText(title);
527        lblTitle->setAlignment(Qt::AlignTop);
528        lblTitle->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
529#ifndef HANDHELD
530        lblTitle->setStyleSheet(QString("QLabel {background-color: %1; border-color: %2; border-width: 1px; border-style: solid; border-radius: 4px; padding: 1px;}").arg(palette().alternateBase().color().name(), palette().shadow().color().name()));
531#endif // HANDHELD
532
533        lblIcon->setPixmap(QPixmap(":/images/tspsg.png").scaledToHeight(lblTitle->sizeHint().height(), Qt::SmoothTransformation));
534        lblIcon->setAlignment(Qt::AlignVCenter);
535#ifndef HANDHELD
536        lblIcon->setStyleSheet(QString("QLabel {background-color: white; border-color: %1; border-width: 1px; border-style: solid; border-radius: 4px; padding: 1px;}").arg(palette().windowText().color().name()));
537#endif // HANDHELD
538
539        hb1->addWidget(lblIcon);
540        hb1->addWidget(lblTitle);
541
542        txtAbout->setWordWrapMode(QTextOption::NoWrap);
543        txtAbout->setOpenExternalLinks(true);
544        txtAbout->setHtml(about);
545        txtAbout->moveCursor(QTextCursor::Start);
546        txtAbout->setFrameShape(QFrame::NoFrame);
547
548//      txtCredits->setWordWrapMode(QTextOption::NoWrap);
549        txtCredits->setOpenExternalLinks(true);
550        txtCredits->setHtml(credits);
551        txtCredits->moveCursor(QTextCursor::Start);
552        txtCredits->setFrameShape(QFrame::NoFrame);
553
554        txtLicense->setWordWrapMode(QTextOption::NoWrap);
555        txtLicense->setOpenExternalLinks(true);
556        txtLicense->setText(f.readAll());
557        txtLicense->moveCursor(QTextCursor::Start);
558        txtLicense->setFrameShape(QFrame::NoFrame);
559
560        bb->button(QDialogButtonBox::Ok)->setCursor(QCursor(Qt::PointingHandCursor));
561        bb->button(QDialogButtonBox::Ok)->setIcon(GET_ICON("dialog-ok"));
562
563        hb2->addWidget(bb);
564
565#ifdef Q_OS_WINCE_WM
566        vb->setMargin(3);
567#endif // Q_OS_WINCE_WM
568        vb->addLayout(hb1);
569#ifdef HANDHELD
570        vb->addWidget(lblSubTitle);
571#endif // HANDHELD
572
573        tabs->addTab(txtAbout, tr("About"));
574        tabs->addTab(txtLicense, tr("License"));
575        tabs->addTab(txtCredits, tr("Credits"));
576        if (translation != "AUTHORS %1") {
577QTextBrowser *txtTranslation = new QTextBrowser(dlg);
578//              txtTranslation->setWordWrapMode(QTextOption::NoWrap);
579                txtTranslation->setOpenExternalLinks(true);
580                txtTranslation->setText(translation);
581                txtTranslation->moveCursor(QTextCursor::Start);
582                txtTranslation->setFrameShape(QFrame::NoFrame);
583
584                tabs->addTab(txtTranslation, tr("Translation"));
585        }
586#ifndef HANDHELD
587        tabs->setStyleSheet(QString("QTabWidget::pane {background-color: %1; border-color: %3; border-width: 1px; border-style: solid; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; padding: 1px;} QTabBar::tab {background-color: %2; border-color: %3; border-width: 1px; border-style: solid; border-bottom: none; border-top-left-radius: 4px; border-top-right-radius: 4px; padding: 2px 6px;} QTabBar::tab:selected {background-color: %4;} QTabBar::tab:!selected {margin-top: 1px;}").arg(palette().base().color().name(), palette().button().color().name(), palette().shadow().color().name(), palette().light().color().name()));
588#endif // HANDHELD
589
590        vb->addWidget(tabs);
591        vb->addLayout(hb2);
592
593        dlg->setWindowFlags(Qt::Dialog | Qt::CustomizeWindowHint | Qt::WindowTitleHint | Qt::WindowCloseButtonHint);
594        dlg->setWindowTitle(tr("About %1").arg(QApplication::applicationName()));
595        dlg->setWindowIcon(GET_ICON("help-about"));
596        dlg->setLayout(vb);
597
598        connect(bb, SIGNAL(accepted()), dlg, SLOT(accept()));
599
600#ifdef Q_OS_WIN32
601        // Adding some eyecandy in Vista and 7 :-)
602        if (QtWin::isCompositionEnabled())  {
603                QtWin::enableBlurBehindWindow(dlg, true);
604        }
605#endif // Q_OS_WIN32
606
607        dlg->resize(450, 350);
608        QApplication::restoreOverrideCursor();
609
610        dlg->exec();
611
612        delete dlg;
613}
614
615void MainWindow::buttonBackToTaskClicked()
616{
617        tabWidget->setCurrentIndex(0);
618}
619
620void MainWindow::buttonRandomClicked()
621{
622        QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
623        tspmodel->randomize();
624        QApplication::restoreOverrideCursor();
625}
626
627void MainWindow::buttonSolveClicked()
628{
629TMatrix matrix;
630QList<double> row;
631int n = spinCities->value();
632bool ok;
633        for (int r = 0; r < n; r++) {
634                row.clear();
635                for (int c = 0; c < n; c++) {
636                        row.append(tspmodel->index(r,c).data(Qt::UserRole).toDouble(&ok));
637                        if (!ok) {
638                                QMessageBox::critical(this, tr("Data error"), tr("Error in cell [Row %1; Column %2]: Invalid data format.").arg(r + 1).arg(c + 1));
639                                return;
640                        }
641                }
642                matrix.append(row);
643        }
644
645QProgressDialog pd(this);
646QProgressBar *pb = new QProgressBar(&pd);
647        pb->setAlignment(Qt::AlignCenter);
648        pb->setFormat(tr("%v of %1 parts found").arg(n));
649        pd.setBar(pb);
650QPushButton *cancel = new QPushButton(&pd);
651        cancel->setIcon(GET_ICON("dialog-cancel"));
652        cancel->setText(QApplication::translate("QProgressDialog", "Cancel", "No need to translate this. This translation will be taken from Qt translation files."));
653        pd.setCancelButton(cancel);
654        pd.setMaximum(n);
655        pd.setAutoReset(false);
656        pd.setLabelText(tr("Calculating optimal route..."));
657        pd.setWindowTitle(tr("Solution Progress"));
658        pd.setWindowModality(Qt::ApplicationModal);
659        pd.setWindowFlags(Qt::Dialog | Qt::CustomizeWindowHint | Qt::WindowTitleHint);
660        pd.show();
661
662#ifdef Q_OS_WIN32
663HRESULT hr = CoCreateInstance(CLSID_TaskbarList, NULL, CLSCTX_INPROC_SERVER, IID_ITaskbarList3, (LPVOID*)&tl);
664        if (SUCCEEDED(hr)) {
665                hr = tl->HrInit();
666                if (FAILED(hr)) {
667                        tl->Release();
668                        tl = NULL;
669                } else {
670//                      tl->SetProgressState(winId(), TBPF_INDETERMINATE);
671                        tl->SetProgressValue(winId(), 0, n * 2);
672                }
673        }
674#endif
675
676CTSPSolver solver;
677        solver.setCleanupOnCancel(false);
678        connect(&solver, SIGNAL(routePartFound(int)), &pd, SLOT(setValue(int)));
679        connect(&pd, SIGNAL(canceled()), &solver, SLOT(cancel()));
680#ifdef Q_OS_WIN32
681        if (tl != NULL)
682                connect(&solver, SIGNAL(routePartFound(int)), SLOT(solverRoutePartFound(int)));
683#endif
684SStep *root = solver.solve(n, matrix);
685#ifdef Q_OS_WIN32
686        if (tl != NULL)
687                disconnect(&solver, SIGNAL(routePartFound(int)), this, SLOT(solverRoutePartFound(int)));
688#endif
689        disconnect(&solver, SIGNAL(routePartFound(int)), &pd, SLOT(setValue(int)));
690        disconnect(&pd, SIGNAL(canceled()), &solver, SLOT(cancel()));
691        if (!root) {
692                pd.reset();
693                if (!solver.wasCanceled()) {
694#ifdef Q_OS_WIN32
695                        if (tl != NULL) {
696//                              tl->SetProgressValue(winId(), n, n * 2);
697                                tl->SetProgressState(winId(), TBPF_ERROR);
698                        }
699#endif
700                        QApplication::alert(this);
701                        QMessageBox::warning(this, tr("Solution Result"), tr("Unable to find a solution.\nMaybe, this task has no solution."));
702                }
703                pd.setLabelText(tr("Cleaning up..."));
704                pd.setMaximum(0);
705                pd.setCancelButton(NULL);
706                pd.show();
707#ifdef Q_OS_WIN32
708                if (tl != NULL)
709                        tl->SetProgressState(winId(), TBPF_INDETERMINATE);
710#endif
711                QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
712
713#ifndef QT_NO_CONCURRENT
714QFuture<void> f = QtConcurrent::run(&solver, &CTSPSolver::cleanup, false);
715                while (!f.isFinished()) {
716                        QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
717                }
718#else
719                solver.cleanup(true);
720#endif
721                pd.reset();
722#ifdef Q_OS_WIN32
723                if (tl != NULL) {
724                        tl->SetProgressState(winId(), TBPF_NOPROGRESS);
725                        tl->Release();
726                        tl = NULL;
727                }
728#endif
729                return;
730        }
731        pb->setFormat(tr("Generating header"));
732        pd.setLabelText(tr("Generating solution output..."));
733        pd.setMaximum(solver.getTotalSteps() + 1);
734        pd.setValue(0);
735
736#ifdef Q_OS_WIN32
737        if (tl != NULL)
738                tl->SetProgressValue(winId(), spinCities->value(), spinCities->value() + solver.getTotalSteps() + 1);
739#endif
740
741        solutionText->clear();
742        solutionText->setDocumentTitle(tr("Solution of Variant #%1 Task").arg(spinVariant->value()));
743
744QPainter pic;
745        if (settings->value("Output/ShowGraph", DEF_SHOW_GRAPH).toBool()) {
746                pic.begin(&graph);
747                pic.setRenderHints(QPainter::Antialiasing | QPainter::SmoothPixmapTransform);
748QFont font = qvariant_cast<QFont>(settings->value("Output/Font", QFont(DEF_FONT_FACE, 9)));
749                if (settings->value("Output/HQGraph", DEF_HQ_GRAPH).toBool()) {
750                        font.setWeight(QFont::DemiBold);
751                        font.setPointSizeF(font.pointSizeF() * 2);
752                }
753                pic.setFont(font);
754                pic.setBrush(QBrush(QColor(Qt::white)));
755                if (settings->value("Output/HQGraph", DEF_HQ_GRAPH).toBool()) {
756QPen pen = pic.pen();
757                        pen.setWidth(2);
758                        pic.setPen(pen);
759                }
760                pic.setBackgroundMode(Qt::OpaqueMode);
761        }
762
763QTextDocument *doc = solutionText->document();
764QTextCursor cur(doc);
765
766        cur.beginEditBlock();
767        cur.setBlockFormat(fmt_paragraph);
768        cur.insertText(tr("Variant #%1 Task").arg(spinVariant->value()), fmt_default);
769        cur.insertBlock(fmt_paragraph);
770        cur.insertText(tr("Task:"));
771        outputMatrix(cur, matrix);
772        if (settings->value("Output/ShowGraph", DEF_SHOW_GRAPH).toBool()) {
773#ifdef _T_T_L_
774                _b_ _i_ _z_ _a_ _r_ _r_ _e_
775#endif
776                drawNode(pic, 0);
777        }
778        cur.insertHtml("<hr>");
779        cur.insertBlock(fmt_paragraph);
780int imgpos = cur.position();
781        cur.insertText(tr("Variant #%1 Solution").arg(spinVariant->value()), fmt_default);
782        cur.endEditBlock();
783
784SStep *step = root;
785int c = n = 1;
786        pb->setFormat(tr("Generating step %v"));
787        while ((step->next != SStep::NoNextStep) && (c < spinCities->value())) {
788                if (pd.wasCanceled()) {
789                        pd.setLabelText(tr("Cleaning up..."));
790                        pd.setMaximum(0);
791                        pd.setCancelButton(NULL);
792                        pd.show();
793                        QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
794#ifdef Q_OS_WIN32
795                        if (tl != NULL)
796                                tl->SetProgressState(winId(), TBPF_INDETERMINATE);
797#endif
798#ifndef QT_NO_CONCURRENT
799QFuture<void> f = QtConcurrent::run(&solver, &CTSPSolver::cleanup, false);
800                        while (!f.isFinished()) {
801                                QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
802                        }
803#else
804                        solver.cleanup(true);
805#endif
806                        solutionText->clear();
807                        toggleSolutionActions(false);
808#ifdef Q_OS_WIN32
809                        if (tl != NULL) {
810                                tl->SetProgressState(winId(), TBPF_NOPROGRESS);
811                                tl->Release();
812                                tl = NULL;
813                        }
814#endif
815                        return;
816                }
817                pd.setValue(n);
818#ifdef Q_OS_WIN32
819                if (tl != NULL)
820                        tl->SetProgressValue(winId(), spinCities->value() + n, spinCities->value() + solver.getTotalSteps() + 1);
821#endif
822
823                cur.beginEditBlock();
824                cur.insertBlock(fmt_paragraph);
825                cur.insertText(tr("Step #%1").arg(n));
826                if (settings->value("Output/ShowMatrix", DEF_SHOW_MATRIX).toBool() && (!settings->value("Output/UseShowMatrixLimit", DEF_USE_SHOW_MATRIX_LIMIT).toBool() || (settings->value("Output/UseShowMatrixLimit", DEF_USE_SHOW_MATRIX_LIMIT).toBool() && (spinCities->value() <= settings->value("Output/ShowMatrixLimit", DEF_SHOW_MATRIX_LIMIT).toInt())))) {
827                        outputMatrix(cur, *step);
828                }
829                cur.insertBlock(fmt_paragraph);
830                cur.insertText(tr("Selected route %1 %2 part.").arg((step->next == SStep::RightBranch) ? tr("with") : tr("without")).arg(tr("(%1;%2)").arg(step->candidate.nRow + 1).arg(step->candidate.nCol + 1)), fmt_default);
831                if (!step->alts.empty()) {
832                        SStep::SCandidate cand;
833                        QString alts;
834                        foreach(cand, step->alts) {
835                                if (!alts.isEmpty())
836                                        alts += ", ";
837                                alts += tr("(%1;%2)").arg(cand.nRow + 1).arg(cand.nCol + 1);
838                        }
839                        cur.insertBlock(fmt_paragraph);
840                        cur.insertText(tr("%n alternate candidate(s) for branching: %1.", "", step->alts.count()).arg(alts), fmt_altlist);
841                }
842                cur.insertBlock(fmt_paragraph);
843                cur.insertText(" ", fmt_default);
844                cur.endEditBlock();
845
846                if (settings->value("Output/ShowGraph", DEF_SHOW_GRAPH).toBool()) {
847                        if (step->prNode != NULL)
848                                drawNode(pic, n, false, step->prNode);
849                        if (step->plNode != NULL)
850                                drawNode(pic, n, true, step->plNode);
851                }
852                n++;
853
854                if (step->next == SStep::RightBranch) {
855                        c++;
856                        step = step->prNode;
857                } else if (step->next == SStep::LeftBranch) {
858                        step = step->plNode;
859                } else
860                        break;
861        }
862        pb->setFormat(tr("Generating footer"));
863        pd.setValue(n);
864#ifdef Q_OS_WIN32
865        if (tl != NULL)
866                tl->SetProgressValue(winId(), spinCities->value() + n, spinCities->value() + solver.getTotalSteps() + 1);
867#endif
868
869        cur.beginEditBlock();
870        cur.insertBlock(fmt_paragraph);
871        if (solver.isOptimal())
872                cur.insertText(tr("Optimal path:"));
873        else
874                cur.insertText(tr("Resulting path:"));
875
876        cur.insertBlock(fmt_paragraph);
877        cur.insertText("  " + solver.getSortedPath(tr("City %1")));
878
879        cur.insertBlock(fmt_paragraph);
880        if (isInteger(step->price))
881                cur.insertHtml("<p>" + tr("The price is <b>%n</b> unit(s).", "", qRound(step->price)) + "</p>");
882        else
883                cur.insertHtml("<p>" + tr("The price is <b>%1</b> units.").arg(step->price, 0, 'f', settings->value("Task/FractionalAccuracy", DEF_FRACTIONAL_ACCURACY).toInt()) + "</p>");
884        if (!solver.isOptimal()) {
885                cur.insertBlock(fmt_paragraph);
886                cur.insertText(" ");
887                cur.insertBlock(fmt_paragraph);
888                cur.insertHtml("<p>" + tr("<b>WARNING!!!</b><br>This result is a record, but it may not be optimal.<br>Iterations need to be continued to check whether this result is optimal or get an optimal one.") + "</p>");
889        }
890        cur.endEditBlock();
891
892        if (settings->value("Output/ShowGraph", DEF_SHOW_GRAPH).toBool()) {
893                pic.end();
894
895QImage i(graph.width() + 1, graph.height() + 1, QImage::Format_RGB32);
896                i.fill(0xFFFFFF);
897                pic.begin(&i);
898                pic.drawPicture(1, 1, graph);
899                pic.end();
900                doc->addResource(QTextDocument::ImageResource, QUrl("tspsg://graph.pic"), i);
901
902QTextImageFormat img;
903                img.setName("tspsg://graph.pic");
904                if (settings->value("Output/HQGraph", DEF_HQ_GRAPH).toBool()) {
905                        img.setWidth(i.width() / 2);
906                        img.setHeight(i.height() / 2);
907                } else {
908                        img.setWidth(i.width());
909                        img.setHeight(i.height());
910                }
911
912                cur.setPosition(imgpos);
913                cur.insertImage(img, QTextFrameFormat::FloatRight);
914        }
915
916        if (settings->value("Output/ScrollToEnd", DEF_SCROLL_TO_END).toBool()) {
917                // Scrolling to the end of the text.
918                solutionText->moveCursor(QTextCursor::End);
919        } else
920                solutionText->moveCursor(QTextCursor::Start);
921
922        pd.setLabelText(tr("Cleaning up..."));
923        pd.setMaximum(0);
924        pd.setCancelButton(NULL);
925        QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
926#ifdef Q_OS_WIN32
927        if (tl != NULL)
928                tl->SetProgressState(winId(), TBPF_INDETERMINATE);
929#endif
930#ifndef QT_NO_CONCURRENT
931QFuture<void> f = QtConcurrent::run(&solver, &CTSPSolver::cleanup, false);
932        while (!f.isFinished()) {
933                QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
934        }
935#else
936        solver.cleanup(true);
937#endif
938        toggleSolutionActions();
939        tabWidget->setCurrentIndex(1);
940#ifdef Q_OS_WIN32
941        if (tl != NULL) {
942                tl->SetProgressState(winId(), TBPF_NOPROGRESS);
943                tl->Release();
944                tl = NULL;
945        }
946#endif
947
948        pd.reset();
949        QApplication::alert(this, 3000);
950}
951
952void MainWindow::dataChanged()
953{
954        setWindowModified(true);
955}
956
957void MainWindow::dataChanged(const QModelIndex &tl, const QModelIndex &br)
958{
959        setWindowModified(true);
960        if (settings->value("Autosize", DEF_AUTOSIZE).toBool()) {
961                for (int k = tl.row(); k <= br.row(); k++)
962                        taskView->resizeRowToContents(k);
963                for (int k = tl.column(); k <= br.column(); k++)
964                        taskView->resizeColumnToContents(k);
965        }
966}
967
968#ifdef Q_OS_WINCE_WM
969void MainWindow::changeEvent(QEvent *ev)
970{
971        if ((ev->type() == QEvent::ActivationChange) && isActiveWindow())
972                desktopResized(0);
973
974        QWidget::changeEvent(ev);
975}
976
977void MainWindow::desktopResized(int screen)
978{
979        if ((screen != 0) || !isActiveWindow())
980                return;
981
982QRect availableGeometry = QApplication::desktop()->availableGeometry(0);
983        if (currentGeometry != availableGeometry) {
984                QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
985                /*!
986                 * \hack HACK: This hack checks whether \link QDesktopWidget::availableGeometry() availableGeometry()\endlink's \c top + \c hegiht = \link QDesktopWidget::screenGeometry() screenGeometry()\endlink's \c height.
987                 *  If \c true, the window gets maximized. If we used \c setGeometry() in this case, the bottom of the
988                 *  window would end up being behind the soft buttons. Is this a bug in Qt or Windows Mobile?
989                 */
990                if ((availableGeometry.top() + availableGeometry.height()) == QApplication::desktop()->screenGeometry().height()) {
991                        setWindowState(windowState() | Qt::WindowMaximized);
992                } else {
993                        if (windowState() & Qt::WindowMaximized)
994                                setWindowState(windowState() ^ Qt::WindowMaximized);
995                        setGeometry(availableGeometry);
996                }
997                currentGeometry = availableGeometry;
998                QApplication::restoreOverrideCursor();
999        }
1000}
1001#endif // Q_OS_WINCE_WM
1002
1003void MainWindow::numCitiesChanged(int nCities)
1004{
1005        blockSignals(true);
1006        spinCities->setValue(nCities);
1007        blockSignals(false);
1008}
1009
1010#ifndef QT_NO_PRINTER
1011void MainWindow::printPreview(QPrinter *printer)
1012{
1013        solutionText->print(printer);
1014}
1015#endif // QT_NO_PRINTER
1016
1017#ifdef Q_OS_WIN32
1018void MainWindow::solverRoutePartFound(int n)
1019{
1020#ifdef Q_OS_WIN32
1021        tl->SetProgressValue(winId(), n, spinCities->value() * 2);
1022#else
1023        Q_UNUSED(n);
1024#endif // Q_OS_WIN32
1025}
1026#endif // Q_OS_WIN32
1027
1028void MainWindow::spinCitiesValueChanged(int n)
1029{
1030        QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
1031int count = tspmodel->numCities();
1032        tspmodel->setNumCities(n);
1033        if ((n > count) && settings->value("Autosize", DEF_AUTOSIZE).toBool())
1034                for (int k = count; k < n; k++) {
1035                        taskView->resizeColumnToContents(k);
1036                        taskView->resizeRowToContents(k);
1037                }
1038        QApplication::restoreOverrideCursor();
1039}
1040
1041void MainWindow::closeEvent(QCloseEvent *ev)
1042{
1043        if (!maybeSave()) {
1044                ev->ignore();
1045                return;
1046        }
1047        if (!settings->value("SettingsReset", false).toBool()) {
1048                settings->setValue("NumCities", spinCities->value());
1049
1050                // Saving Main Window state
1051#ifndef HANDHELD
1052                if (settings->value("SavePos", DEF_SAVEPOS).toBool()) {
1053                        settings->beginGroup("MainWindow");
1054                        settings->setValue("Geometry", saveGeometry());
1055                        settings->setValue("State", saveState());
1056                        settings->setValue("Toolbars", toolBarManager->saveState());
1057                        settings->endGroup();
1058                }
1059#else
1060                settings->setValue("MainWindow/ToolbarVisible", toolBarMain->isVisible());
1061#endif // HANDHELD
1062        } else {
1063                settings->remove("SettingsReset");
1064        }
1065
1066        QMainWindow::closeEvent(ev);
1067}
1068
1069void MainWindow::dragEnterEvent(QDragEnterEvent *ev)
1070{
1071        if (ev->mimeData()->hasUrls() && (ev->mimeData()->urls().count() == 1)) {
1072QFileInfo fi(ev->mimeData()->urls().first().toLocalFile());
1073                if ((fi.suffix() == "tspt") || (fi.suffix() == "zkt"))
1074                        ev->acceptProposedAction();
1075        }
1076}
1077
1078void MainWindow::drawNode(QPainter &pic, int nstep, bool left, SStep *step)
1079{
1080int r;
1081        if (settings->value("Output/HQGraph", DEF_HQ_GRAPH).toBool())
1082                r = 70;
1083        else
1084                r = 35;
1085qreal x, y;
1086        if (step != NULL)
1087                x = left ? r : r * 3.5;
1088        else
1089                x = r * 2.25;
1090        y = r * (3 * nstep + 1);
1091
1092#ifdef _T_T_L_
1093        if (nstep == -481124) {
1094                _t_t_l_(pic, r, x);
1095                return;
1096        }
1097#endif
1098
1099        pic.drawEllipse(QPointF(x, y), r, r);
1100
1101        if (step != NULL) {
1102QFont font;
1103                if (left) {
1104                        font = pic.font();
1105                        font.setStrikeOut(true);
1106                        pic.setFont(font);
1107                }
1108                pic.drawText(QRectF(x - r, y - r, r * 2, r * 2), Qt::AlignCenter, tr("(%1;%2)").arg(step->pNode->candidate.nRow + 1).arg(step->pNode->candidate.nCol + 1) + "\n");
1109                if (left) {
1110                        font.setStrikeOut(false);
1111                        pic.setFont(font);
1112                }
1113                if (step->price != INFINITY) {
1114                        pic.drawText(QRectF(x - r, y - r, r * 2, r * 2), Qt::AlignCenter, isInteger(step->price) ?  QString("\n%1").arg(step->price) : QString("\n%1").arg(step->price, 0, 'f', settings->value("Task/FractionalAccuracy", DEF_FRACTIONAL_ACCURACY).toInt()));
1115                } else {
1116                        pic.drawText(QRectF(x - r, y - r, r * 2, r * 2), Qt::AlignCenter, "\n"INFSTR);
1117                }
1118        } else {
1119                pic.drawText(QRectF(x - r, y - r, r * 2, r * 2), Qt::AlignCenter, tr("Root"));
1120        }
1121
1122        if (nstep == 1) {
1123                pic.drawLine(QPointF(x, y - r), QPointF(r * 2.25, y - 2 * r));
1124        } else if (nstep > 1) {
1125                pic.drawLine(QPointF(x, y - r), QPointF((step->pNode->pNode->next == SStep::RightBranch) ? r * 3.5 : r, y - 2 * r));
1126        }
1127
1128}
1129
1130void MainWindow::dropEvent(QDropEvent *ev)
1131{
1132        if (maybeSave() && tspmodel->loadTask(ev->mimeData()->urls().first().toLocalFile())) {
1133                setFileName(ev->mimeData()->urls().first().toLocalFile());
1134                tabWidget->setCurrentIndex(0);
1135                setWindowModified(false);
1136                solutionText->clear();
1137                toggleSolutionActions(false);
1138
1139                ev->setDropAction(Qt::CopyAction);
1140                ev->accept();
1141        }
1142}
1143
1144bool MainWindow::hasUpdater() const
1145{
1146#ifdef Q_OS_WIN32
1147        return QFile::exists("updater/Update.exe");
1148#else // Q_OS_WIN32
1149        return false;
1150#endif // Q_OS_WIN32
1151}
1152
1153void MainWindow::initDocStyleSheet()
1154{
1155        solutionText->document()->setDefaultFont(qvariant_cast<QFont>(settings->value("Output/Font", QFont(DEF_FONT_FACE, DEF_FONT_SIZE))));
1156
1157        fmt_paragraph.setTopMargin(0);
1158        fmt_paragraph.setRightMargin(10);
1159        fmt_paragraph.setBottomMargin(0);
1160        fmt_paragraph.setLeftMargin(10);
1161
1162        fmt_table.setTopMargin(5);
1163        fmt_table.setRightMargin(10);
1164        fmt_table.setBottomMargin(5);
1165        fmt_table.setLeftMargin(10);
1166        fmt_table.setBorder(0);
1167        fmt_table.setBorderStyle(QTextFrameFormat::BorderStyle_None);
1168        fmt_table.setCellSpacing(5);
1169
1170        fmt_cell.setAlignment(Qt::AlignHCenter);
1171
1172        settings->beginGroup("Output/Colors");
1173
1174QColor color = qvariant_cast<QColor>(settings->value("Text", DEF_TEXT_COLOR));
1175QColor hilight;
1176        if (color.value() < 192)
1177                hilight.setHsv(color.hue(), color.saturation(), 127 + qRound(color.value() / 2));
1178        else
1179                hilight.setHsv(color.hue(), color.saturation(), color.value() / 2);
1180
1181        solutionText->document()->setDefaultStyleSheet(QString("* {color: %1;}").arg(color.name()));
1182        fmt_default.setForeground(QBrush(color));
1183
1184        fmt_selected.setForeground(QBrush(qvariant_cast<QColor>(settings->value("Selected", DEF_SELECTED_COLOR))));
1185        fmt_selected.setFontWeight(QFont::Bold);
1186
1187        fmt_alternate.setForeground(QBrush(qvariant_cast<QColor>(settings->value("Alternate", DEF_ALTERNATE_COLOR))));
1188        fmt_alternate.setFontWeight(QFont::Bold);
1189        fmt_altlist.setForeground(QBrush(hilight));
1190
1191        settings->endGroup();
1192
1193        solutionText->setTextColor(color);
1194}
1195
1196void MainWindow::loadLangList()
1197{
1198QMap<QString, QStringList> langlist;
1199QFileInfoList langs;
1200QFileInfo lang;
1201QString name;
1202QStringList language, dirs;
1203QTranslator t;
1204QDir dir;
1205        dir.setFilter(QDir::Files);
1206        dir.setNameFilters(QStringList("tspsg_*.qm"));
1207        dir.setSorting(QDir::NoSort);
1208
1209        dirs << PATH_L10N << ":/l10n";
1210        foreach (QString dirname, dirs) {
1211                dir.setPath(dirname);
1212                if (dir.exists()) {
1213                        langs = dir.entryInfoList();
1214                        for (int k = 0; k < langs.size(); k++) {
1215                                lang = langs.at(k);
1216                                if (lang.completeBaseName().compare("tspsg_en", Qt::CaseInsensitive) && !langlist.contains(lang.completeBaseName().mid(6)) && t.load(lang.completeBaseName(), dirname)) {
1217
1218                                        language.clear();
1219                                        language.append(lang.completeBaseName().mid(6));
1220                                        language.append(t.translate("--------", "COUNTRY", "Please, provide an ISO 3166-1 alpha-2 country code for this translation language here (eg., UA).").toLower());
1221                                        language.append(t.translate("--------", "LANGNAME", "Please, provide a native name of your translation language here."));
1222                                        language.append(t.translate("MainWindow", "Set application language to %1", "").arg(name));
1223
1224                                        langlist.insert(language.at(0), language);
1225                                }
1226                        }
1227                }
1228        }
1229
1230QAction *a;
1231        foreach (language, langlist) {
1232                a = menuSettingsLanguage->addAction(language.at(2));
1233                a->setStatusTip(language.at(3));
1234#if QT_VERSION >= 0x040600
1235                a->setIcon(QIcon::fromTheme(QString("flag-%1").arg(language.at(1)), QIcon(QString(":/images/icons/l10n/flag-%1.png").arg(language.at(1)))));
1236#else
1237                a->setIcon(QIcon(QString(":/images/icons/l10n/flag-%1.png").arg(language.at(1))));
1238#endif
1239                a->setData(language.at(0));
1240                a->setCheckable(true);
1241                a->setActionGroup(groupSettingsLanguageList);
1242                if (settings->value("Language", QLocale::system().name()).toString().startsWith(language.at(0)))
1243                        a->setChecked(true);
1244        }
1245}
1246
1247bool MainWindow::loadLanguage(const QString &lang)
1248{
1249// i18n
1250bool ad = false;
1251QString lng = lang;
1252        if (lng.isEmpty()) {
1253                ad = settings->value("Language", "").toString().isEmpty();
1254                lng = settings->value("Language", QLocale::system().name()).toString();
1255        }
1256static QTranslator *qtTranslator; // Qt library translator
1257        if (qtTranslator) {
1258                qApp->removeTranslator(qtTranslator);
1259                delete qtTranslator;
1260                qtTranslator = NULL;
1261        }
1262static QTranslator *translator; // Application translator
1263        if (translator) {
1264                qApp->removeTranslator(translator);
1265                delete translator;
1266                translator = NULL;
1267        }
1268
1269        if (lng == "en")
1270                return true;
1271
1272        // Trying to load system Qt library translation...
1273        qtTranslator = new QTranslator(this);
1274        if (qtTranslator->load("qt_" + lng, QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
1275                qApp->installTranslator(qtTranslator);
1276        else {
1277                // No luck. Let's try to load a bundled one.
1278                if (qtTranslator->load("qt_" + lng, PATH_L10N)) {
1279                        // We have a translation in the localization direcotry.
1280                        qApp->installTranslator(qtTranslator);
1281                } else if (qtTranslator->load("qt_" + lng, ":/l10n")) {
1282                        // We have a translation "built-in" into application resources.
1283                        qApp->installTranslator(qtTranslator);
1284                } else {
1285                        // Qt library translation unavailable for this language.
1286                        delete qtTranslator;
1287                        qtTranslator = NULL;
1288                }
1289        }
1290
1291        // Now let's load application translation.
1292        translator = new QTranslator(this);
1293        if (translator->load("tspsg_" + lng, PATH_L10N)) {
1294                // We have a translation in the localization directory.
1295                qApp->installTranslator(translator);
1296        } else if (translator->load("tspsg_" + lng, ":/l10n")) {
1297                // We have a translation "built-in" into application resources.
1298                qApp->installTranslator(translator);
1299        } else {
1300                delete translator;
1301                translator = NULL;
1302                if (!ad) {
1303                        settings->remove("Language");
1304                        QApplication::setOverrideCursor(QCursor(Qt::ArrowCursor));
1305                        QMessageBox::warning(isVisible() ? this : NULL, tr("Language Change"), tr("Unable to load the translation language.\nFalling back to autodetection."));
1306                        QApplication::restoreOverrideCursor();
1307                }
1308                return false;
1309        }
1310        return true;
1311}
1312
1313void MainWindow::loadStyleList()
1314{
1315        menuSettingsStyle->clear();
1316QStringList styles = QStyleFactory::keys();
1317        menuSettingsStyle->insertAction(NULL, actionSettingsStyleSystem);
1318        actionSettingsStyleSystem->setChecked(!settings->contains("Style"));
1319        menuSettingsStyle->addSeparator();
1320QAction *a;
1321        foreach (QString style, styles) {
1322                a = menuSettingsStyle->addAction(style);
1323                a->setData(false);
1324                a->setStatusTip(tr("Set application style to %1").arg(style));
1325                a->setCheckable(true);
1326                a->setActionGroup(groupSettingsStyleList);
1327                if ((style == settings->value("Style").toString())
1328                        || QString(QApplication::style()->metaObject()->className()).contains(QRegExp(QString("^Q?%1(Style)?$").arg(QRegExp::escape(style)), Qt::CaseInsensitive))) {
1329                        a->setChecked(true);
1330                }
1331        }
1332}
1333
1334void MainWindow::loadToolbarList()
1335{
1336        menuSettingsToolbars->clear();
1337#ifndef HANDHELD
1338        menuSettingsToolbars->insertAction(NULL, actionSettingsToolbarsConfigure);
1339        menuSettingsToolbars->addSeparator();
1340QList<QToolBar *> list = toolBarManager->toolBars();
1341        foreach (QToolBar *t, list) {
1342                menuSettingsToolbars->insertAction(NULL, t->toggleViewAction());
1343        }
1344#else // HANDHELD
1345        menuSettingsToolbars->insertAction(NULL, toolBarMain->toggleViewAction());
1346#endif // HANDHELD
1347}
1348
1349bool MainWindow::maybeSave()
1350{
1351        if (!isWindowModified())
1352                return true;
1353int res = QMessageBox::warning(this, tr("Unsaved Changes"), tr("Would you like to save changes in the current task?"), QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel);
1354        if (res == QMessageBox::Save)
1355                return actionFileSaveTriggered();
1356        else if (res == QMessageBox::Cancel)
1357                return false;
1358        else
1359                return true;
1360}
1361
1362void MainWindow::outputMatrix(QTextCursor &cur, const TMatrix &matrix)
1363{
1364int n = spinCities->value();
1365QTextTable *table = cur.insertTable(n, n, fmt_table);
1366
1367        for (int r = 0; r < n; r++) {
1368                for (int c = 0; c < n; c++) {
1369                        cur = table->cellAt(r, c).firstCursorPosition();
1370                        cur.setBlockFormat(fmt_cell);
1371                        cur.setBlockCharFormat(fmt_default);
1372                        if (matrix.at(r).at(c) == INFINITY)
1373                                cur.insertText(INFSTR);
1374                        else
1375                                cur.insertText(isInteger(matrix.at(r).at(c)) ? QString("%1").arg(matrix.at(r).at(c)) : QString("%1").arg(matrix.at(r).at(c), 0, 'f', settings->value("Task/FractionalAccuracy", DEF_FRACTIONAL_ACCURACY).toInt()));
1376                }
1377                QApplication::processEvents();
1378        }
1379        cur.movePosition(QTextCursor::End);
1380}
1381
1382void MainWindow::outputMatrix(QTextCursor &cur, const SStep &step)
1383{
1384int n = spinCities->value();
1385QTextTable *table = cur.insertTable(n, n, fmt_table);
1386
1387        for (int r = 0; r < n; r++) {
1388                for (int c = 0; c < n; c++) {
1389                        cur = table->cellAt(r, c).firstCursorPosition();
1390                        cur.setBlockFormat(fmt_cell);
1391                        if (step.matrix.at(r).at(c) == INFINITY)
1392                                cur.insertText(INFSTR, fmt_default);
1393                        else if ((r == step.candidate.nRow) && (c == step.candidate.nCol))
1394                                cur.insertText(isInteger(step.matrix.at(r).at(c)) ? QString("%1").arg(step.matrix.at(r).at(c)) : QString("%1").arg(step.matrix.at(r).at(c), 0, 'f', settings->value("Task/FractionalAccuracy", DEF_FRACTIONAL_ACCURACY).toInt()), fmt_selected);
1395                        else {
1396SStep::SCandidate cand;
1397                                cand.nRow = r;
1398                                cand.nCol = c;
1399                                if (step.alts.contains(cand))
1400                                        cur.insertText(isInteger(step.matrix.at(r).at(c)) ? QString("%1").arg(step.matrix.at(r).at(c)) : QString("%1").arg(step.matrix.at(r).at(c), 0, 'f', settings->value("Task/FractionalAccuracy", DEF_FRACTIONAL_ACCURACY).toInt()), fmt_alternate);
1401                                else
1402                                        cur.insertText(isInteger(step.matrix.at(r).at(c)) ? QString("%1").arg(step.matrix.at(r).at(c)) : QString("%1").arg(step.matrix.at(r).at(c), 0, 'f', settings->value("Task/FractionalAccuracy", DEF_FRACTIONAL_ACCURACY).toInt()), fmt_default);
1403                        }
1404                }
1405                QApplication::processEvents();
1406        }
1407
1408        cur.movePosition(QTextCursor::End);
1409}
1410
1411void MainWindow::retranslateUi(bool all)
1412{
1413        if (all)
1414                Ui_MainWindow::retranslateUi(this);
1415
1416        loadStyleList();
1417        loadToolbarList();
1418
1419#ifndef QT_NO_PRINTER
1420        actionFilePrintPreview->setText(tr("P&rint Preview..."));
1421#ifndef QT_NO_TOOLTIP
1422        actionFilePrintPreview->setToolTip(tr("Preview solution results"));
1423#endif // QT_NO_TOOLTIP
1424#ifndef QT_NO_STATUSTIP
1425        actionFilePrintPreview->setStatusTip(tr("Preview current solution results before printing"));
1426#endif // QT_NO_STATUSTIP
1427
1428        actionFilePrint->setText(tr("&Print..."));
1429#ifndef QT_NO_TOOLTIP
1430        actionFilePrint->setToolTip(tr("Print solution"));
1431#endif // QT_NO_TOOLTIP
1432#ifndef QT_NO_STATUSTIP
1433        actionFilePrint->setStatusTip(tr("Print current solution results"));
1434#endif // QT_NO_STATUSTIP
1435        actionFilePrint->setShortcut(tr("Ctrl+P"));
1436#endif // QT_NO_PRINTER
1437
1438#ifndef HANDHELD
1439        actionSettingsToolbarsConfigure->setText(tr("Configure..."));
1440#ifndef QT_NO_STATUSTIP
1441        actionSettingsToolbarsConfigure->setStatusTip(tr("Customize toolbars"));
1442#endif // QT_NO_STATUSTIP
1443#endif // HANDHELD
1444
1445#ifdef Q_OS_WIN32
1446        actionHelpCheck4Updates->setText(tr("Check for &Updates..."));
1447#ifndef QT_NO_STATUSTIP
1448        actionHelpCheck4Updates->setStatusTip(tr("Check for %1 updates").arg(QApplication::applicationName()));
1449#endif // QT_NO_STATUSTIP
1450#endif // Q_OS_WIN32
1451}
1452
1453bool MainWindow::saveTask() {
1454QStringList filters(tr("%1 Task File").arg("TSPSG") + " (*.tspt)");
1455        filters.append(tr("All Files") + " (*)");
1456QString file;
1457        if ((fileName == tr("Untitled") + ".tspt") && settings->value("SaveLastUsed", DEF_SAVE_LAST_USED).toBool()) {
1458                file = settings->value(OS"/LastUsed/TaskSavePath").toString();
1459                if (!file.isEmpty())
1460                        file.append("/");
1461                file.append(fileName);
1462        } else if (fileName.endsWith(".tspt", Qt::CaseInsensitive))
1463                file = fileName;
1464        else
1465                file = QFileInfo(fileName).path() + "/" + QFileInfo(fileName).completeBaseName() + ".tspt";
1466
1467QFileDialog::Options opts = settings->value("UseNativeDialogs", DEF_USE_NATIVE_DIALOGS).toBool() ? QFileDialog::Options() : QFileDialog::DontUseNativeDialog;
1468        file = QFileDialog::getSaveFileName(this, tr("Task Save"), file, filters.join(";;"), NULL, opts);
1469        if (file.isEmpty())
1470                return false;
1471        else if (settings->value("SaveLastUsed", DEF_SAVE_LAST_USED).toBool())
1472                settings->setValue(OS"/LastUsed/TaskSavePath", QFileInfo(file).path());
1473
1474        if (tspmodel->saveTask(file)) {
1475                setFileName(file);
1476                setWindowModified(false);
1477                return true;
1478        }
1479        return false;
1480}
1481
1482void MainWindow::setFileName(const QString &fileName)
1483{
1484        this->fileName = fileName;
1485        setWindowTitle(QString("%1[*] - %2").arg(QFileInfo(fileName).completeBaseName()).arg(QApplication::applicationName()));
1486}
1487
1488void MainWindow::setupUi()
1489{
1490        Ui_MainWindow::setupUi(this);
1491
1492        // File Menu
1493        actionFileNew->setIcon(GET_ICON("document-new"));
1494        actionFileOpen->setIcon(GET_ICON("document-open"));
1495        actionFileSave->setIcon(GET_ICON("document-save"));
1496#ifndef HANDHELD
1497        menuFileSaveAs->setIcon(GET_ICON("document-save-as"));
1498#endif
1499        actionFileExit->setIcon(GET_ICON("application-exit"));
1500        // Settings Menu
1501#ifndef HANDHELD
1502        menuSettingsLanguage->setIcon(GET_ICON("preferences-desktop-locale"));
1503#if QT_VERSION >= 0x040600
1504        actionSettingsLanguageEnglish->setIcon(QIcon::fromTheme("flag-gb", QIcon(":/images/icons/l10n/flag-gb.png")));
1505#else // QT_VERSION >= 0x040600
1506        actionSettingsLanguageEnglish->setIcon(QIcon(":/images/icons/l10n/flag-gb.png"));
1507#endif // QT_VERSION >= 0x040600
1508        menuSettingsStyle->setIcon(GET_ICON("preferences-desktop-theme"));
1509#endif // HANDHELD
1510        actionSettingsPreferences->setIcon(GET_ICON("preferences-system"));
1511        // Help Menu
1512#ifndef HANDHELD
1513        actionHelpContents->setIcon(GET_ICON("help-contents"));
1514        actionHelpContextual->setIcon(GET_ICON("help-contextual"));
1515        actionHelpAbout->setIcon(GET_ICON("help-about"));
1516#endif
1517        // Buttons
1518        buttonRandom->setIcon(GET_ICON("roll"));
1519        buttonSolve->setIcon(GET_ICON("dialog-ok"));
1520        buttonSaveSolution->setIcon(GET_ICON("document-save-as"));
1521        buttonBackToTask->setIcon(GET_ICON("go-previous"));
1522
1523//      action->setIcon(GET_ICON(""));
1524
1525#if QT_VERSION >= 0x040600
1526        setToolButtonStyle(Qt::ToolButtonFollowStyle);
1527#endif
1528
1529#ifndef HANDHELD
1530QStatusBar *statusbar = new QStatusBar(this);
1531        statusbar->setObjectName("statusbar");
1532        setStatusBar(statusbar);
1533#endif // HANDHELD
1534
1535#ifdef Q_OS_WINCE_WM
1536        menuBar()->setDefaultAction(menuFile->menuAction());
1537
1538QScrollArea *scrollArea = new QScrollArea(this);
1539        scrollArea->setFrameShape(QFrame::NoFrame);
1540        scrollArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
1541        scrollArea->setWidgetResizable(true);
1542        scrollArea->setWidget(tabWidget);
1543        setCentralWidget(scrollArea);
1544#else
1545        setCentralWidget(tabWidget);
1546#endif // Q_OS_WINCE_WM
1547
1548        //! \hack HACK: A little hack for toolbar icons to have a sane size.
1549#ifdef HANDHELD
1550        toolBarMain->setIconSize(QSize(logicalDpiX() / 4, logicalDpiY() / 4));
1551#endif // HANDHELD
1552QToolButton *tb = static_cast<QToolButton *>(toolBarMain->widgetForAction(actionFileSave));
1553        if (tb != NULL)  {
1554                tb->setMenu(menuFileSaveAs);
1555                tb->setPopupMode(QToolButton::MenuButtonPopup);
1556        }
1557
1558//      solutionText->document()->setDefaultFont(settings->value("Output/Font", QFont(DEF_FONT_FAMILY, DEF_FONT_SIZE)).value<QFont>());
1559        solutionText->setWordWrapMode(QTextOption::WordWrap);
1560
1561#ifndef QT_NO_PRINTER
1562        actionFilePrintPreview = new QAction(this);
1563        actionFilePrintPreview->setObjectName("actionFilePrintPreview");
1564        actionFilePrintPreview->setEnabled(false);
1565        actionFilePrintPreview->setIcon(GET_ICON("document-print-preview"));
1566
1567        actionFilePrint = new QAction(this);
1568        actionFilePrint->setObjectName("actionFilePrint");
1569        actionFilePrint->setEnabled(false);
1570        actionFilePrint->setIcon(GET_ICON("document-print"));
1571
1572        menuFile->insertAction(actionFileExit,actionFilePrintPreview);
1573        menuFile->insertAction(actionFileExit,actionFilePrint);
1574        menuFile->insertSeparator(actionFileExit);
1575
1576        toolBarMain->insertAction(actionSettingsPreferences, actionFilePrint);
1577#endif // QT_NO_PRINTER
1578
1579        groupSettingsLanguageList = new QActionGroup(this);
1580        actionSettingsLanguageEnglish->setData("en");
1581        actionSettingsLanguageEnglish->setActionGroup(groupSettingsLanguageList);
1582        loadLangList();
1583        actionSettingsLanguageAutodetect->setChecked(settings->value("Language", "").toString().isEmpty());
1584
1585        actionSettingsStyleSystem->setData(true);
1586        groupSettingsStyleList = new QActionGroup(this);
1587
1588#ifndef HANDHELD
1589        actionSettingsToolbarsConfigure = new QAction(this);
1590        actionSettingsToolbarsConfigure->setIcon(GET_ICON("configure-toolbars"));
1591#endif // HANDHELD
1592
1593#ifdef Q_OS_WIN32
1594        actionHelpCheck4Updates = new QAction(this);
1595        actionHelpCheck4Updates->setIcon(GET_ICON("system-software-update"));
1596        actionHelpCheck4Updates->setEnabled(hasUpdater());
1597        menuHelp->insertAction(actionHelpAboutQt, actionHelpCheck4Updates);
1598        menuHelp->insertSeparator(actionHelpAboutQt);
1599#endif // Q_OS_WIN32
1600
1601        spinCities->setMaximum(MAX_NUM_CITIES);
1602
1603#ifndef HANDHELD
1604        toolBarManager = new QtToolBarManager;
1605        toolBarManager->setMainWindow(this);
1606QString cat = toolBarMain->windowTitle();
1607        toolBarManager->addToolBar(toolBarMain, cat);
1608#ifndef QT_NO_PRINTER
1609        toolBarManager->addAction(actionFilePrintPreview, cat);
1610#endif // QT_NO_PRINTER
1611        toolBarManager->addAction(actionHelpContents, cat);
1612        toolBarManager->addAction(actionHelpContextual, cat);
1613//      toolBarManager->addAction(action, cat);
1614        toolBarManager->restoreState(settings->value("MainWindow/Toolbars").toByteArray());
1615#else
1616        toolBarMain->setVisible(settings->value("MainWindow/ToolbarVisible", true).toBool());
1617#endif // HANDHELD
1618
1619        retranslateUi(false);
1620
1621#ifdef Q_OS_WIN32
1622        // Adding some eyecandy in Vista and 7 :-)
1623        if (QtWin::isCompositionEnabled() && settings->value("UseTranslucency", DEF_USE_TRANSLUCENCY).toBool())  {
1624                toggleTranclucency(true);
1625        }
1626#endif // Q_OS_WIN32
1627}
1628
1629void MainWindow::toggleSolutionActions(bool enable)
1630{
1631        buttonSaveSolution->setEnabled(enable);
1632        actionFileSaveAsSolution->setEnabled(enable);
1633        solutionText->setEnabled(enable);
1634#ifndef QT_NO_PRINTER
1635        actionFilePrint->setEnabled(enable);
1636        actionFilePrintPreview->setEnabled(enable);
1637#endif // QT_NO_PRINTER
1638}
1639
1640void MainWindow::toggleTranclucency(bool enable)
1641{
1642#ifdef Q_OS_WIN32
1643        toggleStyle(labelVariant, enable);
1644        toggleStyle(labelCities, enable);
1645        toggleStyle(statusBar(), enable);
1646        tabWidget->setDocumentMode(enable);
1647        QtWin::enableBlurBehindWindow(this, enable);
1648#else
1649        Q_UNUSED(enable);
1650#endif // Q_OS_WIN32
1651}
Note: See TracBrowser for help on using the repository browser.