Show ManyMouseEvent.java syntax highlighted
package icculus.manymouse.jni;
/**
* This class defines the structure of the ManyMouseEvent
* Code is borrowed from the ManyMouse project: http://icculus.org/manymouse/
*/
public class ManyMouseEvent
{
// Event types...
// !!! FIXME: can be real enums in Java 5.0.
public static final int ABSMOTION = 0;
public static final int RELMOTION = 1;
public static final int BUTTON = 2;
public static final int SCROLL = 3;
public static final int DISCONNECT = 4;
public static final int MAX = 5; // Only for reference: should not be set.
public int type;
public int device;
public int item;
public int value;
public int minval;
public int maxval;
} // ManyMouseEvent
// end of ManyMouseEvent.java ...
See more files for this project here
The MASE project investigates methods to support the coordination and executable acceptance testing of software projects. Keywords: Agile methods, distributed teams, Extreme Programming. See http://ebe.cpsc.ucalgary.ca/ebe for more information.
Project homepage:
http://sourceforge.net/projects/mase
Programming language(s): Java,XML
License: other
ManyMouse.java
ManyMouseEvent.java