MouseMotion Event: mouse move and drag : Mouse « Event « Java






MouseMotion Event: mouse move and drag

MouseMotion Event: mouse move and drag
   

import java.awt.Color;
import java.awt.Graphics;
import java.awt.event.MouseEvent;
import java.awt.event.MouseMotionListener;

import javax.swing.JFrame;
import javax.swing.JPanel;

public class MouseMotionEventDemo extends JPanel implements MouseMotionListener {
  private int mX, mY;

  public MouseMotionEventDemo() {
    addMouseMotionListener(this);
    setVisible(true);
  }

  public void mouseMoved(MouseEvent me) {
    mX = (int) me.getPoint().getX();
    mY = (int) me.getPoint().getY();
    repaint();
  }

  public void mouseDragged(MouseEvent me) {
    mouseMoved(me);
  }

  public void paint(Graphics g) {
    g.setColor(Color.blue);
    g.fillRect(mX, mY, 5, 5);
  }

  public static void main(String[] args) {
    JFrame f = new JFrame();
    f.getContentPane().add(new MouseMotionEventDemo());
    f.setSize(200, 200);
    f.show();
  }

}

           
         
    
    
  








Related examples in the same category

1.Drags within the imageDrags within the image
2.Mouse Wheel Event DemoMouse Wheel Event Demo
3.Mouse drag and drawMouse drag and draw
4.Move Shape with mouseMove Shape with mouse
5.MouseDrag -- implement simple mouse drag in a windowMouseDrag -- implement simple mouse drag in a window
6.MouseDragClip -- implement simple mouse drag in a window. Speed up by using clipping regions
7.Swing Mouse Motion Event DemoSwing Mouse Motion Event Demo
8.Mouse Event DemoMouse Event Demo
9.Handle mouse motion event
10.Handle mouse button click event?
11.Move and scale graphical objects with a mouse on the panel
12.Detecting Double and Triple Clicks
13.InputEvent.BUTTON1_MASK (for left mouse button)
14.InputEvent.BUTTON2_MASK (for middle mouse button)
15.InputEvent.BUTTON3_MASK (for right mouse button)
16.Handling Mouse Clicks
17.Handling Mouse Motion
18.extends MouseAdapter and implements MouseMotionListener to create a mouse drawing programmextends MouseAdapter and implements MouseMotionListener to create a mouse drawing programm