<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
Hello<br>
<br>
I started as described in the "The Paraview Guide" book chapter 18.2 to
have a button,<br>
where something happens if pressed.<br>
In this case a vtkSphere will be added to the RenderWindow.<br>
<br>
The code example:<br>
<br>
void vtkPVRenderView::PrintColor()<br>
{<br>
&nbsp;&nbsp; this-&gt;PrintColorButton-&gt;SetLabel("it
works");<br>
&nbsp;&nbsp; vtkRenderWindow *renWindow =
this-&gt;GetRenderWindow();<br>
&nbsp;&nbsp; vtkRenderer *ren =
renWindow-&gt;GetRenderers()-&gt;GetFirstRenderer();<br>
&nbsp;&nbsp; renWindow-&gt;AddRenderer(ren);<br>
&nbsp;&nbsp; double array[3];<br>
&nbsp;&nbsp; array[0] = 3.0;<br>
&nbsp;&nbsp; array[1] = 2.0;<br>
&nbsp;&nbsp; array[2] = 4.0;<br>
&nbsp;&nbsp; vtkSphereSource *vtksphere = vtkSphereSource::New();<br>
&nbsp;&nbsp; vtksphere-&gt;SetCenter(array);<br>
&nbsp;&nbsp; vtksphere-&gt;SetRadius(sphere-&gt;getRadius() );<br>
&nbsp;&nbsp; vtkPolyDataMapper *sphereMapper =
vtkPolyDataMapper::New();<br>
&nbsp;&nbsp; sphereMapper-&gt;SetInput(vtksphere-&gt;GetOutput());<br>
&nbsp;&nbsp; vtkActor *sphereActor = vtkActor::New();<br>
&nbsp;&nbsp; sphereActor-&gt;SetMapper(sphereMapper);<br>
&nbsp;&nbsp; ren-&gt;AddActor(sphereActor);<br>
&nbsp;&nbsp; renWindow-&gt;Render();<br>
<br>
<b>&nbsp;&nbsp;
((vtkPVWindow*)this-&gt;ParentWindow)-&gt;GetMainView()-&gt;GetSplitFrame()-&gt;UnpackSiblings();<br>
&nbsp;&nbsp; ((vtkPVWindow*)this-&gt;ParentWindow)-&gt;Script("pack
%s -side top -fill both -expand t",<br>
&nbsp;&nbsp;
((vtkPVWindow*)this-&gt;ParentWindow)-&gt;GetMainView()-&gt;GetSplitFrame()-&gt;GetWidgetName());<br>
&nbsp;&nbsp; if
(!((vtkPVWindow*)this-&gt;ParentWindow)-&gt;GetCurrentPVSource())&nbsp;&nbsp;
{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return;&nbsp;&nbsp; }<br>
&nbsp;&nbsp;
((vtkPVWindow*)this-&gt;ParentWindow)-&gt;GetCurrentPVSource()-&gt;Pack();</b>
<br>
}<br>
<br>
ok so far it works - I can press the button and see in the RenderWindow
the Sphere ;-)<br>
The last bold lines - switch the view to the
"Selection Window".<br>
How can I bring now the Sphere in this PrintColor() function to this
"SelectionWindow" as when I press<br>
in the "Source" menu the Sphere item?<br>
There are any code examples available ?<br>
<br>
Best regards <br>
Sebastian<br>
<br>
<br>
</body>
</html>