Method Summary |
|
final public boolean | allowKeyPressed(KeyPressedCaptureEvent ce) |
final public boolean | allowKeyReleased(KeyReleasedCaptureEvent ce) |
final public boolean | allowMouseMoved(MouseMovedCaptureEvent ce) Not part of the allow interface. |
final public boolean | allowMousePressed(MousePressedCaptureEvent ce) |
final public boolean | allowMouseReleased(MouseReleasedCaptureEvent ce) |
final public boolean | allowMouseWheelMoved(MouseWheelCaptureEvent ce) |
public void | begin() |
protected synchronized File | createFile() |
protected void | encounteredError(Throwable t) |
public void | end() |
protected synchronized void | fireKeyPressed(KeyCaptureEvent ce) |
protected synchronized void | fireKeyReleased(KeyCaptureEvent ce) |
protected synchronized void | fireMouseMoved(MouseMovedCaptureEvent ce) |
protected synchronized void | fireMousePressed(MouseButtonCaptureEvent ce) |
protected synchronized void | fireMouseReleased(MouseButtonCaptureEvent ce) |
protected synchronized void | fireMouseWheelMoved(MouseWheelCaptureEvent ce) |
protected synchronized void | fireSaveFocusedWindow() Saves a picture of the underlying UI's focused window to a file. |
protected synchronized void | fireSaveScreen() Saves the entire screen to a file. |
protected synchronized void | fireSaveScreenImage(int x, int y, int w, int h) Saves the selected screen part to a file. |
protected synchronized void | fireSaveScreenImage(Rectangle bounds) Saves the selected screen part to a file. |
protected synchronized void | fireStop() |
protected void | generateDelay(CaptureEvent ce) Create a delay event in the script maker. |
protected synchronized long | getDelayTime(CaptureEvent ce) Calculate the amount of time between the last event and the given
event. |
public boolean | isInMetaMode() |
public boolean | isRunning() |
public void | keyPressed(KeyPressedCaptureEvent ce) If a subclass overrides this method, it must first check
if meta-mode is enabled, and invoke
the super's version of this method at the very end (right before
leaving the method). |
public void | keyReleased(KeyReleasedCaptureEvent ce) If a subclass overrides this method, it must first check
if meta-mode is enabled, and invoke
the super's version of this method at the very end (right before
leaving the method). |
protected void | metaKeyPressed(KeyPressedCaptureEvent ce) Performs a meta-mode action when this event is caught and the
generator is in meta-mode. |
protected void | metaKeyReleased(KeyReleasedCaptureEvent ce) Performs a meta-mode action when this event is caught and the
generator is in meta-mode. |
protected void | metaMouseMoved(MouseMovedCaptureEvent ce) Performs a meta-mode action when this event is caught and the
generator is in meta-mode. |
protected void | metaMousePressed(MousePressedCaptureEvent ce) Performs a meta-mode action when this event is caught and the
generator is in meta-mode. |
protected void | metaMouseReleased(MouseReleasedCaptureEvent ce) Performs a meta-mode action when this event is caught and the
generator is in meta-mode. |
protected void | metaMouseWheelMoved(MouseWheelCaptureEvent ce) Performs a meta-mode action when this event is caught and the
generator is in meta-mode. |
public void | mouseMoved(MouseMovedCaptureEvent ce) If a subclass overrides this method, it must first check
if meta-mode is enabled, and invoke
the super's version of this method at the very end (right before
leaving the method). |
public void | mousePressed(MousePressedCaptureEvent ce) If a subclass overrides this method, it must first check
if meta-mode is enabled, and invoke
the super's version of this method at the very end (right before
leaving the method). |
public void | mouseReleased(MouseReleasedCaptureEvent ce) If a subclass overrides this method, it must first check
if meta-mode is enabled, and invoke
the super's version of this method at the very end (right before
leaving the method). |
public void | mouseWheelMoved(MouseWheelCaptureEvent ce) If a subclass overrides this method, it must first check
if meta-mode is enabled, and invoke
the super's version of this method at the very end (right before
leaving the method). |
public void | setInMetaMode(boolean set) |