org.eclipse.ercp.swt.mobile
Class TaskTip.LocationHandle

java.lang.Object
  extended by org.eclipse.ercp.swt.mobile.TaskTip.LocationHandle
All Implemented Interfaces:
java.util.EventListener, MouseListener, MouseMoveListener, org.eclipse.swt.internal.SWTEventListener
Enclosing class:
TaskTip

public class TaskTip.LocationHandle
extends java.lang.Object
implements MouseListener, MouseMoveListener


Constructor Summary
TaskTip.LocationHandle(Shell shell)
           
 
Method Summary
 void dispose()
           
 Rectangle getShellBounds()
           
 void mouseDoubleClick(MouseEvent e)
          Sent when a mouse button is pressed twice within the (operating system specified) double click period.
 void mouseDown(MouseEvent e)
          Sent when a mouse button is pressed.
 void mouseMove(MouseEvent e)
          Sent when the mouse moves.
 void mouseUp(MouseEvent e)
          Sent when a mouse button is released.
 void setShellBounds(int x, int y, int width, int height)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TaskTip.LocationHandle

public TaskTip.LocationHandle(Shell shell)
Method Detail

setShellBounds

public void setShellBounds(int x,
                           int y,
                           int width,
                           int height)

mouseDoubleClick

public void mouseDoubleClick(MouseEvent e)
Description copied from interface: MouseListener
Sent when a mouse button is pressed twice within the (operating system specified) double click period.

Specified by:
mouseDoubleClick in interface MouseListener
Parameters:
e - an event containing information about the mouse double click
See Also:
Display.getDoubleClickTime()

mouseDown

public void mouseDown(MouseEvent e)
Description copied from interface: MouseListener
Sent when a mouse button is pressed.

Specified by:
mouseDown in interface MouseListener
Parameters:
e - an event containing information about the mouse button press

mouseUp

public void mouseUp(MouseEvent e)
Description copied from interface: MouseListener
Sent when a mouse button is released.

Specified by:
mouseUp in interface MouseListener
Parameters:
e - an event containing information about the mouse button release

mouseMove

public void mouseMove(MouseEvent e)
Description copied from interface: MouseMoveListener
Sent when the mouse moves.

Specified by:
mouseMove in interface MouseMoveListener
Parameters:
e - an event containing information about the mouse move

getShellBounds

public Rectangle getShellBounds()

dispose

public void dispose()