Tagged Questions
0
votes
1answer
46 views
QT: mousemove not functioning
In my QT application, I need to track mouse movement. For that, I created an eventfilter and I installed it correctly as this:
bool iArmMainWindow::eventFilter(QObject *obj, QEvent *event)
{
if ...
0
votes
1answer
48 views
Qt mouseMoveEvent only when left mouse button is pressed
I currently have a program that draws lines and rectangles.
void mousePressEvent(QMouseEvent *event);
void mouseReleaseEvent(QMouseEvent *event);
void mouseMoveEvent(QMouseEvent *event);
I use ...
0
votes
2answers
79 views
PyQT: Disabling left mouse click
is there a way to disable (and override) left mouse click in Qt? Even better, in PyQt.I wrote something like this inside my widget class:
def mousePressEvent(self,event):
if event.button() == ...
2
votes
1answer
38 views
Specify top-left corner position for QMenu
I have QPoint pos after clicking mouse and what to show at this point QMenu. But I what menu to appear that this pos will be left top corner of QMenu. And
menu.exec(pos);
shows menu such that pos ...
0
votes
1answer
337 views
How can I get mouse coordinates in real time when dragging an element in QML?
I have a program written in Qt, who uses QML.
I'd like to know if it is possible to know the coordinates in real time during the drag of an element.
Actually, I use a custom image that replaces the ...
0
votes
0answers
117 views
Qt doesn't respect Mac OS X mouse wheel scrolling speed setting
I have qtwebkit-based application. When I scroll the mousewheel inside webview, the scrolling speed doesn't respect the settings set in system preferences->mouse->scrolling speed under Mac OS X. It ...
0
votes
1answer
74 views
Use a Rubber Band like the one displayed at Windows Desktop
Is there a class that lets me use the same rubber band used on Windows Desktop? It's something like this:
If you see closely it's when you keep the mouse pressed and drag it over the Windows ...
0
votes
1answer
94 views
Weird cursor behavioir in Qt
In Qt (C++, MinGW, Windows 7), QCursor::setPos(...) seems to change the position of the cursor at the application level but not at the system level. For example, if you intercept the mouseMoveEvent ...
1
vote
0answers
71 views
How can I set the mouse sensivity / speed in embedded qt?
I am running a embedded application which uses QT. Sometimes the mouse speed is either too slow / too fast.
How can I adjust it?
0
votes
0answers
215 views
Qt get mouse pressed event without focus
How can I get the location of where the mouse was pressed from an application running in the background (so it doesn't have focus)? I do not want to grab the mouse from all other apps I just want to ...
0
votes
1answer
605 views
Scroll event detection in qt
How do I detect a scroll event in a qt widget? I want to use it to scroll a QWT plot. I have tried using a qmouseevent, but I could only find options for movement and pressing/releasing the mouse.
...
0
votes
1answer
305 views
What can block mousePressEvent or Event Filter Mouse Click Events?
I can't seem to get any mouse clicks in a QTreeWidget. I have tried...
...overriding mousePressEvent, but it never runs at all. Not even to log a message.
...using an event filer. It works for ...
1
vote
0answers
186 views
Mouse events disappearing / being ignored for non-Qt window on windows
still relatively new to Qt (and to stackoverflow as well) but succeeded over the last weeks to replace our old obsolete-when-new GUI code with Qt and improve several things along the way as well. Now ...
2
votes
1answer
670 views
Qt Mouse Cursor reset
i have item delegate that when the mouse event is over icon i change its Cursor to Qt::PointingHandCursor
when its off i set it back to Qt::ArrowCursor . its working fine .
the problem is that besides ...
0
votes
1answer
420 views
Qt keeping mouse centered
I'm wondering if anyone has a trick to keep the mouse position centered in a (QGL)widget for Qt. I read that one could set the mouseposition after finding the delta, but this way works very buggy for ...
0
votes
1answer
208 views
Qt Overloaded Mouse Event Handler not being called when mouse is clicked
I am writing a chess program using my own class called chessCV, which is derived from QGraphicsView, and then I am adding it to my MainWindow class as a member. I cannot seem to get the program to ...
1
vote
0answers
243 views
selectively ignoring mouse events in Qt
I am writing an application that gets input from 3 mice. 2 of the mice are used for gestures and their input is handled separately, the 3rd should function as normal.
I have successfully installed an ...
0
votes
4answers
340 views
How can I receive or be able to process mouseMoveEvent(s) outside my widget window?
I am writing Qt application which plays a fade-in animation whenever the mouse is moved to a certain area in the screen, and a fade out animation whenever the mouse is moved out of that same area.
...
0
votes
1answer
143 views
How thread-safe and latency-safe is QApplication::mouseButtons?
When you get get a mouse signal from a model into your slot, the argument passed is a QModelIndex.
QModelIndex does not tell you what button is pressed. So, we can resort to ...
5
votes
2answers
425 views
QPushButton() should react as long as it is pressed
I am using QPushButton() in my programme. With these buttons I rotate my object.
Works fine so far. The only Problem is that i have to click multiple times to rotate the object a little further. This ...
0
votes
1answer
233 views
Qt PowerVR driver mouse pointer unavailable
I am not trying to spam here just trying to be more specific about the issue of Qt mouse pointer not being available for PowerVR. So I hope someone will have a answer to my question.
Qt PowerVR ...
5
votes
1answer
2k views
How to simulate mouse clicks in QML?
I'm trying to send a QMouseEvent to the QML objects being currently displayed.
The QApplication::sendEvent() always returns false meaning that my event did not get handled; but I don't see why.
Maybe ...
0
votes
1answer
1k views
how to convert mouse move event into mouse scroll/drag event
My app requires me to use multiple mouse and when user moves a particular mouse then OS should give back the mouse drag/scroll event. I want to implement this using Qt 4.6.
0
votes
0answers
244 views
Qt event for mouse pointer is in resize position
Is there a way to find out that pointer is in the right place to resize window in Qt?
I want to set busy cursor for application while allowing to resize app's windows. It works, but busy cursor does ...
0
votes
2answers
223 views
How to quantize the position of multiple QGraphicsItems while dragging the mouse in a QGraphicsView?
Hello and thanks for reading. I am having trouble correctly quantizing the position of multiple QGraphicsItems while dragging the mouse in a QGraphicsView. The system I have setup is correctly ...
3
votes
2answers
522 views
Qt mouse cursor transparency
I would like to change the stock cursor with a translucent one, a simple filled circle, of various sizes, depending on the level of zoom in the underlying widget (say, RGBA = 200, 200, 200, 128).
Is ...
0
votes
4answers
636 views
How to get more precision in mouse movement
os:: windows xp sp3
Qt:: 4.6
I am playing with some 3D stuff and need to implement mouse moving. I tried with Qt mouseMoveEvent but found that is not good because mouseMoveEvent does not handle with ...
0
votes
1answer
1k views
Custom QAction/QMenu for mouse button detection
I'm trying to create a popup menu, where I can detect the mouse button that was pressed for a given item. I've created a custom QAction already to build my QMenu, but the triggered signal when the ...
1
vote
2answers
2k views
Qt-Right click mouseReleaseEvents aren't caught by eventfilter,other events though are caught
My application consists of a WebView widget. A mouse click on the widget is not handled by the mousePressEvent() of my application, but by the WebView widget. So, I installed an event filter to ...
0
votes
1answer
2k views
Pyqt get pixel position and value when mouse click on the image
Overwriting mouse event on pixMapItem didn't work for me ; the mouse click event is not detected by the pixMapItem. Here is my code :
import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
...
2
votes
2answers
1k views
Qt How to disable mouse scrolling of QComboBox?
I have some embedded QComboBox in a QTableView. To make them show by default I made those indexes "persistent editor". But now every time I do a mouse scroll on top them they break my current table ...
1
vote
1answer
334 views
Subclassed QWidget and mouse events
I'm trying to code a widget that utilizes HGE functionality. So I have subclassed from QWidget and overloaded paintEvent(). It works OK but troubles appear when I try to handle input. Events are ...
1
vote
2answers
2k views
Qt- how to move a picture in screen according to mouse move
I am trying to do a chess game. So I want to move the chess coin picture when the user clicks and drags the coin.
Which class I have to use
update
At last I am just editing the puzzle code which is ...
0
votes
2answers
794 views
Qt grabWindow coordinates shifted from GetCursorPos and GetWindowRect
In Qt, when I use the QPixmap::grabWindow(hwnd,x,y,h,w) function, the coordinates are shifted slightly, when compared to the coordinates using the windows api functions GetCursorPos and GetWindowRect.
...
6
votes
2answers
3k views
Qt - Moving Frameless window (slow repaint?)
Hy there,
I'm new to Qt and i tried to create a Frameless window, which is dragable. The Problem is, if i move the window.. there are are thousands of (it? sorry, don't know how to describe it in ...
3
votes
4answers
6k views
Ignore mouse and keyboard events in Qt
In Qt, how can I ignore all mouse and keyboard events and later stop ignoring them? That is: click a button, ignore all events in children; click again, not ignore. Is that clear?
I have the following ...
0
votes
2answers
2k views
Keyboard- and mouse-event transparent widget
When i click a button my main window i want it to become transparent to keyboard and mouse events, i.e. all keyboard and mouse events should pass to any windows below it as if that window is not ...
5
votes
1answer
4k views
Mimicking/faking a Mouse Click and Mouse Wheel using Qt
How to mimic/fake a Mouse Click and Mouse Wheel using Qt? To be more specific, I want to click inside and outside the Qt application. Thanks in advance!
9
votes
1answer
15k views
Getting MouseMoveEvents in Qt
In my program, I'd like to have mouseMoveEvent(QMouseEvent* event) called whenever the mouse moves (even when it's over another window).
Right now, in my mainwindow.cpp file, I have:
void ...
1
vote
3answers
4k views
Simulating a mouse button click in Windows
I'm writing Remote Desktop clone in C++ using QT. So far I'm able to move the mouse cursor around fine. QT has a nice setPos function for that. However, I'm a bit lost as to what API/Library to use ...
4
votes
2answers
5k views
How to detect the mouse state in Qt without a MouseEvent
Okay, using Qt, I'd like to know how to detect the current state of the mouse at any point in time - without a MouseEvent.
Using QCursor::pos(), you can get its position, but is there a way to ...
0
votes
3answers
2k views
Grab mouse movement
I am writing a little utill for me on ruby using qt. How to access global mouse movement and keyboard input events?