how to drop a rectangle?

56 Views Asked by At

I need some help with my Java code. My code allows the rectangle follow where exactly the mouse icon go, but I want to make the rectangle stop at the position where I clicked on the drawing panel by mouse. How to make that happen? Can anyone help me?

Here's my code:

Drawing

import java.awt.*;
import java.awt.event.*;

import javax.swing.*;
import javax.swing.event.*;

public class Drawing extends JFrame
{
    public Drawing()
    {}

    public static void main(String[] args)
    {
        Panel p = new Panel();
        p.setBackground(Color.white);
        JFrame f = new JFrame();
        f.setSize(800, 500);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.add(p);
        f.setVisible(true);
        f.setLocationRelativeTo(null);
    }
}

Panel

public class Panel extends JPanel implements  MouseMotionListener
    {   
        int x=0;
        int y=0;
        int width=200;
        int height=200;

        public Panel()
        {
            addMouseMotionListener(this);       
        }

        public void paintComponent(Graphics g)
        {
            super.paintComponent(g);
            g.setColor(Color.red);
            g.fillRect(x, y, width, height);
        }

        public void mousePressed(MouseEvent e){}
        public void mouseDragged(MouseEvent e){}    
        public void mouseMoved(MouseEvent e)
        {
            x = e.getX() - 75;
            y = e.getY() -75;
            repaint();
        }
        public void mouseEntered(MouseEvent e){}
        public void mouseClicked(MouseEvent e){}
        public void mouseReleased(MouseEvent e){}
        public void mouseExited(MouseEvent e){}
    }
1

There are 1 best solutions below

0
On

Your class Panel should implement MouseListener interface and call addMouseListener method to be able to use mousePressed method; to stop moving your panel use a boolean which changes state when you press your mouse button, change your panel class to the following code:

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.JPanel;

public class Panel extends JPanel implements MouseMotionListener, MouseListener {
    int x = 0;
    int y = 0;
    int width = 200;
    int height = 200;
    boolean move = true;

    public Panel() {
        addMouseMotionListener(this);
        addMouseListener(this);
    }

    public void paintComponent(Graphics g) {
        super.paintComponent(g);
        if (move) {
            g.setColor(Color.red);
            g.fillRect(x, y, width, height);
        }
    }

    public void mousePressed(MouseEvent e) {
        move = !move;
    }

    public void mouseDragged(MouseEvent e) {
    }

    public void mouseMoved(MouseEvent e) {
        if (move) {
            x = e.getX() - 75;
            y = e.getY() - 75;
            repaint();
        }
    }

    public void mouseEntered(MouseEvent e) {
    }

    public void mouseClicked(MouseEvent e) {
    }

    public void mouseReleased(MouseEvent e) {
    }

    public void mouseExited(MouseEvent e) {
    }
}