Well, first of all you are drawing all your images at (0,0), are you sure you want to do that? If you do that is possible that you click a point that belongs to all your images (es, 0,0).
By the way, inside your MouseListener you have this method:
public void mouseClicked(MouseEvent e)
{
Point point = e.getPoint();
}
point store the coordinate of your click relative to the component you are listening to.
So what you have to do is simply to check if the point where you click is inside image area. You can do the following:
Rectangle imageBounds = new Rectangle(x,y,image_width, image_height);
if (imageBounds.contains(point)){
//point is inside given image
}
where x,y are the coordinate where you are drawing your image with drawImage method(0,0 in your case) and image_width, image_height are the dimension of your image.
EDIT:
there is an alternative to the solution I explained above. Like suggested by Hovercraft Full Of Eels you can do the following:
- create a JLabel for each image you have want to display
- use JLabel's setIcon() method to specify the image that will be displayed on each label.
- Add your labels to your JPanel
- add a mouse listener to each JLabel
This approach has a great benefit: you don't have to worry about mouse coordinates because each JLabel has it's relative mouse listener.
The only one thing that you should consider is the following:
using Component instead of drawing your images, you won't be able to absolute poisiotion them, but you have to use an appropiate LayoutManager to layout your JLabel.