Re: [Paraview] Please help!! How to force Render() from a reader

2009-10-26 Thread Olesen, Mark
Hi Takuya, // 1. If one is happy with only updating the active view if(this-view()) // may be null if no active view is present { this-view()-render(); } // 3. All views including irrelevant ones may be rendered by pqApplicationCore::instance()-render(); Both of these work

Re: [Paraview] Please help!! How to force Render() from a reader

2009-10-23 Thread Takuya OSHIMA
...@emcontechnologies.com Subject: RE: [Paraview] Please help!! How to force Render() from a reader Date: Fri, 23 Oct 2009 02:25:54 +0200 On a related tangent to the rendering issue: What method is needed to get the 3d view window to refresh. I have a customized reader panel with a few Qt checkboxes. When I

Re: [Paraview] Please help!! How to force Render() from a reader

2009-10-22 Thread Olesen, Mark
On a related tangent to the rendering issue: What method is needed to get the 3d view window to refresh. I have a customized reader panel with a few Qt checkboxes. When I select, for example, Add Labels, the slot sends it to the server manager and it is correctly updated. However, the text labels

Re: [Paraview] Please help!! How to force Render() from a reader

2009-10-14 Thread Fabian Wein
Hi Takuya, I am not sure what you mean by a thread (a client side code?), but perhaps you can simply write pqApplicationCore::instance()-render(); This has no effect. Meanwhile I think this is because of the client/server structure. Update within the reader forces RequestUpdateExtent and

Re: [Paraview] Please help!! How to force Render() from a reader

2009-10-14 Thread Takuya OSHIMA
Hi Fabian, From: Fabian Wein fabian.w...@am.uni-erlangen.de Subject: Re: [Paraview] Please help!! How to force Render() from a reader Date: Wed, 14 Oct 2009 10:26:09 +0200 Hi Takuya, I am not sure what you mean by a thread (a client side code?), but perhaps you can simply write

Re: [Paraview] Please help!! How to force Render() from a reader

2009-10-14 Thread Fabian Wein
Hi Takuya, Perhaps you are right in that you need a gui (client) part. (PV experts: correct me if I am wrong) Is there a complete code example anywhere? Here is what I have in the gui (client) part for the pesudo live updating of my time-aware reader (I am using a QTimer for periodically

[Paraview] Please help!! How to force Render() from a reader

2009-10-13 Thread Fabian Wein
Dear Kitware experts and users, :) I'm still fighting with my live data reader and my deadline is approaching :( In my vtkMultiBlockDataSetAlgorithm derived reader I implement RequestInformation() RequestData() and RequestUpdateExtent() and call Modfied() and Update() from a thread. Sofar all

Re: [Paraview] Please help!! How to force Render() from a reader

2009-10-13 Thread Takuya OSHIMA
: Fabian Wein fabian.w...@am.uni-erlangen.de Subject: [Paraview] Please help!! How to force Render() from a reader Date: Tue, 13 Oct 2009 11:43:00 +0200 Dear Kitware experts and users, :) I'm still fighting with my live data reader and my deadline is approaching :( In my