Top "Mouseevent" questions

A general tag for user-interface events that are generated by the mouse.

Detecting Shift modifiers on MouseEvent generated from click in swing

I'm handling some MouseEvent in a GUI application using Java Swing. Since now i was analyzing mouse events inside mousePressed …

java swing mouseevent modifiers
Chrome mousedown and mouseup events no longer working, other browsers are fine

As of today (or yesterday, didn't notice it then), mousedown and mouseup events are no longer working. I am on …

javascript google-chrome mouseevent
Linux, how to capture screen, and simulate mouse movements

I need to capture screen (as print screen) in the way so I can access pixel color data, to do …

c++ linux mouseevent screen-capture
ActionListener for a specific text inside a JTextArea?

I have in my app a chat component which has a JTextArea on it. Now, how can I add an …

java swing events mouseevent jtextarea
Qt: resize a QGraphicsItem (boundingRect()) into a QGraphicsScene with the mouse

I would like to resize the boundingRect() of my QGraphicsItem using the mouse. To build this I found this topic. …

c++ qt resize mouseevent qgraphicsitem
How to detect when mouse has stopped

I have written the following JavaScript code. I am using it to detect when the mouse is moving and when …

javascript mouseevent mousemove
WPF TabItem Element MouseClick Event

In WPF app inside a TabControl there is a TabItem element with one Label. I want to fire the event …

wpf events controls mouseevent tabitem
Using ncurses to capture mouse clicks on a console application

I'm making a console application for unix platforms, and I'm using the curses (or ncurses) library to handle keyboard and …

c++ unix mouseevent ncurses curses
How to use mouseDown and mouseUp on <button/>

I have a button declared in XAML which has MouseDown and MouseUp attributes that both call a specified method... <…

c# wpf xaml mouseevent mediaelement
How can I simulate a mousePressed event without using java.awt.robot?

I want to simulate a mousePressed event in Java, I found out that I can use the Robot class for …

java mouseevent awtrobot