So I have a frameless QDialog that I want to be able to move around simply by clicking and dragging it. Given the code below, dragging the dialog always snaps the very top-left (0,0) of the dialog to the mouse. How might I circumvent this, or rather, what might the math be for it?

Standard QDialog with the following basic subclass:

class Main(QtGui.QDialog):
    def __init__(self, args):
        QtGui.QDialog.__init__(self)

    def mouseMoveEvent(self, event):
        super(Main, self).mouseMoveEvent(event)
        if self.leftClick == True: self.moveWindow(event.globalPos())

    def mousePressEvent(self, event):
        super(Main, self).mousePressEvent(event)
        if event.button() == QtCore.Qt.LeftButton:
            self.leftClick = True

    def mouseReleaseEvent(self, event):
        super(Main, self).mouseReleaseEvent(event)
        self.leftClick = False
link|improve this question

68% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Instead of event.pos(), try calling event.globalPos(). From the QMouseEvent reference, "If you move the widget as a result of the mouse event, use the global position returned by globalPos() to avoid a shaking motion."

link|improve this answer
Excellent! That worked, I've updated my code above to show where I'm at so far. Now I need to be able to grab the mouse where it is in relation to the dialog, as whenever I left-click to drag the dialog around, the top-left of the dialog snaps to the mouse. – Cryptite Apr 28 '11 at 21:59
do you have solved that problem? my mouse snaps to the top-left of the dialog too.. i can't get rid of it – avastreg May 23 '11 at 15:56
No I have not yet, I've just dealt with it sticking for now. Hopefully somebody can come along and help out. – Cryptite Jul 27 '11 at 20:18
Hey I encountered the same problem and solved it. Store the coordinates of the first click in mousePressEvent: self.clickX = event.x() self.clickY = event.y() Then, move the window with a correction for the initial click location: self.move(event.globalPos(event.globalX-self.clickX, event.globalY-self.clickY) – Junuxx May 19 at 20:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.