[Paraview] auto accept on IntVectorProperty

FISSELL at pitt.edu FISSELL at pitt.edu
Thu May 30 18:12:26 EDT 2013


Hi,

I have a plugin filter that uses an IntVectorProperty.
(XML below, adapted from a paraview help posting).
I would like auto accept to work on this so the user
can just slide the slider and see changes but when
I put auto accept on the pipeline is not updated.
Is there a way for IntVectorProperty widgets to auto accept ?

thanks
Kate

	<IntVectorProperty name="StartSlider2Info"
		command="GetStartSlider2Range"
		information_only="1"
		number_of_elements="2"
		default_values="1 100">
	 <SimpleIntInformationHelper />
	</IntVectorProperty>


	<IntVectorProperty
 		name="StartSlider2"
		label="Select single value to keep"
 		command="SetStartSlider2"
 		information_property="StartSlider2Info"
 		number_of_elements="1"
 		default_values="0" >
		<IntRangeDomain name="range" >
			<RequiredProperties>
				<Property name="StartSlider2Info" function="RangeInfo"/>
			</RequiredProperties>
		</IntRangeDomain>
	</IntVectorProperty>




More information about the ParaView mailing list