Salome HOME
Implementation of the Feature Validator
[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" 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         <validator id="Model_FeatureValidator" />
15       </feature>
16       <feature id="SketchCircle" title="Circle" tooltip="Create a new circle" icon=":icons/circle.png">
17         <point_selector id="CircleCenter" title="Center" tooltip="Center of the circle"/>
18         <point2ddistance id="CircleRadius" first_point="CircleCenter" label="Radius:" min="0" step="1.0" default="0" icon=":icons/radius.png" tooltip="Set Radius"/>
19       </feature>
20       <feature id="SketchArc" title="Arc" tooltip="Create a new arc of a circle" icon=":icons/arc.png">
21         <point_selector id="ArcCenter" title="Center" tooltip="Center of the arc"/>
22         <point_selector id="ArcStartPoint" title="Start point" tooltip="Start point of the arc"/>
23         <point_selector id="ArcEndPoint" title="End point" tooltip="End point of the arc"/>
24       </feature>
25     </group>
26           
27     <group id="Constraints">
28       <feature id="SketchConstraintCoincidence" title="Coincident" tooltip="Create constraint for the coincidence of two points" internal="1"/>
29
30       <feature id="SketchConstraintDistance" title="Distance" tooltip="Create constraint for the distance from a point to an object">
31         <label title="Select point and another feature (point or point on line) between which to calculate distance" tooltip="Select point and another feature (point or point on line) between which to calculate distance"/>
32         <feature_or_attribute_selector id="ConstraintEntityA" label="First object" tooltip="Select an point in the viewer">
33           <validator id="Model_ResultPointValidator"/>
34           <validator id="Model_ResultLineValidator"/>
35         </feature_or_attribute_selector>
36         <feature_or_attribute_selector id="ConstraintEntityB" label="Last object" tooltip="Select an point in the viewer">
37           <validator id="Model_ResultPointValidator"/>
38           <validator id="Model_ResultLineValidator"/>
39           <validator id="SketchPlugin_DistanceAttrValidator" parameters="ConstraintEntityA"/>
40         </feature_or_attribute_selector>
41         <point_selector id="ConstraintFlyoutValuePnt" internal="1"/>
42         <doublevalue_editor label="Value" tooltip="Constraint value" id="ConstraintValue"/>
43         <validator id="PartSet_DistanceValidator"/>
44       </feature>
45       
46       <feature id="SketchConstraintLength" title="Length" tooltip="Create constraint for the given length of a line segment">
47         <label title="Select a line on which to calculate lenght" tooltip="Select a line on which to calculate lenght"/>
48         <feature_selector id="ConstraintEntityA" label="Line" tooltip="Select an line in the viewer">
49           <validator id="Model_ResultLineValidator"/>
50         </feature_selector>
51         <point_selector id="ConstraintFlyoutValuePnt" internal="1"/>
52         <doublevalue_editor label="Value" tooltip="Constraint value" id="ConstraintValue"/>
53         <validator id="PartSet_LengthValidator"/> 
54       </feature>
55       
56       <feature id="SketchConstraintRadius" title="Radius" tooltip="Create constraint for the given radius of a circle or an arc">
57         <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"/>
58         <feature_selector id="ConstraintEntityA" label="Circle or Arc" tooltip="Select a circle or an arc in the viewer">
59           <validator id="Model_ResultArcValidator"/>
60         </feature_selector>
61         <point_selector id="ConstraintFlyoutValuePnt" internal="1"/>
62         <doublevalue_editor label="Value" tooltip="Constraint value" id="ConstraintValue"/>
63         <validator id="PartSet_RadiusValidator"/>
64       </feature>
65       
66       <feature id="SketchConstraintParallel" title="Parallel" tooltip="Create constraint defining two parallel lines">
67         <feature_selector id="ConstraintEntityA" label="First line" tooltip="Select an line in the viewer">
68           <validator id="Model_ResultLineValidator"/>
69         </feature_selector>
70         <feature_selector id="ConstraintEntityB" label="Last line" tooltip="Select an line in the viewer">
71           <validator id="Model_ResultLineValidator"/>
72         </feature_selector>
73         <point_selector id="ConstraintFlyoutValuePnt" internal="1"/>
74         <validator id="PartSet_ParallelValidator"/>
75       </feature>
76       
77       <feature id="SketchConstraintPerpendicular" title="Perpendicular" tooltip="Create constraint defining two perpendicular lines">
78         <feature_selector id="ConstraintEntityA" label="First line" tooltip="Select an line in the viewer">
79           <validator id="Model_ResultLineValidator"/>
80         </feature_selector>
81         <feature_selector id="ConstraintEntityB" label="Last line" tooltip="Select an line in the viewer">
82           <validator id="Model_ResultLineValidator"/>
83         </feature_selector>
84         <point_selector id="ConstraintFlyoutValuePnt" internal="1"/>
85         <validator id="PartSet_PerpendicularValidator"/>
86       </feature>
87     </group>
88   </workbench>
89 </plugin>