Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Qt, Mouse skipping, not updating every pixel, mouseMoveEvent()

I working on a simple paint program. It seemed Qt (and KDE) would be a easy way to implement it. I find Qt quite easy to work with, but now I have hit a problem.

When I draw something in my program the mouse skips if I move the mouse to fast.

like this:
alt text
It susposed to be like one long string.

I'm using mouseMoveEvent() to draw a pixel to my image when the left mouse button is pressed down. I have called setMouseTracking(true); so the event should be called as long as I move the mouse.

void camoMaker::mouseMoveEvent(QMouseEvent *ev)
{
    if(ev->state()==Qt::LeftButton)
    {
        QPoint mPoint=ev->pos();
        mPoint.setX(mPoint.x()-80);
        drawPoint(mPoint);
    }
}

camoMaker is the main widget.
drawPoint() draws a pixel on both a internal QImage and using QPainter on a QWidget thats the drawing area.

It seems to me that either mouseMoveEvent() isn't called for every pixel the mouse moves or that the mouse actually just skips some pixel.

I understand that it might just how it works and not Qt fault but X11 or how the OS handle mouse position/input.

If so how would I go about to fix it, should I try to interpolate from 2 points that gets registered?

like image 999
kvasan Avatar asked Aug 02 '09 20:08

kvasan


1 Answers

Mouse events don't occur for each pixel as the mouse moves, on most operating systems. The message handlers (including KDE/linux) repeatedly show mouse movements, but pixels will often be skipped.

You'll need to track the last pixel location, and either draw a line, or add extra points in between the last position and the current position.

like image 88
Reed Copsey Avatar answered Nov 02 '22 23:11

Reed Copsey