Salome HOME
e52d615f01352d8d20bc606841d551518087c6fc
[modules/shaper.git] / src / SketchPlugin / plugin-Sketch.xml
1 <!-- Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 <plugin>
4   <workbench id="Sketch">
5     <group id="Basic">
6       <feature
7         id="Sketch"
8         nested="SketchPoint SketchLine SketchCircle SketchArc SketchConstraintLength SketchConstraintRadius SketchConstraintDistance SketchConstraintParallel SketchConstraintPerpendicular SketchConstraintRigid"
9         title="Sketch"
10         tooltip="Create a new sketch"
11         icon=":icons/sketch.png">
12         <sketch-start-label title="Select a plane on which to create a sketch" tooltip="Select a plane on which to create a sketch"/> 
13       <!--icon=":pictures/x_point.png"-->
14       </feature>
15       <feature id="SketchPoint" title="Point" tooltip="Create a new point" icon=":icons/point.png">
16         <sketch-2dpoint_selector id="PointCoordindates" title="Point" tooltip="Point coordinates"/>
17       </feature>
18       <feature id="SketchLine" title="Line" tooltip="Create a new line" icon=":icons/line.png">
19         <sketch-2dpoint_selector id="StartPoint" title="Start point" tooltip="Start point coordinates" previous_feature_param="EndPoint"/>
20         <sketch-2dpoint_selector id="EndPoint" title="End point" tooltip="End point coordinates"/>
21       </feature>
22       <feature id="SketchCircle" title="Circle" tooltip="Create a new circle" icon=":icons/circle.png">
23         <sketch-2dpoint_selector id="CircleCenter" title="Center" tooltip="Center coordinates"/>
24         <point2ddistance id="CircleRadius" first_point="CircleCenter" label="Radius:" min="0" step="1.0" default="0" icon=":icons/radius.png" tooltip="Set radius">
25           <validator id="GeomValidators_Positive"/>
26         </point2ddistance>
27       </feature>
28       <feature id="SketchArc" title="Arc" tooltip="Create a new arc" icon=":icons/arc.png">
29         <sketch-2dpoint_selector id="ArcCenter" title="Center" tooltip="Center of a circle"/>
30         <sketch-2dpoint_selector id="ArcStartPoint" title="Start point" tooltip="Start point"/>
31         <sketch-2dpoint_selector id="ArcEndPoint" title="End point" tooltip="End point"/>
32       </feature>
33     </group>
34           
35     <group id="Constraints">
36       <feature
37         id="SketchConstraintCoincidence"
38         title="Coincident"
39         tooltip="Create constraint for the coincidence of two points"
40         internal="1" />
41         <!--  SketchConstraintDistance  -->
42       <feature
43         id="SketchConstraintDistance"
44         title="Distance"
45         tooltip="Set fixed distance from a point to an object"
46         icon=":icons/distance.png">
47         <label title="Select objects for distance definition. Following objects can be accepted: point, line or arc end point, center of circle or arc."/>
48                 <sketch_shape_selector 
49           id="ConstraintEntityA" 
50           label="First object" 
51           tooltip="Select point, line end point, line, center of circle or arc."
52           shape_types="edge vertex"  
53           use_subshapes="true"/>
54                 <sketch_shape_selector 
55           id="ConstraintEntityB" 
56           label="Last object" 
57           tooltip="Select point, line end point, line, center of circle or arc." 
58                         shape_types="edge vertex"  use_subshapes="true">
59                         <validator id="SketchPlugin_DifferentObjects"/>
60                 </sketch_shape_selector>
61                 
62         <sketch-2dpoint_selector id="ConstraintFlyoutValuePnt" internal="1" obligatory="0"/>
63         
64                 <doublevalue_editor label="Value" tooltip="Distance" id="ConstraintValue" default="computed" min="0">
65           <validator id="GeomValidators_Positive"/>
66         </doublevalue_editor>
67         
68                 <validator id="PartSet_DistanceValidator"/>
69       </feature>
70         <!--  SketchConstraintLength  -->      
71       <feature id="SketchConstraintLength" title="Length" tooltip="Set fixed length of a line segment" icon=":icons/length.png">
72         <label title="Select a line on which to calculate length" tooltip="Select a line on which to calculate length"/>
73                 <shape_selector id="ConstraintEntityA" label="Line" tooltip="Select an line" 
74                         shape_types="edge" >
75                         <validator id="SketchPlugin_ResultLine"/>
76       <selection_filter id="EdgeFilter" parameters="line"/>
77     </shape_selector>
78         <sketch-2dpoint_selector id="ConstraintFlyoutValuePnt" internal="1" obligatory="0"/>
79         <doublevalue_editor label="Value" tooltip="Length" id="ConstraintValue" default="computed">
80           <validator id="GeomValidators_Positive"/>
81         </doublevalue_editor>
82         <validator id="PartSet_LengthValidator"/>
83       </feature>
84         <!--  SketchConstraintRadius  -->
85       <feature id="SketchConstraintRadius" title="Radius" tooltip="Set fixed radius of a circle or an arc" icon=":icons/radius_constr.png">
86         <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"/>
87                 <shape_selector id="ConstraintEntityA" label="Circle or Arc" tooltip="Select a circle or an arc" 
88                         shape_types="edge">
89                         <validator id="SketchPlugin_ResultArc"/>
90                         <selection_filter id="EdgeFilter" parameters="circle"/>
91                 </shape_selector>
92         <sketch-2dpoint_selector id="ConstraintFlyoutValuePnt" internal="1" obligatory="0"/>
93         <doublevalue_editor label="Value" tooltip="Radius" id="ConstraintValue" default="computed"/>
94         <validator id="PartSet_RadiusValidator"/>
95       </feature>
96         <!--  SketchConstraintParallel  -->
97       <feature id="SketchConstraintParallel" title="Parallel" tooltip="Create constraint defining two parallel lines" icon=":icons/parallel.png">
98                 <sketch_constraint_shape_selector id="ConstraintEntityA" 
99                         label="First line" tooltip="Select a line" 
100                         shape_types="edge" use_subshapes="true">
101                         <selection_filter id="EdgeFilter" parameters="line"/>
102                 </sketch_constraint_shape_selector>
103                 
104                 <sketch_constraint_shape_selector id="ConstraintEntityB" label="Last line" tooltip="Select a line" 
105                         shape_types="edge" use_subshapes="true">
106                         <selection_filter id="EdgeFilter" parameters="line"/>
107                         <validator id="SketchPlugin_DifferentObjects"/>
108                 </sketch_constraint_shape_selector>
109                 
110         <sketch-2dpoint_selector id="ConstraintFlyoutValuePnt" internal="1" obligatory="0"/>
111         <validator id="PartSet_ParallelValidator"/>
112       </feature>
113         <!--  SketchConstraintPerpendicular  -->
114       <feature id="SketchConstraintPerpendicular" title="Perpendicular" tooltip="Create constraint defining two perpendicular lines" icon=":icons/perpendicular.png">
115                 <sketch_constraint_shape_selector id="ConstraintEntityA" 
116                         label="First line" tooltip="Select an line" 
117                         shape_types="edge" use_subshapes="true">
118       <selection_filter id="EdgeFilter" parameters="line"/>
119     </sketch_constraint_shape_selector>
120                 
121                 <sketch_constraint_shape_selector id="ConstraintEntityB" 
122                         label="Last line" tooltip="Select an line" 
123                         shape_types="edge" use_subshapes="true">
124                         <validator id="SketchPlugin_DifferentObjects"/>
125       <selection_filter id="EdgeFilter" parameters="line"/>
126     </sketch_constraint_shape_selector>
127         <validator id="PartSet_PerpendicularValidator"/>
128       </feature>
129         <!--  SketchConstraintRigid  -->
130       <feature id="SketchConstraintRigid" title="Fixed" tooltip="Fix an object" icon=":icons/fixed.png">
131         <shape_selector id="ConstraintEntityA" label="Object" tooltip="Select an object" 
132                         shape_types="edge vertex">
133                     <validator id="SketchPlugin_ResultPoint"/>
134                         <validator id="SketchPlugin_ResultLine"/>
135                         <validator id="SketchPlugin_ResultArc"/>
136                 </shape_selector>
137             <validator id="PartSet_RigidValidator"/>
138       </feature>
139     </group>
140   </workbench>
141 </plugin>