<div dir="ltr"><div><div>Thanks Cory<br></div>I dont have experience with subclassing vtk classes yet. Is there any other class that you can suggest as a reference to look at while going about this?<br><br></div><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Oct 9, 2014 at 5:13 PM, Cory Quammen <span dir="ltr"><<a href="mailto:cory.quammen@kitware.com" target="_blank">cory.quammen@kitware.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I think you will have to subclass vtkSphereWidget2 and override the<br>
SetCursor() method. The SetCursor() method for vtkHandleWidget is<br>
<br>
//-------------------------------------------------------------------------<br>
void vtkHandleWidget::SetCursor(int cState)<br>
{<br>
  if ( this->ManagesCursor )<br>
    {<br>
    switch (cState)<br>
      {<br>
      case vtkHandleRepresentation::Outside:<br>
        this->RequestCursorShape(VTK_CURSOR_DEFAULT);<br>
        break;<br>
      default:<br>
        this->RequestCursorShape(VTK_CURSOR_HAND);<br>
      }<br>
    }<br>
}<br>
<br>
I imagine you would want the same in your subclass.<br>
<br>
HTH,<br>
Cory<br>
<div class="HOEnZb"><div class="h5"><br>
On Thu, Oct 9, 2014 at 5:03 PM, junior <<a href="mailto:alok.theanomaly@gmail.com">alok.theanomaly@gmail.com</a>> wrote:<br>
> Hi,<br>
><br>
> I want the mouse cursor to change to a 'hand' when the mouse is hovering<br>
> over a vtkSphereWidget.<br>
> Is there any out of box solution for this or do I need to subclass? I tried<br>
> using vtkSphereWidget2 and setting ManagesCursorOn() to true but that did<br>
> not help.<br>
><br>
> I see that the vtkAngleWidget exhibits the said behavior when mouse hovers<br>
> above one of the three control points which in my understanding are<br>
> vtkHandleWidgets.<br>
><br>
> Any suggestions??<br>
> Thanks<br>
><br>
><br>
><br>
> --<br>
> View this message in context: <a href="http://vtk.1045678.n5.nabble.com/Change-mouse-cursor-while-hovering-on-vtkSphereWidget-tp5729100.html" target="_blank">http://vtk.1045678.n5.nabble.com/Change-mouse-cursor-while-hovering-on-vtkSphereWidget-tp5729100.html</a><br>
> Sent from the VTK - Users mailing list archive at Nabble.com.<br>
> _______________________________________________<br>
> Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
><br>
> Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
><br>
> Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
><br>
> Follow this link to subscribe/unsubscribe:<br>
> <a href="http://public.kitware.com/mailman/listinfo/vtkusers" target="_blank">http://public.kitware.com/mailman/listinfo/vtkusers</a><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br><div dir="ltr">I live a simple life...  in 0s and 1s !</div>
</div>