PQSDKMultiTouch
Class TouchPoint

java.lang.Object
  extended by PQSDKMultiTouch.TouchPoint

public class TouchPoint
extends java.lang.Object

represents a touch point on screen.


Field Summary
 int m_dx
          specifies the x-width of the touch point.
 int m_dy
          specifies the y-width of the touch point.
 short m_id
          distinguishes different points on the screen.
 short m_point_event
          event type of touch point, its value is one of PQMTClientConstant.TP_DOWN PQMTClientConstant.TP_MOVE or PQMTClientConstant.TP_UP
 int m_x
          specifies the x-coordinate of the center position of the point.
 int m_y
          specifies the y-coordinate of the center position of the point.
 
Constructor Summary
TouchPoint()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

m_point_event

public short m_point_event
event type of touch point, its value is one of PQMTClientConstant.TP_DOWN PQMTClientConstant.TP_MOVE or PQMTClientConstant.TP_UP


m_id

public short m_id
distinguishes different points on the screen.


m_x

public int m_x
specifies the x-coordinate of the center position of the point. In pixels.


m_y

public int m_y
specifies the y-coordinate of the center position of the point. In pixels.


m_dx

public int m_dx
specifies the x-width of the touch point. In pixels.


m_dy

public int m_dy
specifies the y-width of the touch point. In pixels.

Constructor Detail

TouchPoint

public TouchPoint()