No description
Find a file
2012-08-23 15:32:20 +02:00
examples slight restructuration 2012-08-04 21:24:47 +02:00
resources New logo 2012-08-21 19:10:26 +02:00
.bspwmrc events are caught 2012-08-01 23:16:07 +02:00
.gitignore big Makefile 2012-08-07 12:17:47 +02:00
bspc.c big Makefile 2012-08-07 12:17:47 +02:00
bspwm.c Refactoring 2012-08-20 22:38:29 +02:00
bspwm.h Refactoring 2012-08-20 22:38:29 +02:00
common.h A few constructors 2012-08-18 11:18:19 +02:00
events.c Refactoring 2012-08-20 22:38:29 +02:00
events.h Refactoring 2012-08-20 22:38:29 +02:00
helpers.h Refactoring 2012-08-20 22:38:29 +02:00
luautils.c Refactoring 2012-08-20 22:38:29 +02:00
luautils.h Refactoring 2012-08-20 22:38:29 +02:00
Makefile A few constructors 2012-08-18 11:18:19 +02:00
messages.c Refactoring 2012-08-20 22:38:29 +02:00
messages.h using unix socket instead of fifo 2012-08-02 21:53:27 +02:00
README.mkd Don't plan for what is done 2012-08-22 09:52:34 +02:00
settings.c Preselection feedback in draw_triple_border 2012-08-21 13:27:14 +02:00
settings.h Preselection feedback in draw_triple_border 2012-08-21 13:27:14 +02:00
tree.c Refactoring 2012-08-20 22:38:29 +02:00
tree.h Refactoring 2012-08-20 22:38:29 +02:00
types.c List of leaves 2012-08-23 15:32:20 +02:00
types.h List of leaves 2012-08-23 15:32:20 +02:00
utils.c Preselection feedback in draw_triple_border 2012-08-21 13:27:14 +02:00
utils.h Preselection feedback in draw_triple_border 2012-08-21 13:27:14 +02:00

logo

Description

  • Windows are represented as the leaves of a binary tree.

  • To each leaf corresponds exactly one window.

  • The only nodes which can be focused are the leaves.

  • The leaves are called window nodes.

  • The other nodes are called container nodes.

  • Only two methods of node insertion will be provided: replace and pair.

      Example: insertion of a new node (number 4) into the given tree with the
      *replace* method:
    
                   b                                   c
                  / \                                 / \
                 3   a              -->              4   b
                 ^  / \                              ^  / \
                   2   1                               3   a
                                                          / \
                                                         2   1
      +-------------------------+         +-------------------------+
      |            |            |         |            |            |
      |            |     2      |         |            |     3      |
      |            |            |         |            |            |
      |     3      |------------|   -->   |     4      |------------|
      |     ^      |            |         |     ^      |     |      |
      |            |     1      |         |            |  2  |  1   |
      |            |            |         |            |     |      |
      +-------------------------+         +-------------------------+
    
      And with the *pair* method:
    
                   b                                   b
                  / \                                 / \
                 3   a              -->              c   a
                 ^  / \                             / \ / \
                   2   1                           4  3 2  1
                                                   ^
      +-------------------------+         +-------------------------+
      |            |            |         |            |            |
      |            |     2      |         |     4      |     2      |
      |            |            |         |     ^      |            |
      |     3      |------------|   -->   |------------|------------|
      |     ^      |            |         |            |            |
      |            |     1      |         |     3      |     1      |
      |            |            |         |            |            |
      +-------------------------+         +-------------------------+
    
  • Each container node is a split rectangle.

  • Several tree transformations will be provided: directional leaf swap, node pulling, rotation, contraction (?), dilatation (?), zooming (?), ...

Features

  • Triple window borders. Rationale: with single borders, it might happen that the color of the window border is too close to the color of its inner or outer environment to be visible.
  • Directional pair splitting preselection (the feedback will be drawn in the window border pixman).
  • Set or get settings and call methods at runtime.
  • Configuration file in Lua.

Planned Features

  • Don't automatically give the focus to toolbar windows.
  • When a fullscreen window looses the focus, its fullscreen state will be set to false if the window to be focused is in the same desktop.