/* * TSPSG - TSP Solver and Generator * Copyright (C) 2007-2009 Lёppa * * $Id: defines.h 22 2009-06-21 23:38:41Z laleppa $ * $URL: https://tspsg.svn.sourceforge.net/svnroot/tspsg/trunk/src/defines.h $ * * This file is part of TSPSG. * * TSPSG is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * TSPSG is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with TSPSG. If not, see . */ #ifndef DEFAULTS_H #define DEFAULTS_H // Ini file name #define INI_FILE "tspsg.ini" // Default values #define DEF_RAND_MIN 1 #define DEF_RAND_MAX 10 #define DEF_OFFSET 100 #define DEF_FONT_FAMILY "Courier New" #define DEF_FONT_SIZE 12 #define DEF_FONT_COLOR Qt::black #endif // DEFAULTS_H