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


Python Tile.cmd_tile方法代码示例

本文整理汇总了Python中tile.Tile.cmd_tile方法的典型用法代码示例。如果您正苦于以下问题:Python Tile.cmd_tile方法的具体用法?Python Tile.cmd_tile怎么用?Python Tile.cmd_tile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在tile.Tile的用法示例。


在下文中一共展示了Tile.cmd_tile方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: cmd_tile

# 需要导入模块: from tile import Tile [as 别名]
# 或者: from tile.Tile import cmd_tile [as 别名]
    def cmd_tile(self):
        Tile.cmd_tile(self)

        if not self.root:
            self.root = LeafFrame(self, None, Container(self))

            active = self.monitor.get_active()

            if active:
                self.add(active)

            for win in self.monitor.iter_windows():
                if win != active:
                    self.add(win)
        else:
            self.promote()
            for child in self.root.childs():
                if child.cont.empty and not child.cont.win:
                    child.cont.set_window(force=True)

        self.root.moveresize(
            self.monitor.wa_x, self.monitor.wa_y,
            self.monitor.wa_width, self.monitor.wa_height
        )

        for win in self.iter_hidden():
            win.set_below(True)

        for child in self.root.childs():
            child.cont.window_below(False)
            child.reset_cycle()
开发者ID:Belluka,项目名称:pytyle,代码行数:33,代码来源:tile_manual.py

示例2: cmd_tile

# 需要导入模块: from tile import Tile [as 别名]
# 或者: from tile.Tile import cmd_tile [as 别名]
    def cmd_tile(self):
        Tile.cmd_tile(self)

        if not self.store:
            self.store = AutoStore()

        if self.store.empty():
            active = self.monitor.get_active()

            if active:
                self.add(active)

            for win in self.monitor.iter_windows():
                if win != active:
                    self.add(win)
开发者ID:Belluka,项目名称:pytyle,代码行数:17,代码来源:tile_auto.py


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