本文整理汇总了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()
示例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)