本文整理汇总了Python中base.Layout.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python Layout.__init__方法的具体用法?Python Layout.__init__怎么用?Python Layout.__init__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类base.Layout
的用法示例。
在下文中一共展示了Layout.__init__方法的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import __init__ [as 别名]
def __init__(self, **config):
Layout.__init__(self, **config)
self.add_defaults(Stack.defaults)
self.stacks = [_WinStack() for i in range(self.num_stacks)]
for stack in self.stacks:
if self.autosplit:
stack.split = True
示例2: __init__
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import __init__ [as 别名]
def __init__(self, stacks=2, **config):
"""
- stacks: Number of stacks to start with.
"""
Layout.__init__(self, **config)
self.stacks = [_WinStack() for i in range(stacks)]
self.add_defaults(Stack.defaults)
示例3: __init__
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import __init__ [as 别名]
def __init__(self, ratio=0.618, masterWindows = 1, expand=True):
Layout.__init__(self)
self.clients = []
self.ratio = ratio
self.master = masterWindows
self.focused = None
self.expand = expand
示例4: __init__
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import __init__ [as 别名]
def __init__(self, ratio=0.618, masterWindows=1, expand=True, ratio_increment=0.05, **config):
Layout.__init__(self, **config)
self.clients = []
self.ratio = ratio
self.master = masterWindows
self.focused = None
self.expand = expand
self.ratio_increment = ratio_increment
示例5: __init__
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import __init__ [as 别名]
def __init__(self, stacks=2, wmii_style=False, **config):
"""
- stacks: Number of stacks to start with.
- wmii_style: if True, when trying to move a client to a non-existing
stack, a new stak will be created to contain the client.
(off by default)
"""
Layout.__init__(self, **config)
self.wmii_style = wmii_style
self.stacks = [_WinStack() for i in range(stacks)]
示例6: __init__
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import __init__ [as 别名]
def __init__(self, ratio=GOLDEN_RATIO, ratio_increment=0.1, fancy=False, **config):
Layout.__init__(self, **config)
self.windows = []
self.ratio_increment = ratio_increment
self.ratio = ratio
self.focused = None
self.dirty = True # need to recalculate
self.layout_info = []
self.last_size = None
self.fancy = fancy
示例7: __init__
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import __init__ [as 别名]
def __init__(self, ratio=0.618, masterWindows=1, expand=True,
ratio_increment=0.05, add_on_top=True, shift_windows=False, **config):
Layout.__init__(self, **config)
self.clients = []
self.ratio = ratio
self.master = masterWindows
self.focused = None
self.expand = expand
self.ratio_increment = ratio_increment
self.add_on_top = add_on_top
self.shift_windows = shift_windows
示例8: __init__
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import __init__ [as 别名]
def __init__(self, ratio=GOLDEN_RATIO, ratio_increment=0.1,
fancy=False, **config):
Layout.__init__(self, **config)
self.add_defaults(RatioTile.defaults)
self.clients = []
self.ratio_increment = ratio_increment
self.ratio = ratio
self.focused = None
self.dirty = True # need to recalculate
self.layout_info = []
self.last_size = None
self.last_screen = None
self.fancy = fancy
示例9: __init__
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import __init__ [as 别名]
def __init__(self, float_rules=None, **config):
"""
If you have certain apps that you always want to float you can
provide ``float_rules`` to do so.
``float_rules`` is a list of dictionaries containing:
{wmname: WM_NAME, wmclass: WM_CLASS
role: WM_WINDOW_ROLE}
The keys must be specified as above. You only need one, but
you need to provide the value for it. When a new window is
opened it's ``match`` method is called with each of these
rules. If one matches, the window will float. The following
will float gimp and skype:
float_rules=[dict(wmclass="skype"), dict(wmclass="gimp")]
Specify these in the ``floating_layout`` in your config.
"""
Layout.__init__(self, **config)
self.clients = []
self.focused = None
self.float_rules = float_rules or []
示例10: __init__
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import __init__ [as 别名]
def __init__(self):
Layout.__init__(self)
self.clients = []
示例11: __init__
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import __init__ [as 别名]
def __init__(self, columns=2, **config):
Layout.__init__(self, **config)
self.add_defaults(Matrix.defaults)
self.current_window = None
self.columns = columns
self.windows = []
示例12: __init__
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import __init__ [as 别名]
def __init__(self, **config):
Layout.__init__(self, **config)
self.clients = []
self.focused = None
示例13: __init__
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import __init__ [as 别名]
def __init__(self, **config):
Layout.__init__(self, **config)
self._focused = None
self._panel = None
self._tree = Root(self.sections)
self._nodes = {}
示例14: __init__
# 需要导入模块: from base import Layout [as 别名]
# 或者: from base.Layout import __init__ [as 别名]
def __init__(self, gap=50):
Layout.__init__(self)
self.clients = []
self.gap = gap