2013-09-07 12:06:42 +02:00
|
|
|
--[[
|
2017-09-04 12:43:00 +02:00
|
|
|
|
|
|
|
Licensed under GNU General Public License v2
|
|
|
|
* (c) 2014, projektile
|
2017-09-11 06:51:52 +02:00
|
|
|
* (c) 2013, Luca CPZ
|
2017-09-04 12:43:00 +02:00
|
|
|
* (c) 2010, Nicolas Estibals
|
|
|
|
* (c) 2010-2012, Peter Hofmann
|
|
|
|
|
2013-09-07 12:06:42 +02:00
|
|
|
--]]
|
|
|
|
|
2018-11-28 20:43:04 +01:00
|
|
|
local math = math
|
2017-01-26 19:28:41 +01:00
|
|
|
local screen = screen
|
2017-01-18 22:57:26 +01:00
|
|
|
local tonumber = tonumber
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2013-09-15 16:17:33 +02:00
|
|
|
local termfair = { name = "termfair" }
|
2017-01-17 19:13:45 +01:00
|
|
|
termfair.center = { name = "centerfair" }
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2017-01-17 19:13:45 +01:00
|
|
|
local function do_fair(p, orientation)
|
2017-01-26 19:28:41 +01:00
|
|
|
local t = p.tag or screen[p.screen].selected_tag
|
|
|
|
local wa = p.workarea
|
2013-09-07 12:06:42 +02:00
|
|
|
local cls = p.clients
|
2017-01-25 19:27:49 +01:00
|
|
|
|
2017-01-26 19:28:41 +01:00
|
|
|
if #cls == 0 then return end
|
2017-01-17 19:13:45 +01:00
|
|
|
|
|
|
|
if orientation == "west" then
|
|
|
|
-- Layout with fixed number of vertical columns (read from nmaster).
|
|
|
|
-- New windows align from left to right. When a row is full, a now
|
|
|
|
-- one above it is created. Like this:
|
|
|
|
|
|
|
|
-- (1) (2) (3)
|
|
|
|
-- +---+---+---+ +---+---+---+ +---+---+---+
|
|
|
|
-- | | | | | | | | | | | |
|
|
|
|
-- | 1 | | | -> | 2 | 1 | | -> | 3 | 2 | 1 | ->
|
|
|
|
-- | | | | | | | | | | | |
|
|
|
|
-- +---+---+---+ +---+---+---+ +---+---+---+
|
2014-09-22 17:25:27 +02:00
|
|
|
|
2017-01-17 19:13:45 +01:00
|
|
|
-- (4) (5) (6)
|
|
|
|
-- +---+---+---+ +---+---+---+ +---+---+---+
|
|
|
|
-- | 4 | | | | 5 | 4 | | | 6 | 5 | 4 |
|
|
|
|
-- +---+---+---+ -> +---+---+---+ -> +---+---+---+
|
|
|
|
-- | 3 | 2 | 1 | | 3 | 2 | 1 | | 3 | 2 | 1 |
|
|
|
|
-- +---+---+---+ +---+---+---+ +---+---+---+
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2017-01-17 19:13:45 +01:00
|
|
|
-- How many vertical columns? Read from nmaster on the tag.
|
2017-01-26 19:28:41 +01:00
|
|
|
local num_x = tonumber(termfair.nmaster) or t.master_count
|
|
|
|
local ncol = tonumber(termfair.ncol) or t.column_count
|
2017-01-17 19:13:45 +01:00
|
|
|
|
|
|
|
if num_x <= 2 then num_x = 2 end
|
|
|
|
if ncol <= 1 then ncol = 1 end
|
2017-01-26 19:28:41 +01:00
|
|
|
local width = math.floor(wa.width/num_x)
|
2017-01-17 19:13:45 +01:00
|
|
|
|
|
|
|
local num_y = math.max(math.ceil(#cls / num_x), ncol)
|
2017-01-26 19:28:41 +01:00
|
|
|
local height = math.floor(wa.height/num_y)
|
2013-09-07 12:06:42 +02:00
|
|
|
local cur_num_x = num_x
|
2017-01-17 19:13:45 +01:00
|
|
|
local at_x = 0
|
|
|
|
local at_y = 0
|
|
|
|
|
2013-09-07 12:06:42 +02:00
|
|
|
local remaining_clients = #cls
|
|
|
|
|
|
|
|
-- We start the first row. Left-align by limiting the number of
|
|
|
|
-- available slots.
|
2017-01-17 19:13:45 +01:00
|
|
|
if remaining_clients < num_x then
|
2013-09-07 12:06:42 +02:00
|
|
|
cur_num_x = remaining_clients
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Iterate in reversed order.
|
2017-01-17 19:13:45 +01:00
|
|
|
for i = #cls,1,-1 do
|
2013-09-07 12:06:42 +02:00
|
|
|
-- Get x and y position.
|
|
|
|
local c = cls[i]
|
|
|
|
local this_x = cur_num_x - at_x - 1
|
|
|
|
local this_y = num_y - at_y - 1
|
|
|
|
|
2017-01-17 19:13:45 +01:00
|
|
|
-- Calculate geometry.
|
2013-09-07 12:06:42 +02:00
|
|
|
local g = {}
|
2017-01-17 19:13:45 +01:00
|
|
|
if this_x == (num_x - 1) then
|
2017-01-26 19:28:41 +01:00
|
|
|
g.width = wa.width - (num_x - 1)*width
|
2013-09-07 12:06:42 +02:00
|
|
|
else
|
2017-01-26 19:28:41 +01:00
|
|
|
g.width = width
|
2013-09-07 12:06:42 +02:00
|
|
|
end
|
2017-01-17 19:13:45 +01:00
|
|
|
|
|
|
|
if this_y == (num_y - 1) then
|
2017-01-26 19:28:41 +01:00
|
|
|
g.height = wa.height - (num_y - 1)*height
|
2013-09-07 12:06:42 +02:00
|
|
|
else
|
2017-01-26 19:28:41 +01:00
|
|
|
g.height = height
|
2013-09-07 12:06:42 +02:00
|
|
|
end
|
2013-10-04 18:53:33 +02:00
|
|
|
|
2015-09-02 05:29:29 +02:00
|
|
|
g.x = wa.x + this_x*width
|
|
|
|
g.y = wa.y + this_y*height
|
2013-10-04 18:53:33 +02:00
|
|
|
|
2017-01-26 19:28:41 +01:00
|
|
|
if g.width < 1 then g.width = 1 end
|
2015-09-09 02:19:55 +02:00
|
|
|
if g.height < 1 then g.height = 1 end
|
2017-01-17 19:13:45 +01:00
|
|
|
|
2017-01-26 19:28:41 +01:00
|
|
|
p.geometries[c] = g
|
2017-01-17 19:13:45 +01:00
|
|
|
|
2013-09-07 12:06:42 +02:00
|
|
|
remaining_clients = remaining_clients - 1
|
|
|
|
|
|
|
|
-- Next grid position.
|
|
|
|
at_x = at_x + 1
|
2017-01-17 19:13:45 +01:00
|
|
|
if at_x == num_x then
|
2013-09-07 12:06:42 +02:00
|
|
|
-- Row full, create a new one above it.
|
|
|
|
at_x = 0
|
|
|
|
at_y = at_y + 1
|
|
|
|
|
|
|
|
-- We start a new row. Left-align.
|
2017-01-17 19:13:45 +01:00
|
|
|
if remaining_clients < num_x then
|
2013-09-07 12:06:42 +02:00
|
|
|
cur_num_x = remaining_clients
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-01-17 19:13:45 +01:00
|
|
|
elseif orientation == "center" then
|
|
|
|
-- Layout with fixed number of vertical columns (read from nmaster).
|
|
|
|
-- Cols are centerded until there is nmaster columns, then windows
|
|
|
|
-- are stacked in the slave columns, with at most ncol clients per
|
|
|
|
-- column if possible.
|
|
|
|
|
|
|
|
-- with nmaster=3 and ncol=1 you'll have
|
|
|
|
-- (1) (2) (3)
|
|
|
|
-- +---+---+---+ +-+---+---+-+ +---+---+---+
|
|
|
|
-- | | | | | | | | | | | | |
|
|
|
|
-- | | 1 | | -> | | 1 | 2 | | -> | 1 | 2 | 3 | ->
|
|
|
|
-- | | | | | | | | | | | | |
|
|
|
|
-- +---+---+---+ +-+---+---+-+ +---+---+---+
|
|
|
|
|
|
|
|
-- (4) (5)
|
|
|
|
-- +---+---+---+ +---+---+---+
|
|
|
|
-- | | | 3 | | | 2 | 4 |
|
|
|
|
-- + 1 + 2 +---+ -> + 1 +---+---+
|
|
|
|
-- | | | 4 | | | 3 | 5 |
|
|
|
|
-- +---+---+---+ +---+---+---+
|
|
|
|
|
|
|
|
-- How many vertical columns? Read from nmaster on the tag.
|
2017-01-26 19:28:41 +01:00
|
|
|
local num_x = tonumber(termfair.center.nmaster) or t.master_count
|
|
|
|
local ncol = tonumber(termfair.center.ncol) or t.column_count
|
2017-01-17 19:13:45 +01:00
|
|
|
|
|
|
|
if num_x <= 2 then num_x = 2 end
|
|
|
|
if ncol <= 1 then ncol = 1 end
|
|
|
|
|
2017-01-26 19:28:41 +01:00
|
|
|
local width = math.floor(wa.width / num_x)
|
2017-01-25 19:27:49 +01:00
|
|
|
|
2017-01-17 19:13:45 +01:00
|
|
|
if #cls < num_x then
|
|
|
|
-- Less clients than the number of columns, let's center it!
|
2017-01-26 19:28:41 +01:00
|
|
|
local offset_x = wa.x + (wa.width - #cls*width) / 2
|
2017-01-17 19:13:45 +01:00
|
|
|
for i = 1, #cls do
|
2017-01-26 19:28:41 +01:00
|
|
|
local g = { y = wa.y }
|
|
|
|
g.width = width
|
|
|
|
g.height = wa.height
|
2017-01-17 19:13:45 +01:00
|
|
|
if g.width < 1 then g.width = 1 end
|
|
|
|
if g.height < 1 then g.height = 1 end
|
2017-01-26 19:28:41 +01:00
|
|
|
g.x = offset_x + (i - 1) * width
|
|
|
|
p.geometries[cls[i]] = g
|
2017-01-17 19:13:45 +01:00
|
|
|
end
|
|
|
|
else
|
|
|
|
-- More clients than the number of columns, let's arrange it!
|
|
|
|
-- Master client deserves a special treatement
|
|
|
|
local g = {}
|
2017-01-26 19:28:41 +01:00
|
|
|
g.width = wa.width - (num_x - 1)*width
|
|
|
|
g.height = wa.height
|
2017-01-17 19:13:45 +01:00
|
|
|
if g.width < 1 then g.width = 1 end
|
|
|
|
if g.height < 1 then g.height = 1 end
|
2017-01-26 19:28:41 +01:00
|
|
|
g.x = wa.x
|
|
|
|
g.y = wa.y
|
|
|
|
p.geometries[cls[1]] = g
|
2017-01-17 19:13:45 +01:00
|
|
|
|
|
|
|
-- Treat the other clients
|
|
|
|
|
|
|
|
-- Compute distribution of clients among columns
|
2017-01-26 19:28:41 +01:00
|
|
|
local num_y = {}
|
|
|
|
local remaining_clients = #cls-1
|
|
|
|
local ncol_min = math.ceil(remaining_clients/(num_x-1))
|
|
|
|
|
|
|
|
if ncol >= ncol_min then
|
|
|
|
for i = (num_x-1), 1, -1 do
|
|
|
|
if (remaining_clients-i+1) < ncol then
|
|
|
|
num_y[i] = remaining_clients-i + 1
|
|
|
|
else
|
|
|
|
num_y[i] = ncol
|
|
|
|
end
|
|
|
|
remaining_clients = remaining_clients - num_y[i]
|
|
|
|
end
|
|
|
|
else
|
|
|
|
local rem = remaining_clients % (num_x-1)
|
|
|
|
if rem == 0 then
|
|
|
|
for i = 1, num_x-1 do
|
|
|
|
num_y[i] = ncol_min
|
2017-01-17 19:13:45 +01:00
|
|
|
end
|
|
|
|
else
|
2017-01-26 19:28:41 +01:00
|
|
|
for i = 1, num_x-1 do
|
|
|
|
num_y[i] = ncol_min - 1
|
|
|
|
end
|
|
|
|
for i = 0, rem-1 do
|
|
|
|
num_y[num_x-1-i] = num_y[num_x-1-i] + 1
|
2017-01-17 19:13:45 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Compute geometry of the other clients
|
|
|
|
local nclient = 2 -- we start with the 2nd client
|
2017-01-26 19:28:41 +01:00
|
|
|
local wx = g.x + g.width
|
2017-01-17 19:13:45 +01:00
|
|
|
for i = 1, (num_x-1) do
|
2017-01-26 19:28:41 +01:00
|
|
|
local height = math.floor(wa.height / num_y[i])
|
|
|
|
local wy = wa.y
|
2017-01-17 19:13:45 +01:00
|
|
|
for j = 0, (num_y[i]-2) do
|
2017-01-26 19:28:41 +01:00
|
|
|
local g = {}
|
|
|
|
g.x = wx
|
|
|
|
g.y = wy
|
|
|
|
g.height = height
|
|
|
|
g.width = width
|
2017-01-17 19:13:45 +01:00
|
|
|
if g.width < 1 then g.width = 1 end
|
|
|
|
if g.height < 1 then g.height = 1 end
|
2017-01-26 19:28:41 +01:00
|
|
|
p.geometries[cls[nclient]] = g
|
2017-01-17 19:13:45 +01:00
|
|
|
nclient = nclient + 1
|
2017-01-26 19:28:41 +01:00
|
|
|
wy = wy + height
|
2017-01-17 19:13:45 +01:00
|
|
|
end
|
2017-01-26 19:28:41 +01:00
|
|
|
local g = {}
|
|
|
|
g.x = wx
|
|
|
|
g.y = wy
|
|
|
|
g.height = wa.height - (num_y[i] - 1)*height
|
|
|
|
g.width = width
|
2017-01-17 19:13:45 +01:00
|
|
|
if g.width < 1 then g.width = 1 end
|
|
|
|
if g.height < 1 then g.height = 1 end
|
2017-01-26 19:28:41 +01:00
|
|
|
p.geometries[cls[nclient]] = g
|
2017-01-17 19:13:45 +01:00
|
|
|
nclient = nclient + 1
|
2017-01-26 19:28:41 +01:00
|
|
|
wx = wx + width
|
2017-01-17 19:13:45 +01:00
|
|
|
end
|
|
|
|
end
|
2013-09-07 12:06:42 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-01-17 19:13:45 +01:00
|
|
|
function termfair.center.arrange(p)
|
|
|
|
return do_fair(p, "center")
|
|
|
|
end
|
|
|
|
|
|
|
|
function termfair.arrange(p)
|
|
|
|
return do_fair(p, "west")
|
|
|
|
end
|
|
|
|
|
2013-09-07 12:06:42 +02:00
|
|
|
return termfair
|