Need to read mouse button state ("pressed" or "released") from simple java app. Is it possible?
Thanks!
|
|
You can use the MouseListener interface, or it's useful abstract implementation, MouseAdapter:
|
|||
|
|
|
MouseEvent is the class your are looking for |
|||
|
|