本文整理汇总了Python中rectangle.Rectangle.updateDrag方法的典型用法代码示例。如果您正苦于以下问题:Python Rectangle.updateDrag方法的具体用法?Python Rectangle.updateDrag怎么用?Python Rectangle.updateDrag使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类rectangle.Rectangle
的用法示例。
在下文中一共展示了Rectangle.updateDrag方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Map
# 需要导入模块: from rectangle import Rectangle [as 别名]
# 或者: from rectangle.Rectangle import updateDrag [as 别名]
#.........这里部分代码省略.........
self.timer.start(Map.Speed, self)
def pause(self):
QtCore.qDebug('sim_map.Map.pause')
if not self.isStarted:
return
self.isPaused = not self.isPaused
if self.isPaused:
self.timer.stop()
self.msg2Statusbar.emit("paused")
else:
self.timer.start(Map.Speed, self)
self.msg2Statusbar.emit(str(0))
self.update()
def mousePressEvent(self, QMouseEvent):
x = QMouseEvent.x()
y = QMouseEvent.y()
if self.mouseActionType == Map.NoAction:
self.dragXstart = x
self.dragYstart = y
self.dragObject = Rectangle()
self.dragObject.updateDrag(self.dragXstart,
self.dragYstart, self.dragXstart, self.dragYstart)
self.mouseActionType = Map.PlaceBlockAction
#TODO cleanup
#print(QMouseEvent.pos())
elif self.mouseActionType == Map.PlaceRobotAction:
self.robot = Robot(x, y, 0)
self.setStatsWidget()
def mouseMoveEvent(self, QMouseEvent):
x = QMouseEvent.x()
y = QMouseEvent.y()
if self.mouseActionType == Map.PlaceBlockAction:
self.dragXend = x
self.dragYend = y
self.dragObject.updateDrag(self.dragXstart,
self.dragYstart, self.dragXend, self.dragYend)
#TODO cleanup
#print(QMouseEvent.pos())
self.repaint()
elif self.mouseActionType == Map.PlaceRobotAction:
ab = x - self.robot.posX