Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
1k views

Custom Java Mouse Listeners?

First off, I came to Java as a website programmer. In JavaScript, all you have to do to add a mousemove, mouseover, or click event is call an addEventListener function. From my limited experience with ...
2
votes
1answer
57 views

How do I get a Graphic2D object to follow a mouse pointer exactly in Java?

In the code below I have simply used a mouse listener to get the XY coordinates of the the mouse, and then call for a repaint. Within the paint method I've drawn a rectangle using the same XY ...
1
vote
1answer
213 views

Mouse Listener ,detect File Mouse Over in Explorer

Im working on a Project which Handles with File information's ,like Tool-tips File Attributes etc. So my question is can i integrate and does anyone yet ,a Mouse Listener if Mouse is Over a File in ...
1
vote
2answers
300 views

Hold down a key while clicking on a JTextField in Java, how to get the key?

I have a JTextField represents a day in a week, such as "Friday", when I click on it, I want to have a choice such as "1st of month, 3rd of month or last of month", so I came up with two options : ...
1
vote
1answer
198 views

Getting the colour of where you have clicked on a JPanel?

I only want a method to activate if the pixel that is clicked is white. How would I implement this? Trying to look for a method that returns the colour at a coord, but I can't find one.
1
vote
1answer
685 views

A class which implements mouseLIstener and mouseMotionListener in java

I have a question about a class which implements both mouseListener and mouseMotionListener in java. I've recently been splitting up my mouse listeners into different modes in this game I'm making in ...
0
votes
1answer
219 views

Losing Focus From A JTextField

After I use my textfield I can't get a jpanel that click on back into focus for my keylistener. It works for the mouselistener but all other keystrokes keep being detected by the textfield not the ...
0
votes
1answer
441 views

How to use mouse drag to move triangle

I draw a triangle using mouse drag. After drawing many different triangles, I wanted to move some of the triangles into different location using mouse drag, however I don't know how to drag the ...