本文整理汇总了Python中Button.Button.width方法的典型用法代码示例。如果您正苦于以下问题:Python Button.width方法的具体用法?Python Button.width怎么用?Python Button.width使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Button.Button
的用法示例。
在下文中一共展示了Button.width方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from Button import Button [as 别名]
# 或者: from Button.Button import width [as 别名]
def __init__(self, options, ypos, buttontextsize = variables.gettextsize()/variables.height):
# a list of strings
self.options = options
self.current_option = 0
self.buttons = []
self.maxwidth = 0
for s in options:
newb = Button(0, ypos, s, buttontextsize)
self.buttons.append(newb)
if newb.width()/variables.width > self.maxwidth:
# devide by width because positions are multipliers of width
self.maxwidth = newb.width()/variables.width
spacing = self.maxwidth / 4
length = len(self.buttons)
self.length = length
centering = (1 - length * self.maxwidth - (length-1) * spacing) / 2
for i in range(self.length):
self.buttons[i].screenwidthoverride = self.maxwidth
self.buttons[i].x = i * (self.maxwidth + spacing) + centering
self._freeze()