本文整理汇总了Python中pyglet_gui.core.Viewer.layout方法的典型用法代码示例。如果您正苦于以下问题:Python Viewer.layout方法的具体用法?Python Viewer.layout怎么用?Python Viewer.layout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyglet_gui.core.Viewer
的用法示例。
在下文中一共展示了Viewer.layout方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: layout
# 需要导入模块: from pyglet_gui.core import Viewer [as 别名]
# 或者: from pyglet_gui.core.Viewer import layout [as 别名]
def layout(self):
Viewer.layout(self)
# lays out graphics
self._button.update(self.x, self.y, self.width, self.height)
# centers the label on the middle of the button
x, y, width, height = self._button.get_content_region()
font = self._label.document.get_font()
self._label.x = x + width/2 - self._label.content_width/2
self._label.y = y + height/2 - font.ascent/2 - font.descent
self._label.update()
示例2: layout
# 需要导入模块: from pyglet_gui.core import Viewer [as 别名]
# 或者: from pyglet_gui.core.Viewer import layout [as 别名]
def layout(self):
Viewer.layout(self)
self._field.update(self.x, self.y, self.width, self.height)
x, y, width, height = self._field.get_content_region()
if self.is_focus():
self._text_layout.begin_update()
self._text_layout.x = self.x + self._padding
self._text_layout.y = self.y - self._padding
self._text_layout.end_update()
else:
# Adjust the text for font's descent
descent = self._document.get_font().descent
self._label.begin_update()
self._label.x = self.x + self._padding
self._label.y = self.y + self._padding - descent
self._label.width = width - self._padding * 2
self._label.end_update()