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