package org.kodejava.swing;
import javax.swing.JFrame;
import javax.swing.JTextArea;
import javax.swing.SwingUtilities;
import javax.swing.WindowConstants;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
public class MouseClickEventDemo extends JFrame {
public MouseClickEventDemo() {
initComponents();
}
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> new MouseClickEventDemo().setVisible(true));
}
private void initComponents() {
setTitle("Handling Mouse Click Event");
setSize(500, 500);
setDefaultCloseOperation(WindowConstants.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" + "\n");
} else if (e.getButton() == MouseEvent.BUTTON1) {
textArea.setText("Button 1 clicked" + "\n");
} else if (e.getButton() == MouseEvent.BUTTON2) {
textArea.setText("Button 2 clicked" + "\n");
} else if (e.getButton() == MouseEvent.BUTTON3) {
textArea.setText("Button 3 clicked" + "\n");
}
textArea.append("Number of click: " + e.getClickCount() + "\n");
textArea.append("Click position (X, Y): " + e.getX() + ", " + e.getY());
}
});
getContentPane().add(textArea);
}
}
Latest posts by Wayan (see all)
- How do I get number of each day for a certain month in Java? - September 8, 2024
- How do I get operating system process information using ProcessHandle? - July 22, 2024
- How do I sum a BigDecimal property of a list of objects using Java Stream API? - July 22, 2024