[e0fcac5f2c] | 1 | /*! |
---|
| 2 | * \file globals.h |
---|
[f19df0a3e5] | 3 | * \author Copyright © 2007-2010 Lёppa <contacts[at]oleksii[dot]name> |
---|
[aecdf994f9] | 4 | * |
---|
| 5 | * $Id$ |
---|
| 6 | * $URL$ |
---|
| 7 | * |
---|
[e0fcac5f2c] | 8 | * \brief Contains TSPSG global defines. |
---|
| 9 | * |
---|
| 10 | * <b>TSPSG: TSP Solver and Generator</b> |
---|
| 11 | * |
---|
[aecdf994f9] | 12 | * This file is part of TSPSG. |
---|
| 13 | * |
---|
| 14 | * TSPSG is free software: you can redistribute it and/or modify |
---|
| 15 | * it under the terms of the GNU General Public License as published by |
---|
| 16 | * the Free Software Foundation, either version 3 of the License, or |
---|
| 17 | * (at your option) any later version. |
---|
| 18 | * |
---|
| 19 | * TSPSG is distributed in the hope that it will be useful, |
---|
| 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 22 | * GNU General Public License for more details. |
---|
| 23 | * |
---|
| 24 | * You should have received a copy of the GNU General Public License |
---|
| 25 | * along with TSPSG. If not, see <http://www.gnu.org/licenses/>. |
---|
| 26 | */ |
---|
| 27 | |
---|
[993d5af6f6] | 28 | #ifndef GLOBALS_H |
---|
| 29 | #define GLOBALS_H |
---|
[aecdf994f9] | 30 | |
---|
[993d5af6f6] | 31 | // INCLUDES |
---|
| 32 | #include <QtCore> |
---|
| 33 | #include <QtGui> |
---|
[20015b41e7] | 34 | #if !defined(NOSVG) && (QT_VERSION >= 0x040500) |
---|
| 35 | #include <QtSvg> |
---|
| 36 | #endif // NOSVG && QT_VERSION >= 0x040500 |
---|
[993d5af6f6] | 37 | |
---|
[430bd7f7e9] | 38 | // Version info |
---|
| 39 | #include "version.h" |
---|
[c10297cf73] | 40 | // OS and ARCH detection |
---|
[993d5af6f6] | 41 | #include "os.h" |
---|
[1757eb594b] | 42 | // TSPSG Defaults |
---|
| 43 | #include "defaults.h" |
---|
[9cda6e0f5d] | 44 | // TSPSolver |
---|
| 45 | #include "tspsolver.h" |
---|
[162d5c5f94] | 46 | #ifdef Q_OS_WIN32 |
---|
| 47 | // Vista/7 Eyecandy |
---|
| 48 | #include "qtwin.h" |
---|
| 49 | #endif // Q_OS_WIN32 |
---|
[993d5af6f6] | 50 | |
---|
| 51 | // DEFINES |
---|
[bc1b8837b6] | 52 | //! Maximum available number of cities |
---|
[1fbf016a09] | 53 | #define MAX_NUM_CITIES 50 |
---|
[bc1b8837b6] | 54 | //! Maximum allowed value for random generation limits |
---|
[2fb523720a] | 55 | #define MAX_RAND_VALUE 1000 |
---|
| 56 | |
---|
| 57 | // Paths |
---|
[bc1b8837b6] | 58 | /*! |
---|
[162d5c5f94] | 59 | * \def PATH_L10N |
---|
[1babbd6ba3] | 60 | * \brief Path to internationalization files. |
---|
[bc1b8837b6] | 61 | */ |
---|
[162d5c5f94] | 62 | #ifndef PATH_L10N |
---|
| 63 | #define PATH_L10N "l10n" |
---|
| 64 | #endif // PATH_L10N |
---|
[bc1b8837b6] | 65 | /*! |
---|
| 66 | * \def PATH_DOCS |
---|
| 67 | * \brief Bath to documentation files. |
---|
| 68 | */ |
---|
[162d5c5f94] | 69 | #ifndef PATH_DOCS |
---|
[2fb523720a] | 70 | #define PATH_DOCS "help" |
---|
[162d5c5f94] | 71 | #endif // PATH_DOCS |
---|
[2fb523720a] | 72 | |
---|
[85ad815b0b] | 73 | //! TSPSG Task file signature - letters \c TSPT |
---|
[993d5af6f6] | 74 | #define TSPT quint32(0x54535054) |
---|
[bc1b8837b6] | 75 | //! TSPSG Task file version |
---|
[993d5af6f6] | 76 | #define TSPT_VERSION quint8(1) |
---|
[bc1b8837b6] | 77 | //! TSPSG Task file metadata version |
---|
[993d5af6f6] | 78 | #define TSPT_META_VERSION quint8(1) |
---|
[bc1b8837b6] | 79 | //! TSPSG Task file metadata size in bytes (incl. version) |
---|
[993d5af6f6] | 80 | #define TSPT_META_SIZE 2 |
---|
[85ad815b0b] | 81 | //! ZKomModRd Task file signature - letters \c ZK |
---|
[993d5af6f6] | 82 | #define ZKT quint16(0x5A4B) |
---|
[bc1b8837b6] | 83 | //! ZKomModRd Task file version |
---|
[993d5af6f6] | 84 | #define ZKT_VERSION quint8(1) |
---|
| 85 | |
---|
[bc1b8837b6] | 86 | //! This string represents infinite value in the table |
---|
[430bd7f7e9] | 87 | #define INFSTR "---" |
---|
[5587b87fac] | 88 | |
---|
[f1fb54b9f7] | 89 | // FUNCTIONS |
---|
| 90 | /*! |
---|
[946f442ab0] | 91 | * \brief Checks whether \a x contains an integer value. |
---|
| 92 | * \param x A value to check. |
---|
| 93 | * \return \c true if \a x countains an integer, oherwise \c false. |
---|
[f1fb54b9f7] | 94 | */ |
---|
[e4ae9e95f7] | 95 | inline bool isInteger(double x) |
---|
[f1fb54b9f7] | 96 | { |
---|
[e4ae9e95f7] | 97 | double i; |
---|
[f1fb54b9f7] | 98 | return (modf(x, &i) == 0.0); |
---|
| 99 | } |
---|
| 100 | |
---|
[e2abfd326f] | 101 | #ifdef Q_OS_WIN32 |
---|
| 102 | /*! |
---|
| 103 | * \brief Enables or disables a mask for the \a widget. |
---|
| 104 | * \param widget A widget to toggle mask on. |
---|
| 105 | * \param enable Set to \c true to enable mask or \c false to disable it. |
---|
| 106 | * |
---|
| 107 | * This function is used to enable an outlined font effect for \c QLabel with a static text. |
---|
| 108 | */ |
---|
| 109 | void toggleStyle(QWidget *widget, bool enable); |
---|
| 110 | #endif // Q_OS_WIN32 |
---|
| 111 | |
---|
[1babbd6ba3] | 112 | #if defined(Q_OS_WINCE_WM) || defined(Q_OS_SYMBIAN) |
---|
| 113 | //! This is defined on handheld (e.g., Windows Mobile, Symbian) devices. |
---|
| 114 | #define HANDHELD |
---|
| 115 | #endif |
---|
| 116 | |
---|
[bc1b8837b6] | 117 | // Sanity checks |
---|
[2fb523720a] | 118 | // Check that default number of cities is sane (<= MAX_NUM_CITIES) |
---|
[aaf2113307] | 119 | #if DEF_NUM_CITIES > MAX_NUM_CITIES |
---|
| 120 | #undef DEF_NUM_CITIES |
---|
| 121 | #define DEF_NUM_CITIES MAX_NUM_CITIES |
---|
| 122 | #endif |
---|
[2fb523720a] | 123 | // Check that maximum for random generation is sane (<= MAX_RAND_VALUE) |
---|
| 124 | #if DEF_RAND_MAX > MAX_RAND_VALUE |
---|
| 125 | #undef DEF_RAND_MAX |
---|
| 126 | #define DEF_RAND_MAX MAX_RAND_VALUE |
---|
| 127 | #endif |
---|
| 128 | // Check that DEF_RAND_MIN <= DEF_RAND_MAX |
---|
| 129 | #if DEF_RAND_MIN > DEF_RAND_MAX |
---|
| 130 | #undef DEF_RAND_MIN |
---|
| 131 | #define DEF_RAND_MIN DEF_RAND_MAX |
---|
| 132 | #endif |
---|
[aaf2113307] | 133 | |
---|
[993d5af6f6] | 134 | #endif // GLOBALS_H |
---|