本文整理匯總了Python中ui.widgets.sprite.LcarsWidget.__init__方法的典型用法代碼示例。如果您正苦於以下問題:Python LcarsWidget.__init__方法的具體用法?Python LcarsWidget.__init__怎麽用?Python LcarsWidget.__init__使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ui.widgets.sprite.LcarsWidget
的用法示例。
在下文中一共展示了LcarsWidget.__init__方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __init__
# 需要導入模塊: from ui.widgets.sprite import LcarsWidget [as 別名]
# 或者: from ui.widgets.sprite.LcarsWidget import __init__ [as 別名]
def __init__(self, colour, style, pos, handler=None):
image = pygame.image.load("assets/tab.png").convert()
if (style == LcarsTab.STYLE_RIGHT):
image = pygame.transform.flip(image, False, True)
size = (image.get_rect().width, image.get_rect().height)
LcarsWidget.__init__(self, colour, pos, size, handler)
self.image = image
self.applyColour(colour)
示例2: __init__
# 需要導入模塊: from ui.widgets.sprite import LcarsWidget [as 別名]
# 或者: from ui.widgets.sprite.LcarsWidget import __init__ [as 別名]
def __init__(self, colour, style, pos):
script_dir = dirname(__file__)
ipath = join(script_dir, '../../assets/tab.png')
image = pygame.image.load(ipath).convert()
if (style == LcarsTab.STYLE_RIGHT):
image = pygame.transform.flip(image, False, True)
size = (image.get_rect().width, image.get_rect().height)
LcarsWidget.__init__(self, colour, pos, size)
self.image = image
self.applyColour(colour)
示例3: __init__
# 需要導入模塊: from ui.widgets.sprite import LcarsWidget [as 別名]
# 或者: from ui.widgets.sprite.LcarsWidget import __init__ [as 別名]
def __init__(self, colour, pos, text, handler=None):
self.handler = handler
image = pygame.image.load("assets/button.png").convert()
size = (image.get_rect().width, image.get_rect().height)
font = Font("assets/swiss911.ttf", 19)
textImage = font.render(text, False, colours.BLACK)
image.blit(textImage,
(image.get_rect().width - textImage.get_rect().width - 10,
image.get_rect().height - textImage.get_rect().height - 5))
self.image = image
self.colour = colour
LcarsWidget.__init__(self, colour, pos, size)
self.applyColour(colour)
self.highlighted = False
self.beep = Sound("assets/audio/panel/202.wav")
示例4: __init__
# 需要導入模塊: from ui.widgets.sprite import LcarsWidget [as 別名]
# 或者: from ui.widgets.sprite.LcarsWidget import __init__ [as 別名]
def __init__(self, colour, pos, text, handler=None, rectSize=None):
if rectSize == None:
image = pygame.image.load("assets/button.png").convert_alpha()
size = (image.get_rect().width, image.get_rect().height)
else:
size = rectSize
image = pygame.Surface(rectSize).convert_alpha()
image.fill(colour)
self.colour = colour
self.image = image
font = Font("assets/swiss911.ttf", 19)
textImage = font.render(text, False, colours.BLACK)
image.blit(textImage,
(image.get_rect().width - textImage.get_rect().width - 10,
image.get_rect().height - textImage.get_rect().height - 5))
LcarsWidget.__init__(self, colour, pos, size, handler)
self.applyColour(colour)
self.highlighted = False
self.beep = Sound("assets/audio/panel/202.wav")
示例5: __init__
# 需要導入模塊: from ui.widgets.sprite import LcarsWidget [as 別名]
# 或者: from ui.widgets.sprite.LcarsWidget import __init__ [as 別名]
def __init__(self, imagefilename, pos, duration=-1):
self.image = GIFImage(imagefilename, duration)
self.pos = pos
size = (self.image.get_rect().width, self.image.get_rect().height)
LcarsWidget.__init__(self, None, pos, size)
示例6: __init__
# 需要導入模塊: from ui.widgets.sprite import LcarsWidget [as 別名]
# 或者: from ui.widgets.sprite.LcarsWidget import __init__ [as 別名]
def __init__(self, image, pos, handler=None):
self.handler = handler
self.image = pygame.image.load(image).convert()
LcarsWidget.__init__(self, None, pos, None)
示例7: __init__
# 需要導入模塊: from ui.widgets.sprite import LcarsWidget [as 別名]
# 或者: from ui.widgets.sprite.LcarsWidget import __init__ [as 別名]
def __init__(self, image):
self.image = pygame.image.load(image).convert()
LcarsWidget.__init__(self, None, (0,0), None)