Salome HOME
d83e41b6b8ba90720f37de56b0d0231e1ebd1399
[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         <sketch-2dpoint_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         <sketch-2dpoint_selector id="StartPoint" title="Start point" tooltip="Start point of the line" previous_feature_param="EndPoint"/>
13         <sketch-2dpoint_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         <sketch-2dpoint_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         <sketch-2dpoint_selector id="ArcCenter" title="Center" tooltip="Center of the arc"/>
23         <sketch-2dpoint_selector id="ArcStartPoint" title="Start point" tooltip="Start point of the arc"/>
24         <sketch-2dpoint_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         <!--  SketchConstraintDistance  -->
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                 
34                 <sketch_shape_selector id="ConstraintEntityA" label="First object" tooltip="Select point, line end point, line, center of circle or arc." 
35                         shape_types="edge vertex"  use_subshapes="true"/>
36                 
37                 <sketch_shape_selector id="ConstraintEntityB" label="Last object" tooltip="Select point, line end point, line, center of circle or arc." 
38                         shape_types="edge vertex"  use_subshapes="true">
39                         <validator id="SketchPlugin_DifferentObjects"/>
40                 </sketch_shape_selector>
41                 
42         <sketch-2dpoint_selector id="ConstraintFlyoutValuePnt" internal="1" obligatory="0"/>
43         
44                 <doublevalue_editor label="Value" tooltip="Constraint value" id="ConstraintValue" default="computed" min="0">
45           <validator id="GeomValidators_Positive"/>
46         </doublevalue_editor>
47         
48                 <validator id="PartSet_DistanceValidator"/>
49       </feature>
50         <!--  SketchConstraintLength  -->      
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                 <shape_selector id="ConstraintEntityA" label="Line" tooltip="Select an line in the viewer" 
54                         shape_types="edge" >
55                         <validator id="SketchPlugin_ResultLine"/>
56                 </shape_selector>
57         <sketch-2dpoint_selector id="ConstraintFlyoutValuePnt" internal="1" obligatory="0"/>
58         <doublevalue_editor label="Value" tooltip="Constraint value" id="ConstraintValue" default="computed">
59           <validator id="GeomValidators_Positive"/>
60         </doublevalue_editor>
61         <validator id="PartSet_LengthValidator"/>
62       </feature>
63         <!--  SketchConstraintRadius  -->
64       <feature id="SketchConstraintRadius" title="Radius" tooltip="Create constraint for the given radius of a circle or an arc" icon=":icons/radius_constr.png">
65         <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"/>
66                 <shape_selector id="ConstraintEntityA" label="Circle or Arc" tooltip="Select a circle or an arc in the viewer" 
67                         shape_types="edge">
68                         <validator id="SketchPlugin_ResultArc"/>
69                 </shape_selector>
70         <sketch-2dpoint_selector id="ConstraintFlyoutValuePnt" internal="1" obligatory="0"/>
71         <doublevalue_editor label="Value" tooltip="Constraint value" id="ConstraintValue" default="computed"/>
72         <validator id="PartSet_RadiusValidator"/>
73       </feature>
74         <!--  SketchConstraintParallel  -->
75       <feature id="SketchConstraintParallel" title="Parallel" tooltip="Create constraint defining two parallel lines" icon=":icons/parallel.png">
76                 <sketch_constraint_shape_selector id="ConstraintEntityA" 
77                         label="First line" tooltip="Select an line in the viewer" 
78                         shape_types="edge" use_subshapes="true">
79                 </sketch_constraint_shape_selector>
80                 
81                 <sketch_constraint_shape_selector id="ConstraintEntityB" label="Last line" tooltip="Select an line in the viewer" 
82                         shape_types="edge" use_subshapes="true">
83                         <validator id="SketchPlugin_DifferentObjects"/>
84                 </sketch_constraint_shape_selector>
85                 
86         <sketch-2dpoint_selector id="ConstraintFlyoutValuePnt" internal="1" obligatory="0"/>
87         <validator id="PartSet_ParallelValidator"/>
88       </feature>
89         <!--  SketchConstraintPerpendicular  -->
90       <feature id="SketchConstraintPerpendicular" title="Perpendicular" tooltip="Create constraint defining two perpendicular lines" icon=":icons/perpendicular.png">
91                 <sketch_constraint_shape_selector id="ConstraintEntityA" 
92                         label="First line" tooltip="Select an line in the viewer" 
93                         shape_types="edge" use_subshapes="true">
94                 </sketch_constraint_shape_selector>
95                 
96                 <sketch_constraint_shape_selector id="ConstraintEntityB" 
97                         label="Last line" tooltip="Select an line in the viewer" 
98                         shape_types="edge" use_subshapes="true">
99                         <validator id="SketchPlugin_DifferentObjects"/>
100                 </sketch_constraint_shape_selector>
101         <validator id="PartSet_PerpendicularValidator"/>
102       </feature>
103         <!--  SketchConstraintRigid  -->
104       <feature id="SketchConstraintRigid" title="Fixed" tooltip="Create constraint defining fixed object" icon=":icons/fixed.png">
105             <shape_selector id="ConstraintEntityA" label="Object" tooltip="Select any object in the viewer" 
106                         shape_types="edge vertex">
107                     <validator id="SketchPlugin_ResultPoint"/>
108                         <validator id="SketchPlugin_ResultLine"/>
109                         <validator id="SketchPlugin_ResultArc"/>
110                 </shape_selector>
111       </feature>
112     </group>
113   </workbench>
114 </plugin>