當前位置: 首頁>>代碼示例>>Python>>正文


Python Rectangle.updateDrag方法代碼示例

本文整理匯總了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
開發者ID:paulvlase,項目名稱:intelligent_car,代碼行數:70,代碼來源:sim_map.py


注:本文中的rectangle.Rectangle.updateDrag方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。