Salome HOME
This commit was generated by cvs2git to create tag 'V1_1_1'.
[modules/geom.git] / SKETCHER / GEOM_SketcherStatus.h
1 //  GEOM SKETCHER : basic sketcher
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : GEOM_SketcherStatus.h
25 //  Author : Nicolas REJNERI
26 //  Module : GEOM
27 //  $Header$
28
29 enum TransitionStatus {
30         NOCONSTRAINT, // no constraint between consecutive edges
31         TANGENT,      // arc and segment are tangent
32         PERPENDICULAR,// arc is tangent to the perpendicular to the segment
33         ANGLE,        // Angular constraint between 2 segments
34         LENGTH_FIXED, // Length of segment has been fixed 
35         X_FIXED,      // X coordinate for segment has been fixed
36         Y_FIXED       // Y coordinate for segment has been fixed
37         };
38
39 enum TypeOfParameter {
40         ANGLE_PARAMETER,
41         LENGTH_PARAMETER,
42         RADIUS_PARAMETER,
43         XVALUE_PARAMETER,
44         YVALUE_PARAMETER
45         };
46
47 enum SketchStatus {
48         BEGIN_SKETCH, // Begin sketch; no edges created yet
49         SEGMENT,      // Current mode for creation is segment
50         ARC_CHORD,    // Current mode for creation is arc by chord
51         ARC_CHORD_END,// Chord validated, waiting for radius or center
52         END_SKETCH    // End sketch
53 };