本文整理匯總了Python中Menu.Menu.nameOfSelectedBox方法的典型用法代碼示例。如果您正苦於以下問題:Python Menu.nameOfSelectedBox方法的具體用法?Python Menu.nameOfSelectedBox怎麽用?Python Menu.nameOfSelectedBox使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Menu.Menu
的用法示例。
在下文中一共展示了Menu.nameOfSelectedBox方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: Person
# 需要導入模塊: from Menu import Menu [as 別名]
# 或者: from Menu.Menu import nameOfSelectedBox [as 別名]
#.........這裏部分代碼省略.........
def wasClickedOn(self,map):
if self.rect.collidepoint(map['coords']) == True and map['button'] == 'down':
self.clicked = True
self.clickedSpot = map['coords']
def rightClick(self,map):
# print "self.rect is: ", self.rect
# print "mouse is at: ",map['coords']
# print "self.rect.collidepoint(map['coords']) is: ",self.rect.collidepoint(map['coords'])
# print "map['button3'] is: ", map['button3']
# print "map['button'] is: ",map['button']
if self.rect.collidepoint(map['coords']) == True and map['button3']== True and map['button'] == 'down':
self.rightButton = True
self.clickedSpot = map['coords']
def rightClicked(self):
return self.rightButton
def clickedOn(self):
return self.clicked
def set_clickedOn_to_false(self):
self.clicked = False
def closingClick(self,map):
if self.clicked == True and self.rect.collidepoint(map['coords']) == True and map['button'] == 'down' and map['button3'] == True:
return True
def runWalkingPath(self):
if self.menu.nameOfSelectedBox() == "walking":
return True
else:
return False
def getMenu(self,map):
#print "1 ----"
'''getMenu checks to see if you clicked on something on the menu.
if you did, it sets clicked to false, so that on the next screen update, the menu
will not appear. '''
if self.menu.clickedOn(map): #menu.clickedOn returns true if you clicked on one of the squares, and false otherwise
self.clicked = False
return self.menu.currentMenu(map,self.clickedSpot) #returns the current menu
#is used to prevent making circles in the exact same place
def selected(self):
#print self.menu.selectedBox()
temp = self.menu.selectedBox()
##print "temp is: ",temp
#self.setLTSelected(temp)
return temp
def resetSelected(self):
return self.menu.resetSelectedBox()
# def setLTSelected(self,string):# set long term selected
# self.LTSelectedString = string