SHAPER 9.16.0
SketcherPrs_Factory.h
1// Copyright (C) 2014-2026 CEA, EDF
2//
3// This library is free software; you can redistribute it and/or
4// modify it under the terms of the GNU Lesser General Public
5// License as published by the Free Software Foundation; either
6// version 2.1 of the License, or (at your option) any later version.
7//
8// This library is distributed in the hope that it will be useful,
9// but WITHOUT ANY WARRANTY; without even the implied warranty of
10// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11// Lesser General Public License for more details.
12//
13// You should have received a copy of the GNU Lesser General Public
14// License along with this library; if not, write to the Free Software
15// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16//
17// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18//
19
20#ifndef SketcherPrs_Factory_H_
21#define SketcherPrs_Factory_H_
22
23#include "SketcherPrs.h"
24#include <SketchPlugin_Sketch.h>
25
26#include <ModelAPI_Feature.h>
27#include <ModelAPI_CompositeFeature.h>
28
29#include <GeomAPI_Ax3.h>
30#include <GeomAPI_AISObject.h>
31
32#define GET_CONSTRAINT_PRS(NAME) \
33 static AISObjectPtr NAME(ModelAPI_Feature* theConstraint, \
34 SketchPlugin_Sketch* theSketcher, \
35 AISObjectPtr thePrevious);
36
40class SKETCHERPRS_EXPORT SketcherPrs_Factory
41{
42public:
47 GET_CONSTRAINT_PRS(collinearConstraint)
48
49
53 GET_CONSTRAINT_PRS(parallelConstraint)
54
55
59 GET_CONSTRAINT_PRS(perpendicularConstraint)
60
61
65 GET_CONSTRAINT_PRS(rigidConstraint)
66
67
71 GET_CONSTRAINT_PRS(horisontalConstraint)
72
73
77 GET_CONSTRAINT_PRS(verticalConstraint)
78
79
83 GET_CONSTRAINT_PRS(equalConstraint)
84
85
89 GET_CONSTRAINT_PRS(tangentConstraint)
90
91
95 GET_CONSTRAINT_PRS(middleConstraint)
96
97
101 GET_CONSTRAINT_PRS(mirrorConstraint)
102
103
107 GET_CONSTRAINT_PRS(translateConstraint)
108
109
113 GET_CONSTRAINT_PRS(rotateConstraint)
114
115
119 GET_CONSTRAINT_PRS(coincidentConstraint)
120
121
125 GET_CONSTRAINT_PRS(lengthDimensionConstraint)
126
127
131 GET_CONSTRAINT_PRS(angleConstraint)
132
133
137 GET_CONSTRAINT_PRS(radiusConstraint)
138
139
143 GET_CONSTRAINT_PRS(offsetObject)
144};
145
146#endif
Class which creates constraints presentations.
Definition: SketcherPrs_Factory.h:41