可移动的窗口与pyqt4

时间:2011-08-21 14:17:17

标签: python pyqt draggable pyqt4 drag

只是一个简单的问题:我正在使用pyqt4来渲染一个简单的窗口。这是代码,我发布了整个内容,因此更容易解释。

from PyQt4 import QtGui, QtCore, Qt
import time
import math

class FenixGui(QtGui.QWidget):

    def __init__(self):
            super(FenixGui, self).__init__()

        # setting layout type
        hboxlayout = QtGui.QHBoxLayout(self)
        self.setLayout(hboxlayout)

        # hiding title bar
        self.setWindowFlags(QtCore.Qt.FramelessWindowHint)

        # setting window size and position
        self.setGeometry(200, 200, 862, 560)
        self.setAttribute(Qt.Qt.WA_TranslucentBackground)
        self.setAutoFillBackground(False)

                # creating background window label
        backgroundpixmap = QtGui.QPixmap("fenixbackground.png")
        self.background = QtGui.QLabel(self)
        self.background.setPixmap(backgroundpixmap)
        self.background.setGeometry(0, 0, 862, 560)


        # fenix logo
        logopixmap = QtGui.QPixmap("fenixlogo.png")
        self.logo = QtGui.QLabel(self)
        self.logo.setPixmap(logopixmap)
        self.logo.setGeometry(100, 100, 400, 150)

def main():

    app = QtGui.QApplication([])
    exm = FenixGui()
    exm.show()
    app.exec_()


if __name__ == '__main__':
    main()

现在,您看到我在窗口中放置了背景标签。我希望通过拖动此标签可以将窗口拖动到屏幕上。我的意思是:你点击标签,拖动标签,整个窗口绕过屏幕。这可能吗?我也接受非优雅的方式,因为你可以看到我隐藏标题栏所以如果我不通过背景标签使其可拖动就不可能拖动窗口。

希望我能正确解释我的问题 非常感谢!!

Matteo Monti

1 个答案:

答案 0 :(得分:5)

您可以覆盖mousePressEvent()mouseMoveEvent()以获取鼠标光标的位置,并将窗口小部件移动到该位置。 mousePressEvent将为您提供从光标位置到窗口小部件左上角的偏移量,然后您可以计算左上角的新位置应该是什么。您可以将这些方法添加到FenixGui课程中。

def mousePressEvent(self, event):
    self.offset = event.pos()

def mouseMoveEvent(self, event):
    x=event.globalX()
    y=event.globalY()
    x_w = self.offset.x()
    y_w = self.offset.y()
    self.move(x-x_w, y-y_w)