<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
<font size="-1"><font face="Helvetica, Arial, sans-serif">Just great
this worked!<br>
<br>
But as I want to change the normal and center of the
vtkImplicitPlaneWidget2 I need to access its representation.<br>
There I can set the things I want:<br>
<small><font face="Courier New, Courier, monospace"><br>
<big>vtkImplicitPlaneRepresentation *iPlaneRepresentation =
vtkImplicitPlaneRepresentation::New();<br>
iPlaneRepresentation-&gt;SetPlaceFactor(1.0); // This must be set prior
to placing the widget<br>
iPlaneRepresentation-&gt;PlaceWidget(sGrid-&gt;GetBounds());<br>
iPlaneRepresentation-&gt;SetNormal(0,0,1);<br>
iPlaneRepresentation-&gt;SetOrigin(sGrid-&gt;GetCenter());<br>
iPlaneRepresentation-&gt;SetOutlineTranslation(0);<br>
iPlaneRepresentation-&gt;SetDrawPlane(0);<br>
<br>
<font face="Helvetica, Arial, sans-serif">So how can I have access to
the representation itself from withing the class
KeyPressInteractorStyle?</font><br>
</big></font></small></font></font><br>
Am 10.03.2010 15:28, schrieb David Doria:
<blockquote
 cite="mid:c19fcadc1003100628nfdcae18l4dbc8dba351be217@mail.gmail.com"
 type="cite">
  <div class="gmail_quote">On Wed, Mar 10, 2010 at 6:36 AM, Sebastian
Gatzka <span dir="ltr">&lt;<a moz-do-not-send="true"
 href="mailto:sebastian.gatzka@stud.tu-darmstadt.de">sebastian.gatzka@stud.tu-darmstadt.de</a>&gt;</span>
wrote:<br>
  <blockquote class="gmail_quote"
 style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
    <div bgcolor="#ffffff" text="#000000"><font size="-1"><font
 face="Helvetica, Arial, sans-serif">Hello world.<br>
    <br>
I have found the example for the catching of keys:
    <a moz-do-not-send="true"
 href="http://vtk.org/Wiki/VTK/Examples/Interaction/KeypressEvents"
 target="_blank">http://vtk.org/Wiki/VTK/Examples/Interaction/KeypressEvents</a><br>
This is great news to me, but I want to link different things:<br>
    </font></font>
    <ul>
      <li><small><font face="Helvetica, Arial, sans-serif">Wait for a
key
to be pressed</font></small></li>
      <li><small><font face="Helvetica, Arial, sans-serif">On one
special
key press change the normal direction of a vtkImplicitPlaneWidget2
representation</font></small></li>
      <li><small><font face="Helvetica, Arial, sans-serif">On a
different
special key press change the center point of a vtkImplicitPlaneWidget2
representation</font></small></li>
      <li><small><font face="Helvetica, Arial, sans-serif">Write the
new
normal direction and center point of the vtkImplicitPlaneWidget2
representation to a textActor to display the new values</font></small></li>
    </ul>
    <small><font face="Helvetica, Arial, sans-serif">So I think I will
have
to link key press events and callbacks?<br>
I'm really not sure how to handle this on my own<br>
    <br>
You will notice that my previous posts are somhow related to the topic.<br>
This here is the final requirement to the code and include the steps I
have asked before.<br>
    <br>
Sebastian</font></small><br>
    </div>
    <div bgcolor="#ffffff" text="#000000"><small><font
 face="Helvetica, Arial, sans-serif"><br>
    </font></small></div>
  </blockquote>
  <div><br>
  </div>
  <div>You need to create a member variable of
type&nbsp;vtkImplicitPlaneWidget2* in the interactor style subclass:</div>
  <div><br>
  </div>
  <div>class KeyPressInteractorStyle : public
vtkInteractorStyleTrackballCamera</div>
  <div>
  <div>{</div>
  <div>&nbsp;&nbsp;public:</div>
  <div>&nbsp;&nbsp; &nbsp;static KeyPressInteractorStyle* New();</div>
  <div>&nbsp;</div>
  <div>&nbsp;&nbsp; &nbsp;virtual void OnKeyPress()&nbsp;</div>
  <div>&nbsp;&nbsp; &nbsp;{</div>
  <div>&nbsp;&nbsp; &nbsp; &nbsp;//get the keypress</div>
  <div>&nbsp;&nbsp; &nbsp; &nbsp;vtkRenderWindowInteractor *rwi = this-&gt;Interactor;</div>
  <div>&nbsp;&nbsp; &nbsp; &nbsp;std::string key = rwi-&gt;GetKeySym();</div>
  <div>&nbsp;</div>
  <div>&nbsp;&nbsp; &nbsp; &nbsp;//handle a "normal" key</div>
  <div>&nbsp;&nbsp; &nbsp; &nbsp;if(key.compare("a") == 0)</div>
  <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;{</div>
  <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;cout &lt;&lt; "The a key was pressed." &lt;&lt; endl;</div>
  <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;}</div>
  <div>&nbsp;</div>
  <div>&nbsp;&nbsp; &nbsp; &nbsp;// forward events</div>
  <div>&nbsp;&nbsp; &nbsp; &nbsp;vtkInteractorStyleTrackballCamera::OnKeyPress();</div>
  <div>&nbsp;&nbsp; &nbsp;}</div>
  <div>&nbsp;vtkImplicitPlaneWidget2* PlaneWidget;</div>
  <div>&nbsp;&nbsp;</div>
  <div>};</div>
  <div><br>
  </div>
  <div><br>
  </div>
  <div>Then from main:</div>
  <div><br>
  </div>
  <div>vtkImplicitPlaneWidget2* planeWidget
=&nbsp;vtkImplicitPlaneWidget2::New();</div>
  <div>KeyPressInteractorStyle*&nbsp;style =&nbsp;KeyPressInteractorStyle::New();</div>
  <div>style.PlaneWidget = planeWidget;</div>
  <div><br>
  </div>
  <div>Then you can do whatever you want to the PlaneWidget from inside</div>
  <div><br>
  </div>
  <div>
  <div>&nbsp;&nbsp; &nbsp; &nbsp;if(key.compare("a") == 0)</div>
  <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;{</div>
  <div>//do something to the PlaneWidget when 'a' is pressed</div>
  <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;}</div>
  <div><br>
  </div>
  </div>
  </div>
Thanks,<br>
  <br>
  <div>David&nbsp;</div>
  </div>
</blockquote>
</body>
</html>