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


Python QGLWidget.mouseMoveEvent方法代码示例

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


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

示例1: mouseMoveEvent

# 需要导入模块: from PyQt4.QtOpenGL import QGLWidget [as 别名]
# 或者: from PyQt4.QtOpenGL.QGLWidget import mouseMoveEvent [as 别名]
	def mouseMoveEvent(self, event):
		QGLWidget.mouseMoveEvent(self, event)
		self._mouseX = event.x()
		self._mouseY = event.y()
		self.repaint()
		self.onMove( (self._glX - self._x, self._height-self._glY + self._y ) )

		if self._mouseDown:
			if self._mouseLeftDown:
				self.onDrag( self._mouseStartDragPoint, (self._glX - self._x, self._height-self._glY + self._y ) )
开发者ID:UmSenhorQualquer,项目名称:pyforms,代码行数:12,代码来源:ControlImage.py

示例2: mouseMoveEvent

# 需要导入模块: from PyQt4.QtOpenGL import QGLWidget [as 别名]
# 或者: from PyQt4.QtOpenGL.QGLWidget import mouseMoveEvent [as 别名]
	def mouseMoveEvent(self, event):
		QGLWidget.mouseMoveEvent(self, event)
		self.__updateMouse(event)
		self.repaint()

		self.onMove( (self._mouseGLPosition[0], self._mouseGLPosition[1] ) )

		if self.mouseDown:
			if self._mouseLeftDown:
				#p = self._mouseGLPosition[0] - self._x, self._mouseGLPosition[1] + self._y
				#p = self._mouseGLPosition[0], self._mouseGLPosition[1]
				self.onDrag(self._lastMousePosition, self._mousePosition)
	   
		self._lastMousePosition = list(self._mousePosition)
开发者ID:AlfiyaZi,项目名称:pyforms,代码行数:16,代码来源:ControlOpenGL.py

示例3: mouseMoveEvent

# 需要导入模块: from PyQt4.QtOpenGL import QGLWidget [as 别名]
# 或者: from PyQt4.QtOpenGL.QGLWidget import mouseMoveEvent [as 别名]
 def mouseMoveEvent(self, event):
     self.mouse_pos = event.pos()
     QGLWidget.mouseMoveEvent(self, event)
开发者ID:SCIInstitute,项目名称:MLM,代码行数:5,代码来源:widget.py


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