Demonstrating the MouseListener and MouseMotionListener : Various Event Listener « Event « Java






Demonstrating the MouseListener and MouseMotionListener

Demonstrating the MouseListener and MouseMotionListener
  
import java.awt.Color;
import java.awt.Graphics;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.MouseMotionListener;

import javax.swing.JFrame;
import javax.swing.JMenuItem;
import javax.swing.JPopupMenu;

public class MouseTest extends JFrame {
  int startX, startY, endX, endY;

  Color color = Color.BLACK;

  public MouseTest() {
    super();

    final JPopupMenu pop = new JPopupMenu();
    pop.add(new JMenuItem("Cut"));
    pop.add(new JMenuItem("Copy"));
    pop.add(new JMenuItem("Paste"));
    pop.addSeparator();
    pop.add(new JMenuItem("Select All"));
    pop.setInvoker(this);

    MouseListener popup = new MouseListener() {
      public void mouseClicked(MouseEvent e) {
      }

      public void mouseEntered(MouseEvent e) {
      }

      public void mouseExited(MouseEvent e) {
      }

      public void mousePressed(MouseEvent e) {
        if (e.isPopupTrigger()) {
          showPopup(e);
        }
      }

      public void mouseReleased(MouseEvent e) {
        if (e.isPopupTrigger()) {
          showPopup(e);
        }
      }

      private void showPopup(MouseEvent e) {
        pop.show(e.getComponent(), e.getX(), e.getY());
      }
    };
    addMouseListener(popup);

    MouseListener drawing1 = new MouseListener() {
      public void mouseClicked(MouseEvent e) {
      }

      public void mouseEntered(MouseEvent e) {
      }

      public void mouseExited(MouseEvent e) {
      }

      public void mousePressed(MouseEvent e) {
        color = Color.RED;
        startX = endX = e.getX();
        startY = endY = e.getY();
        repaint();
      }

      public void mouseReleased(MouseEvent e) {
        color = Color.BLACK;
        repaint();
      }
    };
    addMouseListener(drawing1);

    MouseMotionListener drawing2 = new MouseMotionListener() {
      public void mouseDragged(MouseEvent e) {
        endX = e.getX();
        endY = e.getY();
        repaint();
      }

      public void mouseMoved(MouseEvent e) {
      }
    };
    addMouseMotionListener(drawing2);

  }

  public void paint(Graphics g) {
    super.paint(g);
    g.setColor(color);
    g.drawLine(startX, startY, endX, endY);
  }

  public static void main(String args[]) {
    JFrame frame = new MouseTest();
    frame.setSize(300, 300);
    frame.show();
  }
}
           
         
    
  








Related examples in the same category

1.Display the addXXXListener methods of any Swing classDisplay the addXXXListener methods of any Swing class
2.Show events as they happenShow events as they happen
3.A demonstration of the ChangeEvents generated by the BoundedRangeModelA demonstration of the ChangeEvents generated by the BoundedRangeModel
4.An application that shows the Action class in, well, actionAn application that shows the Action class in, well, action
5.Showing how to add Actions for KeyStrokesShowing how to add Actions for KeyStrokes
6.SketchSketch
7.EventListenerList enabled Secret LabelEventListenerList enabled Secret Label
8.TextAction exampleTextAction example
9.StateChange ListenerStateChange Listener
10.CheckBox Item ListenerCheckBox Item Listener
11.AncestorListener DemoAncestorListener Demo
12.KeyStroke SampleKeyStroke Sample
13.Focus Next Component SampleFocus Next Component Sample
14.PropertyChangeListener SamplePropertyChangeListener Sample
15.Timer SampleTimer Sample
16.KeyListener, ActionListener Demo 1KeyListener, ActionListener Demo 1
17.KeyListener, ActionListener Demo 2KeyListener, ActionListener Demo 2
18.Action, Mouse FocusAction, Mouse Focus
19.Swing Action DemoSwing Action Demo
20.Load Save ActionLoad Save Action
21.Demonstrating the WindowListener with a WindowAdapterDemonstrating the WindowListener with a WindowAdapter
22.Demonstrating the ActionListenerDemonstrating the ActionListener
23.Demonstrating the AdjustmentListenerDemonstrating the AdjustmentListener
24.Demonstrating the AncestorListener
25.Demonstrating the ComponentListenerDemonstrating the ComponentListener
26.A ComponentAdapter.
27.JAR Archives: Pack Progress Monitor
28.A position of a window on the screen.
29.Using ComponentListener to catch the JFrame Maximization event
30.Demonstrating the ContainerListenerDemonstrating the ContainerListener
31.Demonstrating the FocusListenerDemonstrating the FocusListener
32.Demonstrating the HyperlinkListenerDemonstrating the HyperlinkListener
33.Demonstrating the InternalFrameListenerDemonstrating the InternalFrameListener
34.Demonstrating the ItemListenerDemonstrating the ItemListener
35.Implement a graphical list selection monitorImplement a graphical list selection monitor
36.ItemListener for JRadioButton
37.Demonstrating the KeyListenerDemonstrating the KeyListener
38.Demonstrating the MenuListenerDemonstrating the MenuListener
39.Demonstrating the MouseWheelListenerDemonstrating the MouseWheelListener
40.Demonstrating the PopupMenuListenerDemonstrating the PopupMenuListener
41.Demonstrating the WindowListener
42.implements VetoableChangeListener to block focus change events
43.Responding to KeystrokesResponding to Keystrokes
44.Focus Event DemoFocus Event Demo
45.Container Event DemoContainer Event Demo
46.Component Event DemoComponent Event Demo
47.Window Event DemoWindow Event Demo
48.Handle a window closing event
49.Installs/resets a ComponentListener to resize the given window to minWidth/Height if needed