1 | /*! |
---|
2 | * \file defaults.h |
---|
3 | * \author Copyright (C) 2007-2010 Lёppa <contacts[at]oleksii[dot]name> |
---|
4 | * |
---|
5 | * $Id$ |
---|
6 | * $URL$ |
---|
7 | * |
---|
8 | * \brief Contains TSPSG defaults. |
---|
9 | * |
---|
10 | * <b>TSPSG: TSP Solver and Generator</b> |
---|
11 | * |
---|
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 | |
---|
28 | #ifndef DEFAULTS_H |
---|
29 | #define DEFAULTS_H |
---|
30 | |
---|
31 | //! Default number of cities |
---|
32 | #define DEF_NUM_CITIES 5 |
---|
33 | |
---|
34 | //////// GENERAL |
---|
35 | //! Default for "Automatically resize rows and columns to their contents" |
---|
36 | #define DEF_AUTOSIZE true |
---|
37 | /*! |
---|
38 | * \def DEF_USE_NATIVE_DIALOGS |
---|
39 | * \brief Default for "Use native file dialog". |
---|
40 | */ |
---|
41 | #ifdef Q_OS_WINCE |
---|
42 | #define DEF_USE_NATIVE_DIALOGS false |
---|
43 | #else |
---|
44 | #define DEF_USE_NATIVE_DIALOGS true |
---|
45 | #endif // Q_OS_WINCE |
---|
46 | //! Default for "Save main window state and position" |
---|
47 | #define DEF_SAVEPOS false |
---|
48 | //! Default for "Use translucency effects in Vista/7" |
---|
49 | #define DEF_USE_TRANSLUCENCY true |
---|
50 | |
---|
51 | //////// TASK |
---|
52 | //! Default for "Accuracy of the fractional values" |
---|
53 | #define DEF_FRACTIONAL_ACCURACY 2 |
---|
54 | //! Default minimum for random numbers generation |
---|
55 | #define DEF_RAND_MIN 1 |
---|
56 | //! Default maximum for random numbers generation |
---|
57 | #define DEF_RAND_MAX 10 |
---|
58 | //! Default for "Fractional random values" |
---|
59 | #define DEF_FRACTIONAL_RANDOM false |
---|
60 | |
---|
61 | //////// OUTPUT |
---|
62 | //! Default for "Show solution steps' matrices for every solution step" |
---|
63 | #define DEF_SHOW_MATRIX true |
---|
64 | //! Default for "Show or hide solution steps' matrices based on number of cities in the task" |
---|
65 | #define DEF_USE_SHOW_MATRIX_LIMIT true |
---|
66 | //! Default for "Maximum number of cities to show solution steps' matrices" |
---|
67 | #define DEF_SHOW_MATRIX_LIMIT 15 |
---|
68 | //! Default for "Scroll to the end of output after solving" |
---|
69 | #define DEF_SCROLL_TO_END true |
---|
70 | /*! |
---|
71 | * \def DEF_FON_FAMILY |
---|
72 | * \brief Default font name. |
---|
73 | */ |
---|
74 | #ifdef Q_OS_WINCE |
---|
75 | #define DEF_FONT_FAMILY "Tahoma" |
---|
76 | #else |
---|
77 | #define DEF_FONT_FAMILY "Courier New" |
---|
78 | #endif |
---|
79 | //! Default font size |
---|
80 | #define DEF_FONT_SIZE 10 |
---|
81 | //! Default font color |
---|
82 | #define DEF_FONT_COLOR Qt::black |
---|
83 | |
---|
84 | #endif // DEFAULTS_H |
---|