Salome HOME
Porting to ParaView 5.8
[modules/paravis.git] / src / Plugins / TableReader / plugin / filters.xml
1 <ServerManagerConfiguration>
2   <ProxyGroup name="filters">
3     <SourceProxy 
4       name="TableTo3D" 
5       class="vtkTableTo3D" 
6       label="Table To 3D">
7       <Documentation short_help="Converts table to 3D presentation."
8         long_help="Converts table to 3D presentation (ported from Post-Pro)." >
9       </Documentation>
10
11       <InputProperty
12         name="Input"
13         command="SetInputConnection">
14         <ProxyGroupDomain name="groups">
15           <Group name="sources"/>
16           <Group name="filters"/>
17         </ProxyGroupDomain>
18         <DataTypeDomain name="input_type">
19           <DataType value="vtkTable"/>
20         </DataTypeDomain>
21         <Documentation>
22           This property specifies the input..
23         </Documentation>
24       </InputProperty>
25
26       <DoubleVectorProperty
27         name="ScaleFactor"
28         command="SetScaleFactor"
29         number_of_elements="1"
30         animateable="1"
31         default_values="1.0" >
32        <DoubleRangeDomain name="range"/>
33        <Documentation>
34          Specify value to scale displacement.
35        </Documentation>
36      </DoubleVectorProperty>
37
38       <IntVectorProperty 
39         name="UseOptimusScale"
40         command="SetUseOptimusScale"
41         number_of_elements="1"
42         default_values="1">
43         <BooleanDomain name="bool" />
44         <Documentation>
45           When set to true, the filter will compute optimus scale factor,
46           the value entered by user will be ignored.
47         </Documentation>
48       </IntVectorProperty>
49
50      <IntVectorProperty 
51         name="PresentationType" 
52         command="SetPresentationType" 
53         number_of_elements="1"
54         default_values="0"> 
55        <EnumerationDomain name="enum">
56          <Entry value="0" text="Surface"/>
57          <Entry value="1" text="Contour"/>
58        </EnumerationDomain>
59        <Documentation>
60          This property determines type of presentation: surface of contour.
61        </Documentation>
62      </IntVectorProperty>
63
64      <IntVectorProperty 
65         name="NumberOfContours" 
66         command="SetNumberOfContours" 
67         number_of_elements="1"
68         default_values="32"
69         label="Number Of Contours">
70        <IntRangeDomain name="range" min="1" max="999"/>
71        <Documentation>
72           Specify number of contours for contour presentation type.
73        </Documentation>
74      </IntVectorProperty>
75
76    </SourceProxy>
77  </ProxyGroup>
78 </ServerManagerConfiguration>