⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mousegestureslistener.java

📁 老外做的不错的java混淆器,执行效率非常高
💻 JAVA
字号:
/*
MouseGestures - pure Java library for recognition and processing mouse gestures.
Copyright (C) 2003-2004 Smardec

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

package com.smardec.mousegestures;

/**
 * Interface for mouse gestures listener.
 *
 * @author Smardec
 * @version 1.2
 */
public interface MouseGesturesListener {
    /**
     * Called when full mouse gesture is recogized (mouse button is released).
     *
     * @param gesture String representation of mouse gesture. "L" for left, "R" for right,
     *                "U" for up, "D" for down movements. For example: "ULD".
     */
    public void processGesture(String gesture);

    /**
     * Called when new mouse movement is recognized but mouse gesture is not yet completed.
     *
     * @param currentGesture String representation of recognized movements. "L" for left, "R" for right,
     *                       "U" for up, "D" for down movements. For example: "ULD".
     */
    public void gestureMovementRecognized(String currentGesture);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -