net.sourceforge.groboutils.uicapture.v1.event
Interface IAllowCapturePassThroughListener

All Known Implementing Classes:
AllowCapturePassThroughAdapter, ScriptGenerator

public interface IAllowCapturePassThroughListener

A listener which becomes aware of all low-level user interaction, and when they occured.

Version:
Jan 4, 2002
Author:
Matt Albrecht groboclown@users.sourceforge.net

Method Summary
 boolean allowKeyPressed(KeyPressedCaptureEvent ce)
           
 boolean allowKeyReleased(KeyReleasedCaptureEvent ce)
           
 boolean allowMousePressed(MousePressedCaptureEvent ce)
           
 boolean allowMouseReleased(MouseReleasedCaptureEvent ce)
           
 boolean allowMouseWheelMoved(MouseWheelCaptureEvent ce)
           
 

Method Detail

allowMouseWheelMoved

public boolean allowMouseWheelMoved(MouseWheelCaptureEvent ce)
Returns:
true to allow the event to passed to the underlying UI, or false to 'swallow' the event.
See Also:
MouseWheelListener

allowMousePressed

public boolean allowMousePressed(MousePressedCaptureEvent ce)
Returns:
true to allow the event to passed to the underlying UI, or false to 'swallow' the event.
See Also:
MouseListener

allowMouseReleased

public boolean allowMouseReleased(MouseReleasedCaptureEvent ce)
Returns:
true to allow the event to passed to the underlying UI, or false to 'swallow' the event.
See Also:
MouseListener

allowKeyPressed

public boolean allowKeyPressed(KeyPressedCaptureEvent ce)
Returns:
true to allow the event to passed to the underlying UI, or false to 'swallow' the event.
See Also:
KeyListener

allowKeyReleased

public boolean allowKeyReleased(KeyReleasedCaptureEvent ce)
Returns:
true to allow the event to passed to the underlying UI, or false to 'swallow' the event.
See Also:
KeyListener


Copyright © 2001-2003 by The GroboUtils Project