valentina/options.h

59 lines
939 B
C
Raw Normal View History

2013-07-03 14:29:26 +02:00
#ifndef OPTIONS_H
#define OPTIONS_H
2013-08-28 10:55:11 +02:00
#include <QtGlobal>
2013-07-03 14:29:26 +02:00
#define PrintDPI 96
#define PaperSize 50000
2013-08-28 10:55:11 +02:00
#define toPixel(mm) ((mm / 25.4) * PrintDPI)
#define toMM(pix) ((pix / PrintDPI) * 25.4)
#define widthMainLine toPixel(0.8)
2013-07-28 00:18:06 +02:00
#define widthHairLine widthMainLine/3
2013-07-03 14:29:26 +02:00
2013-08-28 10:55:11 +02:00
2013-07-25 14:00:51 +02:00
namespace Scene{
enum Type
{
Point,
Line,
Spline,
2013-08-09 08:49:34 +02:00
Arc,
SplinePath,
Detail
2013-07-25 14:00:51 +02:00
};
}
2013-08-15 22:39:00 +02:00
namespace Tools{
enum Enum
{
ArrowTool,
SinglePointTool,
EndLineTool,
LineTool,
AlongLineTool,
ShoulderPointTool,
NormalTool,
BisectorTool,
LineIntersectTool,
SplineTool,
ArcTool,
2013-08-21 10:03:53 +02:00
SplinePathTool,
2013-08-28 10:55:11 +02:00
PointOfContact,
Detail,
NodePoint,
NodeArc,
NodeSpline,
NodeSplinePath
2013-08-28 10:55:11 +02:00
};
}
namespace Draw{
enum Mode
{
Calculation,
Modeling
2013-08-15 22:39:00 +02:00
};
}
2013-07-03 14:29:26 +02:00
#endif // OPTIONS_H