[vtkusers] TimerEvents not fired while dragging mouse in vtkRenderWindow

Ken Martin ken.martin at kitware.com
Tue Nov 14 11:53:15 EST 2017


I suspect timer events are fired but something else is consuming them.
Probably in the interactor style. Try adding your timer events with a
higher priority like 10.0 (third argument).

On Mon, Nov 13, 2017 at 3:21 PM, Kolja Petersen <petersenkolja at gmail.com>
wrote:

> Heya,
> I paste some code below, which displays an empty vtkRenderWindow with an
> interactor. The interactor fires a TimerEvent every 100ms as printed by the
> Observer.
> The problem: as long as I press a mouse button in the vtkRenderWindow, the
> TimerEvents stop to be reported, although I need to process data
> periodically in my application as a reaction to those TimerEvents.
>
> Why are no TimerEvents fired while a button is pressed, and how can I
> change this behaviour?
> Thank you
> Kolja
>
> import vtk
>
> class Observer(object):
>   def __init__(self):
>     self.cnt=0
>   def __call__(self,caller,evt):
>     self.cnt+=1
>     print "count %d %s" % (self.cnt,evt)
>
> ren1 = vtk.vtkRenderer()
> ren1.SetBackground(0.1, 0.2, 0.4)
>
> renWin = vtk.vtkRenderWindow()
> renWin.AddRenderer(ren1)
> renWin.SetSize(300, 300)
>
> iren = vtk.vtkRenderWindowInteractor()
> iren.SetRenderWindow(renWin)
>
> style = vtk.vtkInteractorStyleTrackballCamera()
> iren.SetInteractorStyle(style)
>
> iren.Initialize()
> observer=Observer()
> iren.AddObserver(vtk.vtkCommand.TimerEvent,observer)
> iren.AddObserver(vtk.vtkCommand.MouseMoveEvent,observer)
> iren.AddObserver(vtk.vtkCommand.InteractionEvent,observer)
> iren.CreateRepeatingTimer(100)
> iren.Start()
>
>
> <https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail> Virenfrei.
> www.avast.com
> <https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
> <#m_5020402281578617109_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>
> _______________________________________________
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the VTK FAQ at:
> http://www.vtk.org/Wiki/VTK_FAQ
>
> Search the list archives at: http://markmail.org/search/?q=vtkusers
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/vtkusers
>
>


-- 
Ken Martin PhD
Distinguished Engineer
Kitware Inc.
28 Corporate Drive
Clifton Park NY 12065

This communication, including all attachments, contains confidential and
legally privileged information, and it is intended only for the use of the
addressee.  Access to this email by anyone else is unauthorized. If you are
not the intended recipient, any disclosure, copying, distribution or any
action taken in reliance on it is prohibited and may be unlawful. If you
received this communication in error please notify us immediately and
destroy the original message.  Thank you.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://public.kitware.com/pipermail/vtkusers/attachments/20171114/4bb74b3c/attachment.html>


More information about the vtkusers mailing list