Change build scripts
[jvcard.git] / src / com / googlecode / lanterna / input / MouseActionType.java
CommitLineData
a3b510ab
NR
1package com.googlecode.lanterna.input;
2
3/**
4 * Enum type for the different kinds of mouse actions supported
5 */
6public enum MouseActionType {
7 CLICK_DOWN,
8 CLICK_RELEASE,
9 SCROLL_UP,
10 SCROLL_DOWN,
11 /**
12 * Moving the mouse cursor on the screen while holding a button down
13 */
14 DRAG,
15 /**
16 * Moving the mouse cursor on the screen without holding any buttons down
17 */
18 MOVE,
19 ;
20}