Changeset 5cbcd091ed in tspsg for src
- Timestamp:
- Mar 13, 2011, 9:23:53 PM (14 years ago)
- Branches:
- 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
- Children:
- 5631fb4d50
- Parents:
- 8dcf4701e6
- git-author:
- Oleksii Serdiuk <contacts@…> (03/13/11 21:23:53)
- git-committer:
- Oleksii Serdiuk <contacts@…> (06/29/12 19:45:58)
- Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main.cpp
r8dcf4701e6 r5cbcd091ed 41 41 int main(int argc, char *argv[]) 42 42 { 43 #ifdef Q_WS_S60 44 // No enough memory for solution graph generation with tasks 45 // of 20 and more cities if we use non-raster graphics system. 46 QApplication::setGraphicsSystem("raster"); 47 #endif 43 48 QApplication app(argc, argv); 44 49 app.setOverrideCursor(QCursor(Qt::WaitCursor)); -
src/mainwindow.cpp
r8dcf4701e6 r5cbcd091ed 617 617 #endif // HANDHELD 618 618 619 #ifndef HANDHELD 619 620 dlg->resize(450, 350); 621 #endif 620 622 QApplication::restoreOverrideCursor(); 621 623 … … 1136 1138 } 1137 1139 if (step->price != INFINITY) { 1138 pic.drawText(QRectF(x - r, y - r, r * 2, r * 2), Qt::AlignCenter, isInteger(step->price) ? 1140 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())); 1139 1141 } else { 1140 1142 pic.drawText(QRectF(x - r, y - r, r * 2, r * 2), Qt::AlignCenter, "\n"INFSTR); … … 1579 1581 //! \hack HACK: A little hack for toolbar icons to have a sane size. 1580 1582 #if defined(HANDHELD) && !defined(Q_WS_MAEMO_5) 1583 #ifdef Q_WS_S60 1584 toolBarMain->setIconSize(QSize(logicalDpiX() / 5, logicalDpiY() / 5)); 1585 #else 1581 1586 toolBarMain->setIconSize(QSize(logicalDpiX() / 4, logicalDpiY() / 4)); 1582 #endif // HANDHELD 1587 #endif // Q_WS_S60 1588 #endif // HANDHELD && !Q_WS_MAEMO_5 1583 1589 QToolButton *tb = static_cast<QToolButton *>(toolBarMain->widgetForAction(actionFileSave)); 1584 if (tb != NULL) 1590 if (tb != NULL) { 1585 1591 tb->setMenu(menuFileSaveAs); 1586 1592 tb->setPopupMode(QToolButton::MenuButtonPopup); -
src/tspsolver.h
r8dcf4701e6 r5cbcd091ed 36 36 * \brief This value means infinity :-) 37 37 * 38 * Some libraries already have \c INFINITY defined. 39 * We need to redefine it for the \c INFINITY to always have the same value. 38 * Define \c INFINITY if it's not already defined. 40 39 */ 41 #if def INFINITY42 # undef INFINITY40 #ifndef INFINITY 41 # define INFINITY std::numeric_limits<double>::infinity() 43 42 #endif 44 #define INFINITY std::numeric_limits<double>::infinity()45 43 46 44 /*!
Note: See TracChangeset
for help on using the changeset viewer.