JTablet 1.2.0 API

Uses of Class
cello.jtablet.event.TabletEvent

Packages that use TabletEvent
cello.jtablet.event Provides interfaces and classes for dealing with tablet events on AWT components. 
 

Uses of TabletEvent in cello.jtablet.event
 

Methods in cello.jtablet.event that return TabletEvent
 TabletEvent TabletEvent.translated(Component c, float deltaX, float deltaY)
          Returns a copy of this TabletEvent with translated coordinates.
 TabletEvent TabletEvent.translated(float deltaX, float deltaY)
          Returns a copy of this TabletEvent with translated coordinates.
 TabletEvent TabletEvent.withPoint(Component component, float x, float y)
          Returns a copy of this TabletEvent with the given component and coordinates.
 TabletEvent TabletEvent.withPoint(float x, float y)
          Returns a copy of this TabletEvent with the given coordinates.
 TabletEvent TabletEvent.withType(TabletEvent.Type type)
          Returns a copy of this TabletEvent with a new event TabletEvent.Type.
 

Methods in cello.jtablet.event with parameters of type TabletEvent
 void TabletListener.cursorDragged(TabletEvent event)
          Invoked when the cursor is dragged (pressed+moved).
 void TabletFunneler.cursorDragged(TabletEvent ev)
           
 void TabletAdapter.cursorDragged(TabletEvent ev)
           
 void TabletListener.cursorEntered(TabletEvent event)
          Invoked either when the cursor enters the given component, either spatially or through proximity.
 void TabletFunneler.cursorEntered(TabletEvent ev)
           
 void TabletAdapter.cursorEntered(TabletEvent ev)
           
 void TabletListener.cursorExited(TabletEvent event)
          Invoked either when the cursor exits the given component, either spatially or through proximity.
 void TabletFunneler.cursorExited(TabletEvent ev)
           
 void TabletAdapter.cursorExited(TabletEvent ev)
           
 void TabletListener.cursorGestured(TabletEvent event)
          Invoked when the user executes a gesture.
 void TabletFunneler.cursorGestured(TabletEvent ev)
           
 void TabletAdapter.cursorGestured(TabletEvent ev)
           
 void TabletListener.cursorMoved(TabletEvent event)
          Invoked when the cursor is moved.
 void TabletFunneler.cursorMoved(TabletEvent ev)
           
 void TabletAdapter.cursorMoved(TabletEvent ev)
           
 void TabletListener.cursorPressed(TabletEvent event)
          Invoked when a button is pressed.
 void TabletFunneler.cursorPressed(TabletEvent ev)
           
 void TabletAdapter.cursorPressed(TabletEvent ev)
           
 void TabletListener.cursorReleased(TabletEvent event)
          Invoked when a button is released.
 void TabletFunneler.cursorReleased(TabletEvent ev)
           
 void TabletAdapter.cursorReleased(TabletEvent ev)
           
 void TabletListener.cursorScrolled(TabletEvent event)
          Invoked when the user scrolls with a wheel or multi-touch scroll device.
 void TabletFunneler.cursorScrolled(TabletEvent ev)
           
 void TabletAdapter.cursorScrolled(TabletEvent ev)
           
protected abstract  void TabletFunneler.handleEvent(TabletEvent ev)
          Override this method to receive all possible TabletEvents that would go to this listener.
 void TabletListener.levelChanged(TabletEvent event)
          Invoked when a level has changed.
 void TabletFunneler.levelChanged(TabletEvent ev)
           
 void TabletAdapter.levelChanged(TabletEvent ev)
           
 

Constructors in cello.jtablet.event with parameters of type TabletEvent
TabletEvent(TabletEvent original, Component newComponent, float newX, float newY)
          Constructs a TabletEvent based on another with a new component and coordinates.
TabletEvent(TabletEvent original, float newX, float newY)
          Constructs a TabletEvent based on another with new coordinates.
TabletEvent(TabletEvent original, TabletEvent.Type newType)
          Constructs a TabletEvent based on another with a new event TabletEvent.Type.
 


JTablet 1.2.0 API