2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file options.h
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2013-11-15 13:41:26 +01:00
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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
|
2014-05-13 10:08:37 +02:00
|
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2013-07-03 14:29:26 +02:00
|
|
|
#ifndef OPTIONS_H
|
|
|
|
#define OPTIONS_H
|
|
|
|
|
2015-07-10 11:24:47 +02:00
|
|
|
#include "../ifc/ifcdef.h"
|
|
|
|
#include "../vgeometry/vgeometrydef.h"
|
|
|
|
#include "../qmuparser/qmudef.h"
|
2015-06-15 13:43:41 +02:00
|
|
|
#include "../vmisc/def.h"
|
2014-06-03 14:15:17 +02:00
|
|
|
|
|
|
|
#ifdef Q_OS_WIN32
|
2014-10-23 23:44:50 +02:00
|
|
|
# if defined( Q_CC_MSVC ) // MSVC USED
|
|
|
|
# ifndef NOMINMAX
|
|
|
|
# define NOMINMAX // DISABLE min/max MACROS
|
|
|
|
# endif
|
|
|
|
# endif /*Q_CC_MSVC*/
|
|
|
|
# include <windows.h>
|
2014-10-08 10:51:17 +02:00
|
|
|
|
2014-06-03 14:15:17 +02:00
|
|
|
#endif /*Q_OS_WIN32*/
|
2013-08-28 10:55:11 +02:00
|
|
|
|
2014-06-08 20:10:57 +02:00
|
|
|
class QString;
|
2014-10-02 11:46:24 +02:00
|
|
|
class QStringList;
|
2014-06-08 20:10:57 +02:00
|
|
|
|
2014-08-20 13:11:12 +02:00
|
|
|
enum class Contour : char { OpenContour, CloseContour };
|
2014-05-21 10:51:16 +02:00
|
|
|
|
2013-07-03 14:29:26 +02:00
|
|
|
#endif // OPTIONS_H
|