Salome HOME
refs #80 - Sketch base GUI: create/draw point, circle and arc
[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 SketchConstraintCoincidence" title="Sketch" tooltip="Create a new sketch or edit an existing sketch" icon=":icons/sketch.png">
5         <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="">
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="">
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       <feature id="SketchConstraintCoincidence" title="Points coincidence" tooltip="Create constraint for the coincidence of two points">
25         <label title="Select two points to become coincident" tooltip="Select two points to become coincident"/>
26         <feature_selector id="ConstraintEntityA" label="First point" tooltip="Select an entity in the viewer" keysequence="SketchPoint"/>
27         <feature_selector id="ConstraintEntityB" label="Last point" tooltip="Select an entity in the viewer" keysequence="SketchPoint"/>
28       </feature>
29       <feature id="SketchConstraintDistance" title="Distance between objects" 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_selector id="ConstraintEntityA" label="First point" tooltip="Select an entity in the viewer" keysequence="SketchPoint"/>
32         <feature_selector id="ConstraintEntityB" label="Last point" tooltip="Select an entity in the viewer" keysequence="SketchPoint"/>
33         <point_selector id="ConstraintFlyoutValuePnt" internal="1"/>
34         <doublevalue_editor label="Value" tooltip="Constraint value" id="ConstraintValue"/>
35       </feature>
36       <feature id="SketchConstraintLength" title="Length of a line" tooltip="Create constraint for the given length of a line segment">
37         <label title="Select a line entity on which to calculate lenght" tooltip="Select a line entity on which to calculate lenght"/>
38         <feature_selector id="ConstraintEntityA" label="Line" tooltip="Select an entity in the viewer" keysequence="SketchLine"/>
39         <point_selector id="ConstraintFlyoutValuePnt" internal="1"/>
40         <doublevalue_editor label="Value" tooltip="Constraint value" id="ConstraintValue"/>
41       </feature>
42       <feature id="SketchConstraintRadius" title="Radius of a circle or an arc" tooltip="Create constraint for the given radius of a circle or an arc">
43         <label title="Select two points on a circle or an arc of circle on which to calculate radius" tooltip="Select two points on a circle or an arc of circle on which to calculate radius"/>
44         <feature_selector id="ConstraintEntityA" label="Circle or Arc" tooltip="Select an entity in the viewer" keysequence="SketchCircle SketchArc"/>
45         <point_selector id="ConstraintFlyoutValuePnt" internal="1"/>
46         <doublevalue_editor label="Value" tooltip="Constraint value" id="ConstraintValue"/>
47       </feature>
48       <feature id="SketchConstraintParallel" title="Parallelism of a lines" tooltip="Create constraint defining two parallel lines">
49         <feature_selector id="ConstraintEntityA" label="First line" tooltip="Select an entity in the viewer" keysequence="SketchLine"/>
50         <feature_selector id="ConstraintEntityB" label="Last line" tooltip="Select an entity in the viewer" keysequence="SketchLine"/>
51       </feature>
52       <feature id="SketchConstraintPerpendicular" title="Orthgonality of a lines" tooltip="Create constraint defining two perpendicular lines">
53         <feature_selector id="ConstraintEntityA" label="First line" tooltip="Select an entity in the viewer" keysequence="SketchLine"/>
54         <feature_selector id="ConstraintEntityB" label="Last line" tooltip="Select an entity in the viewer" keysequence="SketchLine"/>
55       </feature>
56     </group>
57   </workbench>
58 </plugin>