33// isMoving_ is set to true if the user is holding the left mouse button down and has moved the mouse a small amount away from the original click point (startPosDrag_)
34bool isMoving_ = false;
35
36// startPosDrag_ is the coordinates where the user originally pressed the mouse button down to start dragging
37 QPoint startPosDrag_;
38
39// requestDragPos_ is the final screen coordinates where the widget should be moved to.
40// Takes the relative position of where the user originally clicked the widget into account
41 QPoint requestedDragPos_;
42
43// dragTimer_ is called ~60 times per second once the user has initiated dragging