📄 abstracttool.java
字号:
/* * @(#)AbstractTool.java 5.1 * */package CH.ifa.draw.standard;import java.awt.*;import java.awt.event.MouseEvent;import java.awt.event.KeyEvent;import CH.ifa.draw.framework.*;/** * Default implementation support for Tools. * * @see DrawingView * @see Tool */public class AbstractTool implements Tool { protected DrawingView fView; /** * The position of the initial mouse down. */ protected int fAnchorX, fAnchorY; /** * Constructs a tool for the given view. */ public AbstractTool(DrawingView itsView) { fView = itsView; } /** * Activates the tool for the given view. This method is called * whenever the user switches to this tool. Use this method to * reinitialize a tool. */ public void activate() { fView.clearSelection(); } /** * Deactivates the tool. This method is called whenever the user * switches to another tool. Use this method to do some clean-up * when the tool is switched. Subclassers should always call * super.deactivate. */ public void deactivate() { fView.setCursor(Cursor.getDefaultCursor()); } /** * Handles mouse down events in the drawing view. */ public void mouseDown(MouseEvent e, int x, int y) { fAnchorX = x; fAnchorY = y; } /** * Handles mouse drag events in the drawing view. */ public void mouseDrag(MouseEvent e, int x, int y) { } /** * Handles mouse up in the drawing view. */ public void mouseUp(MouseEvent e, int x, int y) { } /** * Handles mouse moves (if the mouse button is up). */ public void mouseMove(MouseEvent evt, int x, int y) { } /** * Handles key down events in the drawing view. */ public void keyDown(KeyEvent evt, int key) { } /** * Gets the tool's drawing. */ public Drawing drawing() { return fView.drawing(); } /** * Gets the tool's editor. */ public DrawingEditor editor() { return fView.editor(); } /** * Gets the tool's view. */ public DrawingView view() { return fView; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -