Salome HOME
Some improvements in GUI
[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       <radiobox id="offset_type">
56         <radio 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              min="0.0"
64              default="10">
65           </doublevalue>
66         </radio>
67         <radio id="offset_type_by_ratio"
68              title="Distance on edge by ratio"
69              tooltip="Point on an edge, at a given distance specified by ratio."
70              icon="icons/Construction/point_by_ratio_on_edge_24x24.png">
71           <doublevalue id="ratio"
72              label="Ratio"
73              tooltip="Ratio value."
74              min="0.0"
75              max="1.0"
76              default="0.5">
77           </doublevalue>
78         </radio>
79       </radiobox>
80       <boolvalue id="reverse"
81            label="Reverse"
82            tooltip="Distance from edge end point."
83            default="false"/>
84     </box>
85     <box id="by_projection"
86          title="By projection on edge or plane"
87          tooltip="Point on edge or plane by projection selected point."
88          icon="icons/Construction/point_by_projection_32x32.png">
89       <shape_selector id="point_to_project"
90                       label="Point"
91                       tooltip="Point for projection."
92                       icon="icons/Construction/point.png"
93                       shape_types="vertex">
94       </shape_selector>
95       <toolbox id="projection_type">
96         <box id="projection_type_on_edge"
97              title="By projection on edge"
98              tooltip="Point on edge by projection selected point."
99              icon="icons/Construction/point_by_projection_on_edge_24x24.png">
100           <shape_selector id="edge_for_point_projection"
101                           label="edge"
102                           tooltip="Edge for projection."
103                           icon="icons/Construction/edge.png"
104                           shape_types="edge">
105           </shape_selector>
106         </box>
107         <box id="projection_type_on_face"
108              title="By projection on face"
109              tooltip="Point on face surface by projection selected point."
110              icon="icons/Construction/point_by_projection_on_face_24x24.png">
111           <shape_selector id="face_for_point_projection"
112                           label="face"
113                           tooltip="Face for projection."
114                           icon="icons/Construction/face.png"
115                           shape_types="face">
116             <validator id="GeomValidators_Face" parameters="plane"/>
117           </shape_selector>
118         </box>
119       </toolbox>
120     </box>
121 <!--
122     <box id="by_lines_intersection"
123          title="By two lines intersection"
124          tooltip="Point by intersection of two coplanar lines."
125          icon="icons/Construction/point_by_lines_intersection_32x32.png">
126       <shape_selector id="first_line"
127                       label="First line"
128                       tooltip="First line."
129                       icon="icons/Construction/edge.png"
130                       shape_types="edge">
131         <validator id="GeomValidators_ShapeType" parameters="line"/>
132         <validator id="ConstructionPlugin_ValidatorPointLines" parameters="second_line"/>
133       </shape_selector>
134       <shape_selector id="second_line"
135                       label="Second line"
136                       tooltip="Second line."
137                       icon="icons/Construction/edge.png"
138                       shape_types="edge">
139         <validator id="GeomValidators_ShapeType" parameters="line"/>
140         <validator id="ConstructionPlugin_ValidatorPointLines" parameters="first_line"/>
141       </shape_selector>
142     </box>
143 -->
144     <box id="by_line_and_plane_intersection"
145          title="By line and plane intersection"
146          tooltip="Point by intersection of line and plane."
147          icon="icons/Construction/point_by_line_and_plane_intersection_32x32.png">
148       <shape_selector id="intersection_line"
149                       label="Line"
150                       tooltip="Line for intersection."
151                       icon="icons/Construction/edge.png"
152                       shape_types="edge">
153         <validator id="ConstructionPlugin_ValidatorPointEdgeAndPlaneNotParallel" parameters="intersection_plane"/>
154       </shape_selector>
155       <shape_selector id="intersection_plane"
156                       label="Plane"
157                       tooltip="Plane for intersection."
158                       icon="icons/Construction/face.png"
159                       shape_types="face">
160         <validator id="GeomValidators_Face" parameters="plane"/>
161         <validator id="ConstructionPlugin_ValidatorPointEdgeAndPlaneNotParallel" parameters="intersection_line"/>
162       </shape_selector>
163       <optionalbox id="use_offset" title="Offset from the plane">
164         <doublevalue id="offset" label="Distance " tooltip="Distance from the plane" min="0" default="0"/>
165         <boolvalue id="reverse_offset" label="Reverse" tooltip="Reverse offset value" default="false"/>
166       </optionalbox>
167     </box>
168
169   </toolbox>
170 </source>