📄 dmousezoom.java
字号:
/*************************************************************************
This program is copyrighted. Please refer to COPYRIGHT.txt for the
copyright notice.
This file is part of JavaNNS.
JavaNNS 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.
JavaNNS is distributed in the hope that it will be useful,
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.
You should have received a copy of the GNU General Public License
along with JavaNNS; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*************************************************************************/
/**
* Filename: $RCSfile: DMouseZoom.java,v $
* Purpose:
* Language: Java
* Compiler: JDK 1.3
* Authors: Fabian Hennecke
* Version: $Revision: 1.1.2.3 $
* $Date: 2005/02/03 17:51:43 $
* $Author: hoensela $
* Copyright (c) Dept. Computer Architecture, University of Tuebingen, Germany
*/
package wsi.ra.chart2d;
/*==========================================================================*
* IMPORTS
*==========================================================================*/
import java.awt.event.* ;
import java.awt.* ;
/*==========================================================================*
* CLASS DECLARATION
*==========================================================================*/
public class DMouseZoom extends DRectangle implements MouseMotionListener, MouseListener
{
DArea area;
private DPoint start;
private int zoomIn = InputEvent.BUTTON1_MASK; // left
private int zoomOut = InputEvent.BUTTON3_MASK; // right
//private int getInfo = InputEvent.BUTTON2_MASK; // middle
public DMouseZoom( DArea area ) {
super( 0, 0, 0, 0 );
setVisible( false );
this.area = area;
area.addMouseListener( this );
area.addMouseMotionListener( this );
color = Color.yellow;
}
/**
* Sets the zoom mouse flags from the type InputEvent, e.g. InputEvent.BUTTON1_MASK.
*/
public void setZoomFlags(int zoomIn, int zoomOut){
this.zoomIn = zoomIn;
this.zoomOut = zoomOut;
}
/**
* Returns the drawing area.
*
* @return drawing area
* @author Igor Fischer
*/
protected DArea getArea() { return area; }
/**
* Invoked when the mouse has been clicked on a component.
*/
public void mouseClicked(MouseEvent e) {
DRectangle r = area.getDRectangle();
if( ( e.getModifiers() & zoomIn ) > 0 ){
DMeasures m = area.getDMeasures();
DPoint c = m.getDPoint( e.getPoint() );
r.x = c.x - r.width * .5;
r.y = c.y - r.height * .5;
}
else if( ( e.getModifiers() & zoomOut) > 0 ){
r.x -= r.width * .5;
r.y -= r.height * .5;
r.width *= 2;
r.height *= 2;
}
area.setVisibleRectangle( r );
}
/**
* Invoked when a mouse button has been pressed on a component.
*/
public void mousePressed(MouseEvent e) {
if( (e.getModifiers() & zoomIn ) < 1 ) return;
setVisible( true );
DMeasures m = area.getDMeasures();
DPoint p = m.getDPoint( e.getPoint() );
start = new DPoint( p.x, p.y );
x = p.x;
y = p.y;
width = 0;
height = 0;
area.addDElement( this );
}
/**
* Invoked when a mouse button has been released on a component.
*/
public void mouseReleased(MouseEvent e) {
if( isVisible() )
area.setVisibleRectangle( this );
setVisible( false );
area.removeDElement( this );
}
public void mouseExited( MouseEvent e ){
setVisible( false );
}
public void mouseEntered( MouseEvent e ){
setVisible( true );
}
/**
* Invoked when a mouse button is pressed on a component and then
* dragged. Mouse drag events will continue to be delivered to
* the component where the first originated until the mouse button is
* released (regardless of whether the mouse position is within the
* bounds of the component).
*/
public void mouseDragged(MouseEvent e){
if( !isVisible() ) return;
DMeasures m = area.getDMeasures();
DPoint p = m.getDPoint( e.getPoint() );
width = p.x - start.x;
height = p.y - start.y;
if( width < 0 ){
x = p.x;
width *= -1;
}
if( height < 0 ){
y = p.y;
height *= -1;
}
area.repaint();
}
/**
* Invoked when the mouse button has been moved on a component
* (with no buttons no down).
*/
public void mouseMoved(MouseEvent e){}
}
/****************************************************************************
* END OF FILE
****************************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -