Esempio n. 1
0
 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)
Esempio n. 2
0
 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
Esempio n. 3
0
 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
Esempio n. 4
0
 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)
Esempio n. 5
0
 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
Esempio n. 6
0
 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
Esempio n. 7
0
 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
Esempio n. 8
0
 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)]
Esempio n. 9
0
File: tile.py Progetto: Cadair/qtile
 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
Esempio n. 10
0
 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
Esempio n. 11
0
 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
Esempio n. 12
0
 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
Esempio n. 13
0
    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 []
Esempio n. 14
0
    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 []
Esempio n. 15
0
 def __init__(self):
     Layout.__init__(self)
     self.clients = []
Esempio n. 16
0
 def __init__(self, **config):
     Layout.__init__(self, **config)
     self._focused = None
     self._panel = None
     self._tree = Root(self.sections)
     self._nodes = {}
Esempio n. 17
0
 def __init__(self, **config):
     Layout.__init__(self, **config)
     self.clients = []
     self.focused = None
Esempio n. 18
0
 def __init__(self, gap=50):
     Layout.__init__(self)
     self.clients = []
     self.gap = gap
Esempio n. 19
0
 def __init__(self, columns=2, **config):
     Layout.__init__(self, **config)
     self.add_defaults(Matrix.defaults)
     self.current_window = None
     self.columns = columns
     self.clients = []
Esempio n. 20
0
 def __init__(self, columns=2, **config):
     Layout.__init__(self, **config)
     self.add_defaults(Matrix.defaults)
     self.current_window = None
     self.columns = columns
     self.windows = []