]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchPlugin/plugin-Sketch.xml
Salome HOME
Result attributes validators created
[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       </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       </feature>
19       <feature id="SketchArc" title="Arc" tooltip="Create a new arc of a circle" icon=":icons/arc.png">
20         <point_selector id="ArcCenter" title="Center" tooltip="Center of the arc"/>
21         <point_selector id="ArcStartPoint" title="Start point" tooltip="Start point of the arc"/>
22         <point_selector id="ArcEndPoint" title="End point" tooltip="End point of the arc"/>
23       </feature>
24     </group>
25           
26     <group id="Constraints">
27       <feature id="SketchConstraintCoincidence" title="Coincident" tooltip="Create constraint for the coincidence of two points" internal="1"/>
28
29       <feature id="SketchConstraintDistance" title="Distance" tooltip="Create constraint for the distance from a point to an object">
30         <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"/>
31         <feature_or_attribute_selector id="ConstraintEntityA" label="First point" tooltip="Select an point in the viewer">
32           <validator id="ModuleBase_ResulPointValidator"/>
33         </feature_or_attribute_selector>
34         <feature_or_attribute_selector id="ConstraintEntityB" label="Last point" tooltip="Select an point in the viewer">
35           <validator id="ModuleBase_ResulPointValidator"/>
36         </feature_or_attribute_selector>
37         <point_selector id="ConstraintFlyoutValuePnt" internal="1"/>
38         <doublevalue_editor label="Value" tooltip="Constraint value" id="ConstraintValue"/>
39         <validator id="PartSet_DistanceValidator"/> 
40       </feature>
41       
42       <feature id="SketchConstraintLength" title="Length" tooltip="Create constraint for the given length of a line segment">
43         <label title="Select a line on which to calculate lenght" tooltip="Select a line on which to calculate lenght"/>
44         <feature_selector id="ConstraintEntityA" label="Line" tooltip="Select an line in the viewer">
45           <validator id="ModuleBase_ResulLineValidator"/>
46         </feature_selector>
47         <point_selector id="ConstraintFlyoutValuePnt" internal="1"/>
48         <doublevalue_editor label="Value" tooltip="Constraint value" id="ConstraintValue"/>
49         <validator id="PartSet_LengthValidator"/> 
50       </feature>
51       
52       <feature id="SketchConstraintRadius" title="Radius" tooltip="Create constraint for the given radius of a circle or an arc">
53         <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"/>
54         <feature_selector id="ConstraintEntityA" label="Circle or Arc" tooltip="Select a circle or an arc in the viewer">
55           <validator id="ModuleBase_ResulArcValidator"/>
56         </feature_selector>
57         <point_selector id="ConstraintFlyoutValuePnt" internal="1"/>
58         <doublevalue_editor label="Value" tooltip="Constraint value" id="ConstraintValue"/>
59         <validator id="PartSet_RadiusValidator"/>
60       </feature>
61       
62       <feature id="SketchConstraintParallel" title="Parallel" tooltip="Create constraint defining two parallel lines">
63         <feature_selector id="ConstraintEntityA" label="First line" tooltip="Select an line in the viewer">
64           <validator id="ModuleBase_ResulLineValidator"/>
65         </feature_selector>
66         <feature_selector id="ConstraintEntityB" label="Last line" tooltip="Select an line in the viewer">
67           <validator id="ModuleBase_ResulLineValidator"/>
68         </feature_selector>
69         <point_selector id="ConstraintFlyoutValuePnt" internal="1"/>
70         <validator id="PartSet_ParallelValidator"/>
71       </feature>
72       
73       <feature id="SketchConstraintPerpendicular" title="Perpendicular" tooltip="Create constraint defining two perpendicular lines">
74         <feature_selector id="ConstraintEntityA" label="First line" tooltip="Select an line in the viewer">
75           <validator id="ModuleBase_ResulLineValidator"/>
76         </feature_selector>
77         <feature_selector id="ConstraintEntityB" label="Last line" tooltip="Select an line in the viewer">
78           <validator id="ModuleBase_ResulLineValidator"/>
79         </feature_selector>
80         <point_selector id="ConstraintFlyoutValuePnt" internal="1"/>
81         <validator id="PartSet_PerpendicularValidator"/>
82       </feature>
83     </group>
84   </workbench>
85 </plugin>