当前位置: 首页>>代码示例>>Python>>正文


Python QGraphicsView.wheelEvent方法代码示例

本文整理汇总了Python中PyQt5.QtWidgets.QGraphicsView.wheelEvent方法的典型用法代码示例。如果您正苦于以下问题:Python QGraphicsView.wheelEvent方法的具体用法?Python QGraphicsView.wheelEvent怎么用?Python QGraphicsView.wheelEvent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PyQt5.QtWidgets.QGraphicsView的用法示例。


在下文中一共展示了QGraphicsView.wheelEvent方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: wheelEvent

# 需要导入模块: from PyQt5.QtWidgets import QGraphicsView [as 别名]
# 或者: from PyQt5.QtWidgets.QGraphicsView import wheelEvent [as 别名]
    def wheelEvent(self, event):
        '''Handle wheel event.

        Argument(s):
        event (QWheelEvent): Wheel event
        '''
        # Only zoom/dezoom if CTRL is pressed
        if event.modifiers() == Qt.ControlModifier:
            zoomInFactor = 1.25
            zoomOutFactor = 1 / zoomInFactor

            # Save the scene pos
            oldPos = self.mapToScene(event.pos())

            # Zoom
            if event.angleDelta().y() > 0:
                zoomFactor = zoomInFactor
            else:
                zoomFactor = zoomOutFactor
            self.scale(zoomFactor, zoomFactor)

            # Get the new position
            newPos = self.mapToScene(event.pos())

            # Move scene to old position
            delta = newPos - oldPos
            self.translate(delta.x(), delta.y())
        # Move scrollbar
        else:
            QGraphicsView.wheelEvent(self, event)
开发者ID:pydoted,项目名称:dotEd,代码行数:32,代码来源:GraphicsGraphView.py

示例2: inputGraphicsViewwheelEvent

# 需要导入模块: from PyQt5.QtWidgets import QGraphicsView [as 别名]
# 或者: from PyQt5.QtWidgets.QGraphicsView import wheelEvent [as 别名]
 def inputGraphicsViewwheelEvent(self,event):
     scaleFactor = 1.15
     if event.delta() > 0:
         # Zoom in
         self.inputGraphicsView.scale(scaleFactor, scaleFactor)
     else:
         # Zooming out
         self.inputGraphicsView.scale(1.0 / scaleFactor, 1.0 / scaleFactor)
     QGraphicsView.wheelEvent(self.inputGraphicsView, event)
开发者ID:UMATracker,项目名称:UMATracker-Commando,代码行数:11,代码来源:main.py

示例3: wheelEvent

# 需要导入模块: from PyQt5.QtWidgets import QGraphicsView [as 别名]
# 或者: from PyQt5.QtWidgets.QGraphicsView import wheelEvent [as 别名]
 def wheelEvent(self, event):
     '''Zoom In/Out with CTRL + mouse wheel'''
     if event.modifiers() == Qt.ControlModifier:
         self.scaleView(math.pow(2.0, -event.angleDelta().y() / 240.0))
     else:
         return QGraphicsView.wheelEvent(self, event)
开发者ID:correosdelbosque,项目名称:lector,代码行数:8,代码来源:ocrwidget.py

示例4: wheelEvent

# 需要导入模块: from PyQt5.QtWidgets import QGraphicsView [as 别名]
# 或者: from PyQt5.QtWidgets.QGraphicsView import wheelEvent [as 别名]
 def wheelEvent(self, e):
     QGraphicsView.wheelEvent(e)
开发者ID:iclosure,项目名称:jcoolkits,代码行数:4,代码来源:GLView.py


注:本文中的PyQt5.QtWidgets.QGraphicsView.wheelEvent方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。