synergynetframework.mtinput.simulator
Interface IMultiTouchSimulator

All Known Implementing Classes:
AbstractDirectMultiTouchSimulator, AbstractMultiTouchSimulator, AWTMouseMultiTouchInput, JMEDirectSimulator, JMETUIOSimulator

public interface IMultiTouchSimulator

The Interface IMultiTouchSimulator.


Method Summary
 void clearCursor()
          Clear cursor.
 void deleteCursor(int id, float x, float y)
          Delete cursor.
 void deleteTwoCursors(int id1, float x, float y, int id2, float x2, float y2)
          Delete two cursors.
 void newCursor(int id, float x, float y)
          New cursor.
 void updateCursor(int id, float x, float y)
          Update cursor.
 void updateTwoCursors(int id1, float x, float y, int id2, float x2, float y2)
          Update two cursors.
 

Method Detail

clearCursor

void clearCursor()
Clear cursor.


deleteCursor

void deleteCursor(int id,
                  float x,
                  float y)
Delete cursor.

Parameters:
id - the id
x - the x
y - the y

deleteTwoCursors

void deleteTwoCursors(int id1,
                      float x,
                      float y,
                      int id2,
                      float x2,
                      float y2)
Delete two cursors.

Parameters:
id1 - the id1
x - the x
y - the y
id2 - the id2
x2 - the x2
y2 - the y2

newCursor

void newCursor(int id,
               float x,
               float y)
New cursor.

Parameters:
id - the id
x - the x
y - the y

updateCursor

void updateCursor(int id,
                  float x,
                  float y)
Update cursor.

Parameters:
id - the id
x - the x
y - the y

updateTwoCursors

void updateTwoCursors(int id1,
                      float x,
                      float y,
                      int id2,
                      float x2,
                      float y2)
Update two cursors.

Parameters:
id1 - the id1
x - the x
y - the y
id2 - the id2
x2 - the x2
y2 - the y2