]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchPlugin/plugin-Sketch.xml
Salome HOME
refs #222 - correction to do not select the same parameters in the distance constraint.
[modules/shaper.git] / src / SketchPlugin / plugin-Sketch.xml
1 <plugin>
2   <workbench id="Sketch">
3     <group id="Basic">
4       <feature id="Sketch" nested="SketchPoint SketchLine SketchCircle SketchArc SketchConstraintLength SketchConstraintRadius SketchConstraintDistance SketchConstraintParallel SketchConstraintPerpendicular SketchConstraintRigid" title="Sketch" tooltip="Create a new sketch or edit an existing sketch" icon=":icons/sketch.png">
5         <sketch-start-label title="Select a plane on which to create a sketch" tooltip="Select a plane on which to create a sketch"/> 
6       <!--icon=":pictures/x_point.png"-->
7       </feature>
8       <feature id="SketchPoint" title="Point" tooltip="Create a new point" icon=":icons/point.png">
9         <point_selector id="PointCoordindates" title="Point" tooltip="Point"/>
10       </feature>
11       <feature id="SketchLine" title="Line" tooltip="Create a new line" icon=":icons/line.png">
12         <point_selector id="StartPoint" title="Start point" tooltip="Start point of the line" previous_feature_param="EndPoint"/>
13         <point_selector id="EndPoint" title="End point" tooltip="End point of the line"/>
14       </feature>
15       <feature id="SketchCircle" title="Circle" tooltip="Create a new circle" icon=":icons/circle.png">
16         <point_selector id="CircleCenter" title="Center" tooltip="Center of the circle"/>
17         <point2ddistance id="CircleRadius" first_point="CircleCenter" label="Radius:" min="0" step="1.0" default="0" icon=":icons/radius.png" tooltip="Set Radius">
18           <validator id="GeomValidators_Positive"/>
19         </point2ddistance>
20       </feature>
21       <feature id="SketchArc" title="Arc" tooltip="Create a new arc of a circle" icon=":icons/arc.png">
22         <point_selector id="ArcCenter" title="Center" tooltip="Center of the arc"/>
23         <point_selector id="ArcStartPoint" title="Start point" tooltip="Start point of the arc"/>
24         <point_selector id="ArcEndPoint" title="End point" tooltip="End point of the arc"/>
25       </feature>
26     </group>
27           
28     <group id="Constraints">
29       <feature id="SketchConstraintCoincidence" title="Coincident" tooltip="Create constraint for the coincidence of two points" internal="1"/>
30
31       <feature id="SketchConstraintDistance" title="Distance" tooltip="Create constraint for the distance from a point to an object" icon=":icons/distance.png">
32         <label title="Select objects for distance definition. Following objects can be accepted: point, line or arc end point, center of circle or arc."/>
33         <feature_or_attribute_selector id="ConstraintEntityA" label="First object" tooltip="Select point, line end point, line, center of circle or arc.">
34           <validator id="SketchPlugin_ResultPoint"/>
35           <validator id="SketchPlugin_ResultLine"/>
36           <validator id="SketchPlugin_DifferentObjects"/>
37         </feature_or_attribute_selector>
38         <feature_or_attribute_selector id="ConstraintEntityB" label="Last object" tooltip="Select point, line end point, line, center of circle or arc.">
39           <validator id="SketchPlugin_ResultPoint"/>
40           <validator id="SketchPlugin_ResultLine"/>
41           <validator id="SketchPlugin_DistanceAttr" parameters="ConstraintEntityA"/>
42           <validator id="SketchPlugin_DifferentObjects"/>
43         </feature_or_attribute_selector>
44         <point_selector id="ConstraintFlyoutValuePnt" internal="1" obligatory="0"/>
45         <doublevalue_editor label="Value" tooltip="Constraint value" id="ConstraintValue" default="computed" min="0">
46           <validator id="GeomValidators_Positive"/>
47         </doublevalue_editor>
48         <validator id="PartSet_DistanceValidator"/>
49       </feature>
50       
51       <feature id="SketchConstraintLength" title="Length" tooltip="Create constraint for the given length of a line segment" icon=":icons/length.png">
52         <label title="Select a line on which to calculate length" tooltip="Select a line on which to calculate length"/>
53         <feature_selector id="ConstraintEntityA" label="Line" tooltip="Select an line in the viewer">
54           <validator id="SketchPlugin_ResultLine"/>
55         </feature_selector>
56         <point_selector id="ConstraintFlyoutValuePnt" internal="1" obligatory="0"/>
57         <doublevalue_editor label="Value" tooltip="Constraint value" id="ConstraintValue" default="computed">
58           <validator id="GeomValidators_Positive"/>
59         </doublevalue_editor>
60         <validator id="PartSet_LengthValidator"/>
61       </feature>
62       
63       <feature id="SketchConstraintRadius" title="Radius" tooltip="Create constraint for the given radius of a circle or an arc" icon=":icons/radius_constr.png">
64         <label title="Select a circle or an arc on which to calculate radius" tooltip="Select a circle or an arc on which to calculate radius"/>
65         <feature_selector id="ConstraintEntityA" label="Circle or Arc" tooltip="Select a circle or an arc in the viewer">
66           <validator id="SketchPlugin_ResultArc"/>
67         </feature_selector>
68         <point_selector id="ConstraintFlyoutValuePnt" internal="1" obligatory="0"/>
69         <doublevalue_editor label="Value" tooltip="Constraint value" id="ConstraintValue" default="computed"/>
70         <validator id="PartSet_RadiusValidator"/>
71       </feature>
72       
73       <feature id="SketchConstraintParallel" title="Parallel" tooltip="Create constraint defining two parallel lines" icon=":icons/parallel.png">
74         <feature_selector id="ConstraintEntityA" label="First line" tooltip="Select an line in the viewer">
75           <validator id="SketchPlugin_ResultLine"/>
76           <validator id="SketchPlugin_DifferentObjects"/>
77         </feature_selector>
78         <feature_selector id="ConstraintEntityB" label="Last line" tooltip="Select an line in the viewer">
79           <validator id="SketchPlugin_ResultLine"/>
80           <validator id="SketchPlugin_DifferentObjects"/>
81         </feature_selector>
82         <point_selector id="ConstraintFlyoutValuePnt" internal="1" obligatory="0"/>
83         <validator id="PartSet_ParallelValidator"/>
84       </feature>
85       
86       <feature id="SketchConstraintPerpendicular" title="Perpendicular" tooltip="Create constraint defining two perpendicular lines" icon=":icons/perpendicular.png">
87         <feature_selector id="ConstraintEntityA" label="First line" tooltip="Select an line in the viewer">
88           <validator id="SketchPlugin_ResultLine"/>
89           <validator id="SketchPlugin_DifferentObjects"/>
90         </feature_selector>
91         <feature_selector id="ConstraintEntityB" label="Last line" tooltip="Select an line in the viewer">
92           <validator id="SketchPlugin_ResultLine"/>
93           <validator id="SketchPlugin_DifferentObjects"/>
94         </feature_selector>
95         <validator id="PartSet_PerpendicularValidator"/>
96       </feature>
97
98       <feature id="SketchConstraintRigid" title="Fixed" tooltip="Create constraint defining fixed object" icon=":icons/fixed.png">
99         <feature_or_attribute_selector id="ConstraintEntityA" label="Object" tooltip="Select any object in the viewer">
100           <validator id="SketchPlugin_ResultPoint"/>
101           <validator id="SketchPlugin_ResultLine"/>
102           <validator id="SketchPlugin_ResultArc"/>
103         </feature_or_attribute_selector>
104       </feature>
105     </group>
106   </workbench>
107 </plugin>