<!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">Somthing like
this? I'm not getting it ...<br>
<br>
<font face="Courier New, Courier, monospace">class
KeyPressInteractorStyle : public vtkInteractorStyleTrackballCamera<br>
{<br>
&nbsp; public:<br>
&nbsp;&nbsp;&nbsp; static KeyPressInteractorStyle* New();<br>
&nbsp;<br>
&nbsp;&nbsp;&nbsp; <font color="#ff0000">vtkImplicitPlaneWidget2 *planeWidget;</font><br>
<br>
&nbsp;&nbsp;&nbsp; virtual void OnKeyPress() <br>
&nbsp;&nbsp;&nbsp; {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //get the keypress<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vtkRenderWindowInteractor *rwi = this-&gt;Interactor;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; std::string key = rwi-&gt;GetKeySym();<br>
&nbsp;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (key.compare("p") == 0)<br>
&nbsp;&nbsp;&nbsp; &nbsp; {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; vtkImplicitPlaneRepresentation* rep = <font color="#ff0000"><b>planeWidget</b></font>-&gt;GetRepresentation();<br>
<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; rep-&gt;SetNormal(1,0,0);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; planeWidget-&gt;SetRepresentation(rep);<br>
&nbsp;&nbsp;&nbsp; &nbsp; }<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //handle an arrow key<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if(key.compare("Up") == 0)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cout &lt;&lt; "The up arrow was pressed." &lt;&lt; endl;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>
&nbsp;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // forward events<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vtkInteractorStyleTrackballCamera::OnKeyPress();<br>
&nbsp;&nbsp;&nbsp; }<br>
<br>
&nbsp;&nbsp;&nbsp; <br>
};<br>
<br>
<font color="#ff0000"><b><font face="Helvetica, Arial, sans-serif">This
leads to problems: The planeWidget inside the {}-brackets is unknown.</font></b></font><br>
</font></font></font><br>
Am 15.03.2010 13:48, schrieb David Doria:
<blockquote
 cite="mid:c19fcadc1003150548g1b8f7879n4308ccbea458bda8@mail.gmail.com"
 type="cite">
  <div class="gmail_quote">On Mon, Mar 15, 2010 at 8:21 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
 face="Helvetica, Arial, sans-serif" size="-1">Ok, and WHERE do I
have to set this<small> </small></font><font
 face="Helvetica, Arial, sans-serif"><small>planeRepresentation member
variabel like you suggested?</small></font><br>
    </div>
    <div bgcolor="#ffffff" text="#000000"><font
 face="Helvetica, Arial, sans-serif"><small><br>
    </small></font></div>
  </blockquote>
  <div class="gmail_quote"><br>
  </div>
planeRepresentation would be a member of the interactor style subclass.
You would set it from wherever you define the vtkPlaneRepresentation
and the interactor style subclass.</div>
  <div class="gmail_quote"><br clear="all">
Thanks,<br>
  <br>
David<br>
  <div>&nbsp;</div>
  </div>
  <br>
</blockquote>
</body>
</html>