📄 pmhotarea.java
字号:
/** * MegaMek - Copyright (C) 2000-2002 Ben Mazur (bmazur@sev.org) * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) * any later version. * * This program 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 General Public License * for more details. */package megamek.client.ui.AWT.widget;import java.awt.*;import java.awt.event.*;/** * Generic Hot area of PicMap component */public interface PMHotArea extends PMElement{ public static final String MOUSE_CLICK_LEFT = "mouse_click_left"; //$NON-NLS-1$ public static final String MOUSE_CLICK_RIGHT = "mouse_click_right"; //$NON-NLS-1$ public static final String MOUSE_DOUBLE_CLICK = "mouse_double_click"; //$NON-NLS-1$ public static final String MOUSE_OVER = "mouse_over"; //$NON-NLS-1$ public static final String MOUSE_EXIT = "mouse_exit"; //$NON-NLS-1$ public static final String MOUSE_UP = "mouse_up"; //$NON-NLS-1$ public static final String MOUSE_DOWN = "mouse_down"; //$NON-NLS-1$ Cursor getCursor(); void setCursor(Cursor c); Shape getAreaShape(); void onMouseClick(MouseEvent e); void onMouseOver(MouseEvent e); void onMouseExit(MouseEvent e); void onMouseDown(MouseEvent e); void onMouseUp(MouseEvent e);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -