matplotlib 如何在QtWidgets应用程序中集成光标

wkftcu5l  于 2022-11-24  发布在  其他
关注(0)|答案(1)|浏览(150)

bounty将在3天后过期。回答此问题可获得+100的声望奖励。Josh.h希望吸引更多人关注此问题:我正在QtWidgets中寻找此问题的最佳解决方案

我是QtWidgets的新手,正在尝试使用QtWidgets和Python构建应用程序(3.x).该应用程序的最终目标是显示图像和叠加的光标(确切地说,是一个2厘米的“加号”),它可以沿着图像移动,对鼠标事件做出React。我现在首先集中在这个光标上。到目前为止,我阅读了关于如何在matplotlib上做它的例子。然而,我很难理解如何在我的代码中集成matplotlib。另外,matplotlib是在这个代码中最简单的方法吗?或者可能有更好的方法。任何提示都将是有用的,提前谢谢。
下面是我想要的输出和我的应用程序

的代码

import sys
from PySide2 import QtWidgets
from vispy import scene
from PySide2.QtCore import QMetaObject
from PySide2.QtWidgets import *

class SimpleItem(QtWidgets.QGraphicsItem):
    def __init__(self):
       QtWidgets.QGraphicsItem.__init__(self)
       self.setFlag(QtWidgets.QGraphicsItem.ItemIsMovable, True)

       def boundingRect(self):
          penWidth = 1.0
          return QRectF(-10 - penWidth / 2, -10 - penWidth / 2,
                         20 + penWidth, 20 + penWidth)

       def paint(self, painter, option, widget):
          rect = self.boundingRect()
          painter.drawRect(rect)

class Ui_MainWindow(object):
    def setupUi(self, MainWindow):
        if not MainWindow.objectName():
            MainWindow.setObjectName("MainWindow")
        MainWindow.resize(800, 600)

        self.centralwidget = QWidget(MainWindow)
        self.centralwidget.setObjectName("centralwidget")
        self.gridLayout = QGridLayout(self.centralwidget)
        self.gridLayout.setObjectName("gridLayout")

        self.groupBox = QGroupBox(self.centralwidget)
        self.groupBox.setObjectName("groupBox")

        self.gridLayout.addWidget(self.groupBox, 0, 0, 1, 1)

        MainWindow.setCentralWidget(self.centralwidget)

        QMetaObject.connectSlotsByName(MainWindow)

class MainWindow(QtWidgets.QMainWindow):

    def __init__(self):
        super(MainWindow, self).__init__()
        self.ui = Ui_MainWindow()
        self.ui.setupUi(self)

        # OpenGL drawing surface
        self.canvas = scene.SceneCanvas(keys='interactive')
        self.canvas.create_native()
        self.canvas.native.setParent(self)

        self.view = self.canvas.central_widget.add_view()

        self.view.bgcolor = '#ffffff'   # set the canva to a white background

        scene2 = QGraphicsScene()
        item = SimpleItem()
        scene2.addItem(item)
        self.setWindowTitle('MyApp')

def main():
    import ctypes
    ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID('my_gui')

    app = QtWidgets.QApplication([])

    main_window = MainWindow()
    main_window.show()
    sys.exit(app.exec_())

if __name__ == '__main__':
    main()

编辑:我添加了一个类(这里是一个矩形示例)来说明我的问题。2我在将代码片段(使用SimpleItem)集成到OpenGL画布上时遇到了麻烦。

qpgpyjmq

qpgpyjmq1#

您可以使用QApplication.setOverrideCursor方法将. png图像文件指定为出现在Qt程序中的光标。
下面是一个示例,主要基于您问题中的代码。下面是演示该示例的gif。最后一个图像是我在代码中使用的图像cursor.png
希望这对你有帮助

import sys
from PySide2.QtCore import *
from PySide2.QtWidgets import *
from PySide2.QtGui import *

class SimpleItem(QtWidgets.QGraphicsItem):
    def __init__(self):
       QtWidgets.QGraphicsItem.__init__(self)
       self.setFlag(QtWidgets.QGraphicsItem.ItemIsMovable, True)
       self._brush = QBrush(Qt.black)

    def boundingRect(self):
        penWidth = 1.0
        return QRectF(-50 - penWidth / 2, -50 - penWidth / 2,
                     50 + penWidth, 50 + penWidth)

    def paint(self, painter, option, widget):
        rect = self.boundingRect()
        painter.drawRect(rect)
        painter.fillRect(rect, self._brush)

class MainWindow(QtWidgets.QMainWindow):

    def __init__(self):
        super(MainWindow, self).__init__()
        self.resize(800, 600)
        self.scene = QGraphicsScene()
        self.canvas = scene.SceneCanvas(keys='interactive')
        self.view = QGraphicsView(self.scene)
        item = SimpleItem()
        self.scene.addItem(item)
        self.setCentralWidget(self.view)
        self.setWindowTitle('MyApp')

def main():
    import ctypes
    ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID('my_gui')
    app = QtWidgets.QApplication([])
    app.setOverrideCursor(QCursor(QPixmap('cursor.png')))
    main_window = MainWindow()
    main_window.show()
    sys.exit(app.exec_())

if __name__ == '__main__':
    main()

相关问题