本文整理汇总了Python中base.Layout.clone方法的典型用法代码示例。如果您正苦于以下问题:Python Layout.clone方法的具体用法?Python Layout.clone怎么用?Python Layout.clone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类base.Layout
的用法示例。
在下文中一共展示了Layout.clone方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: clone
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import clone [as 别名]
def clone(self, group):
c = Layout.clone(self, group)
# These are mutable
c.stacks = [_WinStack() for i in self.stacks]
for stack in c.stacks:
if self.autosplit:
stack.split = True
return c
示例2: clone
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import clone [as 别名]
def clone(self, group):
c = Layout.clone(self, group)
# These are mutable
c.stacks = [_WinStack() for i in self.stacks]
return c
示例3: clone
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import clone [as 别名]
def clone(self, group):
c = Layout.clone(self, group)
c.clients = []
return c
示例4: clone
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import clone [as 别名]
def clone(self, group):
c = Layout.clone(self, group)
c.windows = []
return c
示例5: clone
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import clone [as 别名]
def clone(self, group):
res = Layout.clone(self, group)
res._slice = self._slice.clone(group)
res._fallback = self._fallback.clone(group)
res._window = None
return res
示例6: clone
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import clone [as 别名]
def clone(self, group):
c = Layout.clone(self, group)
c._focused = None
c._panel = None
c._tree = Root(self.sections)
return c