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