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
|
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
|
|
|
|
|
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>
|
2014-05-13 10:08:37 +02:00
|
|
|
#include <QtGlobal>
|
2013-08-28 10:55:11 +02:00
|
|
|
|
2014-01-09 12:39:58 +01:00
|
|
|
#define SceneSize 50000
|
|
|
|
|
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
|
|
|
|
2014-05-13 10:08:37 +02:00
|
|
|
// measurements
|
|
|
|
extern const QString headGirth;
|
|
|
|
extern const QString midNeckGirth;
|
|
|
|
extern const QString neckBaseGirth;
|
|
|
|
extern const QString headAndNeckLength;
|
|
|
|
extern const QString centerFrontWaistLength;
|
|
|
|
extern const QString centerBackWaistLength;
|
|
|
|
extern const QString shoulderLength;
|
|
|
|
extern const QString sideWaistLength;
|
|
|
|
extern const QString trunkLength;
|
|
|
|
extern const QString shoulderGirth;
|
|
|
|
extern const QString upperChestGirth;
|
|
|
|
extern const QString bustGirth;
|
|
|
|
extern const QString underBustGirth;
|
|
|
|
extern const QString waistGirth;
|
|
|
|
extern const QString highHipGirth;
|
|
|
|
extern const QString hipGirth;
|
|
|
|
extern const QString upperFrontChestWidth;
|
|
|
|
extern const QString frontChestWidth;
|
|
|
|
extern const QString acrossFrontShoulderWidth;
|
|
|
|
extern const QString acrossBackShoulderWidth;
|
|
|
|
extern const QString upperBackWidth;
|
|
|
|
extern const QString backWidth;
|
|
|
|
extern const QString bustpointToBustpoint;
|
|
|
|
extern const QString halterBustpointToBustpoint;
|
|
|
|
extern const QString neckToBustpoint;
|
|
|
|
extern const QString crotchLength;
|
|
|
|
extern const QString riseHeight;
|
|
|
|
extern const QString shoulderDrop;
|
|
|
|
extern const QString shoulderSlopeDegrees;
|
|
|
|
extern const QString frontShoulderSlopeLength;
|
|
|
|
extern const QString backShoulderSlopeLength;
|
|
|
|
extern const QString frontShoulderToWaistLength;
|
|
|
|
extern const QString backShoulderToWaistLength;
|
|
|
|
extern const QString frontNeckArc;
|
|
|
|
extern const QString backNeckArc;
|
2014-05-15 11:47:08 +02:00
|
|
|
extern const QString frontUpperChestArc;
|
|
|
|
extern const QString backUpperChestArc;
|
2014-05-13 10:08:37 +02:00
|
|
|
extern const QString frontWaistArc;
|
|
|
|
extern const QString backWaistArc;
|
|
|
|
extern const QString frontUpperHipArc;
|
|
|
|
extern const QString backUpperHipArc;
|
|
|
|
extern const QString frontHipArc;
|
|
|
|
extern const QString backHipArc;
|
|
|
|
extern const QString chestSlope;
|
|
|
|
extern const QString backSlope;
|
|
|
|
extern const QString frontWaistSlope;
|
|
|
|
extern const QString backWaistSlope;
|
|
|
|
extern const QString frontNeckToUpperChestHeight;
|
|
|
|
extern const QString frontNeckToBustHeight;
|
|
|
|
extern const QString armscyeGirth;
|
|
|
|
extern const QString elbowGirth;
|
|
|
|
extern const QString upperArmGirth;
|
|
|
|
extern const QString wristGirth;
|
|
|
|
extern const QString scyeDepth;
|
|
|
|
extern const QString shoulderAndArmLength;
|
|
|
|
extern const QString underarmLength;
|
|
|
|
extern const QString cervicaleToWristLength;
|
|
|
|
extern const QString shoulderToElbowLength;
|
|
|
|
extern const QString armLength;
|
|
|
|
extern const QString handWidth;
|
|
|
|
extern const QString handLength;
|
|
|
|
extern const QString handGirth;
|
|
|
|
extern const QString thighGirth;
|
|
|
|
extern const QString midThighGirth;
|
|
|
|
extern const QString kneeGirth;
|
|
|
|
extern const QString calfGirth;
|
|
|
|
extern const QString ankleGirth;
|
|
|
|
extern const QString kneeHeight;
|
|
|
|
extern const QString ankleHeight;
|
|
|
|
extern const QString footWidth;
|
|
|
|
extern const QString footLength;
|
|
|
|
extern const QString height;
|
|
|
|
extern const QString cervicaleHeight;
|
|
|
|
extern const QString cervicaleToKneeHeight;
|
|
|
|
extern const QString waistHeight;
|
|
|
|
extern const QString highHipHeight;
|
|
|
|
extern const QString hipHeight;
|
|
|
|
extern const QString waistToHipHeight;
|
|
|
|
extern const QString waistToKneeHeight;
|
|
|
|
extern const QString crotchHeight;
|
|
|
|
|
|
|
|
// variables name
|
|
|
|
extern const QString line_;
|
|
|
|
extern const QString angleLine_;
|
|
|
|
extern const QString arc_;
|
|
|
|
extern const QString spl_;
|
|
|
|
extern const QString splPath;
|
|
|
|
|
|
|
|
// functions
|
|
|
|
extern const QString sin_F;
|
|
|
|
extern const QString cos_F;
|
|
|
|
extern const QString tan_F;
|
|
|
|
extern const QString asin_F;
|
|
|
|
extern const QString acos_F;
|
|
|
|
extern const QString atan_F;
|
|
|
|
extern const QString sinh_F;
|
|
|
|
extern const QString cosh_F;
|
|
|
|
extern const QString tanh_F;
|
|
|
|
extern const QString asinh_F;
|
|
|
|
extern const QString acosh_F;
|
|
|
|
extern const QString atanh_F;
|
|
|
|
extern const QString log2_F;
|
|
|
|
extern const QString log10_F;
|
|
|
|
extern const QString log_F;
|
|
|
|
extern const QString ln_F;
|
|
|
|
extern const QString exp_F;
|
|
|
|
extern const QString sqrt_F;
|
|
|
|
extern const QString sign_F;
|
|
|
|
extern const QString rint_F;
|
|
|
|
extern const QString abs_F;
|
|
|
|
extern const QString min_F;
|
|
|
|
extern const QString max_F;
|
|
|
|
extern const QString sum_F;
|
|
|
|
extern const QString avg_F;
|
|
|
|
|
2013-07-03 14:29:26 +02:00
|
|
|
#endif // OPTIONS_H
|