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.
|
|
|
|
** Copyright (C) 2013 Valentina project
|
|
|
|
** <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
|
|
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
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
|
|
|
|
|
2013-09-27 11:17:00 +02:00
|
|
|
#include <QFlags>
|
2014-02-14 20:14:49 +01:00
|
|
|
#include <QString>
|
2014-03-26 05:39:07 +01:00
|
|
|
#include <QMetaType>
|
2013-08-28 10:55:11 +02:00
|
|
|
|
2014-01-09 12:39:58 +01:00
|
|
|
#define SceneSize 50000
|
|
|
|
|
2014-02-14 20:14:49 +01:00
|
|
|
extern const QString translationsPath;
|
|
|
|
|
2014-03-11 12:43:24 +01:00
|
|
|
namespace Valentina
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief The Scene enum
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
enum Scene { Point, Line, Spline, Arc, SplinePath, Detail };
|
|
|
|
Q_DECLARE_FLAGS(Scenes, Scene)
|
2013-07-25 14:00:51 +02:00
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief The Tool enum
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
enum Tool
|
|
|
|
{
|
|
|
|
ArrowTool,
|
|
|
|
SinglePointTool,
|
|
|
|
EndLineTool,
|
|
|
|
LineTool,
|
|
|
|
AlongLineTool,
|
|
|
|
ShoulderPointTool,
|
|
|
|
NormalTool,
|
|
|
|
BisectorTool,
|
|
|
|
LineIntersectTool,
|
|
|
|
SplineTool,
|
2013-12-18 12:13:32 +01:00
|
|
|
CutSplineTool,
|
2014-01-08 15:05:32 +01:00
|
|
|
CutArcTool,
|
2013-11-04 21:35:15 +01:00
|
|
|
ArcTool,
|
|
|
|
SplinePathTool,
|
2013-12-18 12:13:32 +01:00
|
|
|
CutSplinePathTool,
|
2013-11-04 21:35:15 +01:00
|
|
|
PointOfContact,
|
2014-03-11 12:43:24 +01:00
|
|
|
DetailTool,
|
2013-11-04 21:35:15 +01:00
|
|
|
NodePoint,
|
|
|
|
NodeArc,
|
|
|
|
NodeSpline,
|
|
|
|
NodeSplinePath,
|
|
|
|
Height,
|
|
|
|
Triangle,
|
2013-12-29 17:48:57 +01:00
|
|
|
PointOfIntersection,
|
|
|
|
UnionDetails
|
2013-11-04 21:35:15 +01:00
|
|
|
};
|
|
|
|
Q_DECLARE_FLAGS(Tools, Tool)
|
2013-09-29 12:58:45 +02:00
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief The Source enum
|
|
|
|
*/
|
2013-12-29 17:48:57 +01:00
|
|
|
enum Source { FromGui, FromFile, FromTool };
|
2013-11-04 21:35:15 +01:00
|
|
|
Q_DECLARE_FLAGS(Sources, Source)
|
2013-08-28 10:55:11 +02:00
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief The Draw enum
|
|
|
|
*/
|
2013-09-27 11:17:00 +02:00
|
|
|
enum Draw { Calculation, Modeling };
|
|
|
|
Q_DECLARE_FLAGS(Draws, Draw)
|
2014-03-11 12:43:24 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief The Unit enum
|
|
|
|
*/
|
2014-03-24 16:02:57 +01:00
|
|
|
enum Unit { Mm, Cm, Inch };
|
2014-03-11 12:43:24 +01:00
|
|
|
Q_DECLARE_FLAGS(Units, Unit)
|
2013-08-15 22:39:00 +02:00
|
|
|
}
|
2014-03-11 12:43:24 +01:00
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS( Valentina::Scenes )
|
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS( Valentina::Tools )
|
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS( Valentina::Sources )
|
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS( Valentina::Draws )
|
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS( Valentina::Units )
|
2014-03-26 05:39:07 +01:00
|
|
|
Q_DECLARE_METATYPE(Valentina::Unit)
|
2014-03-11 12:43:24 +01:00
|
|
|
|
2014-03-14 15:12:53 +01:00
|
|
|
namespace Pattern
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @brief The Scene enum
|
|
|
|
*/
|
|
|
|
enum Measurement { Standard, Individual };
|
|
|
|
Q_DECLARE_FLAGS(Measurements, Measurement)
|
|
|
|
}
|
2014-05-01 13:33:40 +02:00
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS( Pattern::Measurements )
|
2014-03-11 16:04:04 +01:00
|
|
|
|
2013-07-03 14:29:26 +02:00
|
|
|
#endif // OPTIONS_H
|