Dear Experts,
Does paraview provide the flexibility to develop my own SMproxy and my own vtkPVInformation, I want to display some information, that read from a server side, but i found it is difficult to transfer these information to client.
I found several options to do this, one of them is to create my own proxy class and PVInformation class, which seems have more flexibility for future more information display. However, I don’t want to change paraview code, How can achieve this?
Hi Mathieu,
On server side, i developed my own reader that can read some information,
What I want to do is transfer these information from server side to client side, then i can choose to display them.
Since there are many kinds of information need to display at client side, i want to find a generic way to do such kind of “data transfer”
They are some information need to display on GUI
These information read at server side, so i have to “transfer” them to client side, in order to display on GUI
from : Examples/Plugins/PropertyWidgets/Plugin/PropertyWidgetsFilter.xml
<DoubleVectorProperty command="GetShrinkFactor"
information_only="1"
panel_visibility="default"
name="ShrinkFactorInformation">
<Documentation>
This property's widget is standard, but it is a information_only property.
The resulting widget will be disabled and show the value of GetShrinkFactor,
once the changes have been applied.
</Documentation>
</DoubleVectorProperty>