All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sikuli.script.Button Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version
/*
 * Copyright (c) 2010-2020, sikuli.org, sikulix.com - MIT license
 */
package org.sikuli.script;

import java.awt.event.InputEvent;

/**
 * Defines the constants for use with the mouse actions
 * for the button to use and the wheel direction
 */
public class Button {
  public static int LEFT = InputEvent.BUTTON1_DOWN_MASK;
  public static int MIDDLE = InputEvent.BUTTON2_DOWN_MASK;
  public static int RIGHT = InputEvent.BUTTON3_DOWN_MASK;
  public static int WHEEL_UP = -1;
  public static int WHEEL_DOWN = 1;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy