Show DefaultGestures.java syntax highlighted
package ucalgary.ebe.ci.gestures;
import ucalgary.ebe.ci.gestures.impl.Gesture;
/**
* @author hkolenda
*
*/
public class DefaultGestures {
public static final String NAMESPACE = "default";
public static final ICIGestureIndentifier COPY = new Gesture(NAMESPACE, "copy");
public static final ICIGestureIndentifier CUT = new Gesture(NAMESPACE, "cut");
public static final ICIGestureIndentifier DELETE = new Gesture(NAMESPACE, "delete");
public static final ICIGestureIndentifier MENU = new Gesture(NAMESPACE, "menu");
public static final ICIGestureIndentifier MOVE = new Gesture(NAMESPACE, "");
public static final ICIGestureIndentifier NOTHING = new Gesture(NAMESPACE, "nothing");
public static final ICIGestureIndentifier PASTE = new Gesture(NAMESPACE, "paste");
public static final ICIGestureIndentifier REDO = new Gesture(NAMESPACE, "redo");
public static final ICIGestureIndentifier SELECT = new Gesture(NAMESPACE, "select");
public static final ICIGestureIndentifier UNDO = new Gesture(NAMESPACE, "undo");
public static final ICIGestureIndentifier POINTING = new Gesture(NAMESPACE, "point");
public static final ICIGestureIndentifier NEW = new Gesture(NAMESPACE, "new");
public static final ICIGestureIndentifier SAVE = new Gesture(NAMESPACE, "save");
}
See more files for this project here