在嵌入 matplotlib 画布的 Qt4 应用程序中连接鼠标事件

Posted

技术标签:

【中文标题】在嵌入 matplotlib 画布的 Qt4 应用程序中连接鼠标事件【英文标题】:Connect mouse events in a Qt4 application embedding matplotlib canvas 【发布时间】:2017-11-11 13:10:19 【问题描述】:

我在matplotlib 中设计了一个绘图,并在 python 2.7 中使用 QT 显示。我想将以下两个听众连接到它:

    button_press_event motion_notify_event

过去,我使用普通的matplotlib,我曾经以以下方式进行:

import matplotlib.pyplot as plt

def mouseClick(event):
    pass

def mouseMove(event):
    pass

fig = plt.figure()
ax = fig.add_subplot(111)
ax.set_xlim((xmin, xmax))
ax.set_ylim((ymin, ymax))
fig.canvas.draw()

plt.connect('button_press_event', mouseClick)
plt.connect('motion_notify_event', mouseMove)
plt.show()

下面是我完整的QT代码:

import sys
from matplotlib.backends import qt_compat
use_pyside = qt_compat.QT_API == qt_compat.QT_API_PYSIDE
if use_pyside:
    from PySide import QtGui, QtCore
else:
    from PyQt4 import QtGui, QtCore

from numpy import arange, sin, pi
from matplotlib.backends.backend_qt4agg import FigureCanvasQTAgg as FigureCanvas
from matplotlib.figure import Figure

class MyMplCanvas(FigureCanvas):
    def __init__(self, parent=None, width=5, height=4, dpi=100):
        fig = Figure(figsize=(width, height), dpi=dpi)
        self.axes = fig.add_subplot(111)

        t = arange(0.0, 3.0, 0.01)
        s = sin(2*pi*t)
        self.axes.plot(t, s)

        FigureCanvas.__init__(self, fig)
        self.setParent(parent)

        FigureCanvas.setSizePolicy(self, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding)
        FigureCanvas.updateGeometry(self)

class ApplicationWindow(QtGui.QMainWindow):
    def __init__(self):
        QtGui.QMainWindow.__init__(self)
        self.setAttribute(QtCore.Qt.WA_DeleteOnClose)
        self.setWindowTitle("application main window")

        self.main_widget = QtGui.QWidget(self)
        l = QtGui.QVBoxLayout(self.main_widget)
        sc = MyMplCanvas(self.main_widget, width=5, height=4, dpi=100)
        l.addWidget(sc)
        self.main_widget.setFocus()
        self.setCentralWidget(self.main_widget)

qApp = QtGui.QApplication(sys.argv)
aw = ApplicationWindow()
aw.setWindowTitle("hello")
aw.show()
sys.exit(qApp.exec_())

我想在上面的代码中添加列表器。非常感谢。

【问题讨论】:

【参考方案1】:

对于这种情况,您必须使用 FigureCanvas 中的 mpl_connect

sc.mpl_connect('button_press_event', self.mouseClick)
sc.mpl_connect('motion_notify_event', self.mouseMove)

代码:

class ApplicationWindow(QtGui.QMainWindow):
    def __init__(self):
        QtGui.QMainWindow.__init__(self)
        self.setAttribute(QtCore.Qt.WA_DeleteOnClose)
        self.setWindowTitle("application main window")

        self.main_widget = QtGui.QWidget(self)
        l = QtGui.QVBoxLayout(self.main_widget)
        sc = MyMplCanvas(self.main_widget, width=5, height=4, dpi=100)
        l.addWidget(sc)
        self.main_widget.setFocus()
        self.setCentralWidget(self.main_widget)

        sc.mpl_connect('button_press_event', self.mouseClick)
        sc.mpl_connect('motion_notify_event', self.mouseMove)


    def mouseClick(self, event):
        print(event)

    def mouseMove(self, event):
        print(event)

【讨论】:

它就像一个魅力。非常感谢你。我想知道你是怎么找到它的?再次感谢。 首先看一下matplotlib中连接是如何定义的,我找到了以下参考:matplotlib.org/users/event_handling.html。在其中你可以看到连接是通过画布建立的,我认为这个方法是父画布的,所以你的孩子也必须有那个属性,在你的例子中 FigureCanvas 是画布的孩子。 我明白了。我正在阅读您提供的参考资料。非常感谢。

以上是关于在嵌入 matplotlib 画布的 Qt4 应用程序中连接鼠标事件的主要内容,如果未能解决你的问题,请参考以下文章

在 C++ Qt 应用程序中嵌入 Python/Numpy/Matplotlib?

将垂直滚动条添加到嵌入式 matplotlib 画布,同时保持其水平大小占据整个 QScrollArea

将matplotlib嵌入到tkinter画布中会打开两个窗口

Python Tkinter 在 GUI 中嵌入 Matplotlib

使用带有 pylab/matplotlib 嵌入的 Tkinter 播放、暂停、停止功能的彩色绘图动画:无法更新图形/画布?

matplotlib pyqt5画布上两个可拖动点之间的线