Handle mouse button click event? : Mouse « Event « Java






Handle mouse button click event?

   
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;

import javax.swing.JFrame;
import javax.swing.JTextArea;

public class Main extends JFrame {
  public Main() {
    setSize(300, 300);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    final JTextArea textArea = new JTextArea();
    textArea.setText("Click Me!");

    textArea.addMouseListener(new MouseAdapter() {
      public void mouseClicked(MouseEvent e) {
        if (e.getButton() == MouseEvent.NOBUTTON) {
          textArea.setText("No button clicked...");
        } else if (e.getButton() == MouseEvent.BUTTON1) {
          textArea.setText("Button 1 clicked...");
        } else if (e.getButton() == MouseEvent.BUTTON2) {
          textArea.setText("Button 2 clicked...");
        } else if (e.getButton() == MouseEvent.BUTTON3) {
          textArea.setText("Button 3 clicked...");
        }

        System.out.println("Number of click: " + e.getClickCount());
        System.out.println("Click position (X, Y):  " + e.getX() + ", " + e.getY());
      }
    });

    getContentPane().add(textArea);
  }

  public static void main(String[] args) {
    new Main().setVisible(true);
  }
}

   
    
    
  








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.MouseMotion Event: mouse move and dragMouseMotion Event: mouse move and drag
6.MouseDrag -- implement simple mouse drag in a windowMouseDrag -- implement simple mouse drag in a window
7.MouseDragClip -- implement simple mouse drag in a window. Speed up by using clipping regions
8.Swing Mouse Motion Event DemoSwing Mouse Motion Event Demo
9.Mouse Event DemoMouse Event Demo
10.Handle mouse motion 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