X-Git-Url: http://git.nikiroo.be/?p=jvcard.git;a=blobdiff_plain;f=src%2Fcom%2Fgooglecode%2Flanterna%2Fterminal%2FMouseCaptureMode.java;fp=src%2Fcom%2Fgooglecode%2Flanterna%2Fterminal%2FMouseCaptureMode.java;h=0000000000000000000000000000000000000000;hp=39d9924cbbb50b98811415f5353f0b5e15ec184a;hb=f06c81000632cfb5f525ca458f719338f55f9f66;hpb=a73a906356c971b080c36368e71a15d87e8b8d31 diff --git a/src/com/googlecode/lanterna/terminal/MouseCaptureMode.java b/src/com/googlecode/lanterna/terminal/MouseCaptureMode.java deleted file mode 100644 index 39d9924..0000000 --- a/src/com/googlecode/lanterna/terminal/MouseCaptureMode.java +++ /dev/null @@ -1,32 +0,0 @@ -package com.googlecode.lanterna.terminal; - -/** - * Constant describing different modes for capturing mouse input. By default, no mouse capturing is enabled (unless - * previously enabled before starting the Lanterna application. These are the different modes of input capturing - * supported. Please note that terminal emulators vary widely in how these are implemented! - * Created by martin on 26/07/15. - */ -public enum MouseCaptureMode { - /** - * Mouse clicks are captured on the down-motion but not the up-motion. This corresponds to the X10 xterm protocol. - * KDE's Konsole (tested with 15.04) does not implement this extension, but xfce4-terminal, gnome-terminal and - * xterm does. - */ - CLICK, - /** - * Mouse clicks are captured both on down and up, this is the normal mode for capturing mouse input. KDE's konsole - * interprets this as CLICK_RELEASE_DRAG. - */ - CLICK_RELEASE, - /** - * Mouse clicks are captured both on down and up and if the mouse if moved while holding down one of the button, a - * drag event is generated. - */ - CLICK_RELEASE_DRAG, - /** - * Mouse clicks are captured both on down and up and also all mouse movements, no matter if any button is held down - * or not. - */ - CLICK_RELEASE_DRAG_MOVE, - ; -}