enlightenment/src/modules/tiling
Tom Hacohen 37462c7cb7 Tiling: Respect min size hints (set to floating if doesn't fit).
This fix floats all the windows that don't fit because of their min size
restrictions.
It can be made better, at the moment it is very simple. An example
broken case would be the following:
Assume we have 3 windows, A, B and C.
B and C both hand a min width of half the screen.

First we create A, then B. Everything works as they share the screen,
but when we add C, both B's and C's restrictions "fail" so they are both
set to float although in reality, floating C is enough. This can be
fixed by doing a live scan of the tree every time a window is floated,
though it's not essential at the moment.

Fixes T952.
2014-08-28 16:33:54 +01:00
..
images Tiling2: Added a gadget group to the theme. 2014-02-21 09:15:10 +00:00
.gitignore tiling: gitignore 2014-03-07 10:01:46 +01:00
README tiling: Remove part of the README that refers to an up to date e17 2012-06-12 09:12:45 +00:00
e-module-tiling.edc Tiling2: Added a gadget group to the theme. 2014-02-21 09:15:10 +00:00
e_mod_config.c Tiling2: Fixed applying of desktop is tiled config. 2014-02-21 09:15:10 +00:00
e_mod_tiling.c Tiling: Respect min size hints (set to floating if doesn't fit). 2014-08-28 16:33:54 +01:00
e_mod_tiling.h Tiling: Respect min size hints (set to floating if doesn't fit). 2014-08-28 16:33:54 +01:00
module.desktop.in Tiling2: Rename module to tiling1 in the desktop file. 2014-02-21 09:28:15 +00:00
window_tree.c Tiling: Respect min size hints (set to floating if doesn't fit). 2014-08-28 16:33:54 +01:00
window_tree.h Tiling2: Fixed formattign, again. 2014-02-21 09:15:10 +00:00

README

A tiling module for the Enlightenment Window Manager

Concept
=======

Each desktop can have from 1 to 8 (vertical) columns.
Windows are then resized and moved to use as much as columns as configured.

When there are more windows than possible columns, the remaining windows are
packed in the last column.

Resizing or moving a window will try to resize or move the column it is in.