0

アプリケーション インターフェイスとして PyQt4.QMainWindow を使用しています。QWidget 内のマウスの x 座標と y 座標を取得し、MainWindow の 2 つの textBrowsers で連続的に設定したいと考えています。

QWidget のドキュメントはこちらです。

QMouseEvent のドキュメントはこちらです。

ここにコードがあります

from PyQt4 import QtGui
from PyQt4.QtGui import QApplication
import sys

class Ui_MainWindow(object):
   def setupUI(self, MainWindow):
      self.textBrowser_1 = QtGui.QTextBrowser(self.tab)
      self.textBrowser_2 = QtGui.QTextBrowser(self.tab)
      self.widget_1 = QtGui.QWidget(self.tab)
      self.widget_1.setMouseTracking(True)

class MyMainScreen(QMainWindow):
def __init__(self, parent=None):
    QtGui.QMainWindow.__init__(self, parent)
    self.ui = Ui_MainWindow()   # This is from a python export from QtDesigner
    #   There is a QWidget inside that is self.ui.widget_1
    #   and 2 textBrowsers, textBrowser_1 and textBrowser_2
    #   I want to populate these 2 textBrowsers with the current x,y 
    #   coordinates.

if __name__ == "__main__":
    app = QApplication(sys.argv)
    mainscreen = MyMainScreen()           
    mainscreen.show()
    app.exec_()
4

1 に答える 1

1

setMouseTracking を適用すると、そのウィジェットにのみ適用され、子には適用されないため、次の解決策で手動で行う必要があります。

def setMouseTracking(self, flag):
    def recursive_set(parent):
        for child in parent.findChildren(QtCore.QWidget):
            child.setMouseTracking(flag)
            recursive_set(child)
    QtGui.QWidget.setMouseTracking(self, flag)
    recursive_set(self)

完全なコード:

from PyQt4 import QtCore

from PyQt4 import QtGui
from PyQt4.QtGui import QApplication, QMainWindow
import sys


class Ui_MainWindow(object):
    def setupUi(self, MainWindow):
        MainWindow.resize(800, 132)
        self.centralwidget = QtGui.QWidget(MainWindow)
        self.horizontalLayout = QtGui.QHBoxLayout(self.centralwidget)
        self.textBrowser_1 = QtGui.QTextBrowser(self.centralwidget)
        self.horizontalLayout.addWidget(self.textBrowser_1)
        self.textBrowser_2 = QtGui.QTextBrowser(self.centralwidget)
        self.horizontalLayout.addWidget(self.textBrowser_2)
        MainWindow.setCentralWidget(self.centralwidget)
        self.menubar = QtGui.QMenuBar(MainWindow)
        self.menubar.setGeometry(QtCore.QRect(0, 0, 800, 22))
        MainWindow.setMenuBar(self.menubar)
        self.statusbar = QtGui.QStatusBar(MainWindow)
        MainWindow.setStatusBar(self.statusbar)
        QtCore.QMetaObject.connectSlotsByName(MainWindow)


class MyMainScreen(QMainWindow):
    def __init__(self, parent=None):
        QtGui.QMainWindow.__init__(self, parent)
        self.ui = Ui_MainWindow()  # This is from a python export from QtDesigner
        self.ui.setupUi(self)
        self.setMouseTracking(True)
        self.ui.textBrowser_1.setMouseTracking(True)
        self.ui.textBrowser_2.setMouseTracking(True)
        self.ui.menubar.setMouseTracking(True)
        self.ui.statusbar.setMouseTracking(True)

    def setMouseTracking(self, flag):
        def recursive_set(parent):
            for child in parent.findChildren(QtCore.QWidget):
                child.setMouseTracking(flag)
                recursive_set(child)
        QtGui.QWidget.setMouseTracking(self, flag)
        recursive_set(self)

    def mouseMoveEvent(self, event):
        pos = event.pos()
        self.ui.textBrowser_1.append(str(pos.x()))
        self.ui.textBrowser_2.append(str(pos.y()))
        QtGui.QMainWindow.mouseMoveEvent(self, event)

if __name__ == "__main__":
    app = QApplication(sys.argv)
    mainscreen = MyMainScreen()
    mainscreen.show()
    app.exec_()

これは私の出力です:

ここに画像の説明を入力

于 2016-11-29T01:01:28.467 に答える