Every time SaveState is called in the ParaView GUI, pqApplicationCore singleton fires a signal "stateSaved(vtkPVXMLElement*)". Your code can handle this signal to add new child XML elements to the root. Similarly, there's a stateLoadeded(...) signal that gets fired that you can handle to load the custom elements from the state xml.
Utkarsh On Sun, Jan 2, 2011 at 9:04 PM, Nenad Vujicic <[email protected]> wrote: > Hello everyone, > > I have developed exporter plug-in for ParaView with 50+ input > parameters. At the moment, I'm setting parameters from dialog I start > on menu action and preserve their values between ParaView sessions by > using QSettings object. Is it possible to save these values in > ParaView state files without changing ParaView main sources? > > Thanks, > Nenad. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the ParaView Wiki at: > http://paraview.org/Wiki/ParaView > > Follow this link to subscribe/unsubscribe: > http://www.paraview.org/mailman/listinfo/paraview > _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the ParaView Wiki at: http://paraview.org/Wiki/ParaView Follow this link to subscribe/unsubscribe: http://www.paraview.org/mailman/listinfo/paraview
