当前位置: 首页>>代码示例>>Python>>正文


Python Viewer.layout方法代码示例

本文整理汇总了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()
开发者ID:eggfu,项目名称:pyglet-gui,代码行数:14,代码来源:buttons.py

示例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()
开发者ID:Norberg,项目名称:pyglet-gui,代码行数:20,代码来源:text_input.py


注:本文中的pyglet_gui.core.Viewer.layout方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。