Salome HOME
2.3.2 Point creation: on a line
[modules/shaper.git] / src / ConstructionPlugin / point_widget.xml
1 <!--
2 Copyright (C) 2014-2017  CEA/DEN, EDF R&D
3
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
8
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public
15 License along with this library; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
18 See http:##www.salome-platform.org/ or
19 email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
20 -->
21
22 <source>
23   <toolbox id="creation_method">
24     <box id="by_xyz"
25          title="By X, Y, Z"
26          tooltip="Point at a given distance from the origin."
27          icon="icons/Construction/point_by_xyz_32x32.png">
28       <doublevalue id="x"
29                    label="X "
30                    tooltip="X coordinate."
31                    icon="icons/Construction/x_size.png"
32                    default="0"/>
33       <doublevalue id="y"
34                    label="Y "
35                    tooltip="Y coordinate."
36                    icon="icons/Construction/y_size.png"
37                    default="0"/>
38       <doublevalue id="z"
39                    label="Z "
40                    tooltip="Z coordinate."
41                    icon="icons/Construction/z_size.png"
42                    default="0"/>
43     </box>
44     <box id="by_distance_on_edge"
45          title="By distance on edge"
46          tooltip="Point on an edge, at a given distance of one of its end."
47          icon="icons/Construction/point_by_distance_on_edge_32x32.png">
48       <shape_selector id="edge"
49                       label="Edge"
50                       tooltip="Edge for creating point on it."
51                       icon="icons/Construction/edge.png"
52                       shape_types="edge">
53         <validator id="GeomValidators_Finite"/>
54       </shape_selector>
55       <toolbox id="offset_type">
56         <box id="offset_type_by_distance"
57              title="Distance on edge by value"
58              tooltip="Point on an edge, at a given distance specified by value."
59              icon="icons/Construction/point_by_distance_on_edge_24x24.png">
60           <doublevalue id="distance"
61              label="Distance"
62              tooltip="Distance value."
63              icon="icons/Construction/distance_value.png"
64              min="0.0"
65              default="10">
66           </doublevalue>
67         </box>
68         <box id="offset_type_by_ratio"
69              title="Distance on edge by ratio"
70              tooltip="Point on an edge, at a given distance specified by ratio."
71              icon="icons/Construction/point_by_ratio_on_edge_24x24.png">
72           <doublevalue id="ratio"
73              label="Ratio"
74              tooltip="Ratio value."
75              icon="icons/Construction/distance_value.png"
76              min="0.0"
77              max="1.0"
78              default="0.5">
79           </doublevalue>
80         </box>
81       </toolbox>
82       <boolvalue id="reverse"
83            label="Reverse"
84            tooltip="Distance from edge end point."
85            default="false"/>
86     </box>
87 <!--
88     <box id="by_projection"
89          title="By projection"
90          tooltip="Point on face surface by projection selected point."
91          icon="icons/Construction/point_by_projection_32x32.png">
92       <shape_selector id="point"
93                       label="Point"
94                       tooltip="Point for projection."
95                       icon="icons/Construction/point.png"
96                       shape_types="vertex">
97       </shape_selector>
98       <shape_selector id="plane"
99                       label="Plane"
100                       tooltip="Plane for projection."
101                       icon="icons/Construction/face.png"
102                       shape_types="face">
103         <validator id="GeomValidators_Face" parameters="plane"/>
104       </shape_selector>
105     </box>
106     <box id="by_lines_intersection"
107          title="By two lines intersection"
108          tooltip="Point by intersection of two coplanar lines."
109          icon="icons/Construction/point_by_lines_intersection_32x32.png">
110       <shape_selector id="first_line"
111                       label="First line"
112                       tooltip="First line."
113                       icon="icons/Construction/edge.png"
114                       shape_types="edge">
115         <validator id="GeomValidators_ShapeType" parameters="line"/>
116         <validator id="ConstructionPlugin_ValidatorPointLines" parameters="second_line"/>
117       </shape_selector>
118       <shape_selector id="second_line"
119                       label="Second line"
120                       tooltip="Second line."
121                       icon="icons/Construction/edge.png"
122                       shape_types="edge">
123         <validator id="GeomValidators_ShapeType" parameters="line"/>
124         <validator id="ConstructionPlugin_ValidatorPointLines" parameters="first_line"/>
125       </shape_selector>
126     </box>
127 -->
128     <box id="by_line_and_plane_intersection"
129          title="By line and plane intersection"
130          tooltip="Point by intersection of line and plane."
131          icon="icons/Construction/point_by_line_and_plane_intersection_32x32.png">
132       <shape_selector id="intersection_line"
133                       label="Line"
134                       tooltip="Line for intersection."
135                       icon="icons/Construction/edge.png"
136                       shape_types="edge">
137         <validator id="ConstructionPlugin_ValidatorPointEdgeAndPlaneNotParallel" parameters="intersection_plane"/>
138       </shape_selector>
139       <shape_selector id="intersection_plane"
140                       label="Plane"
141                       tooltip="Plane for intersection."
142                       icon="icons/Construction/face.png"
143                       shape_types="face">
144         <validator id="GeomValidators_Face" parameters="plane"/>
145         <validator id="ConstructionPlugin_ValidatorPointEdgeAndPlaneNotParallel" parameters="intersection_line"/>
146       </shape_selector>
147       <optionalbox id="use_offset" title="Offset from the plane">
148         <doublevalue id="offset" label="Distance " tooltip="Distance from the plane" min="0" default="0"/>
149         <boolvalue id="reverse_offset" label="Reverse" tooltip="Reverse offset value" default="false"/>
150       </optionalbox>
151     </box>
152
153   </toolbox>
154 </source>