本文整理匯總了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