2008-11-25 17:01:06 +01:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
-- @author Julien Danjou <julien@danjou.info>
|
|
|
|
-- @copyright 2008 Julien Danjou
|
|
|
|
-- @release @AWESOME_VERSION@
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
-- Grab environment we need
|
|
|
|
local ipairs = ipairs
|
|
|
|
local math = math
|
|
|
|
local tag = require("awful.tag")
|
|
|
|
local capi =
|
|
|
|
{
|
|
|
|
client = client,
|
2014-10-23 01:30:19 +02:00
|
|
|
screen = screen,
|
|
|
|
mouse = mouse,
|
|
|
|
mousegrabber = mousegrabber
|
2008-11-25 17:01:06 +01:00
|
|
|
}
|
|
|
|
local client = require("awful.client")
|
|
|
|
|
|
|
|
--- Magnifier layout module for awful
|
2012-06-14 02:45:17 +02:00
|
|
|
-- awful.layout.suit.magnifier
|
|
|
|
local magnifier = {}
|
2008-11-25 17:01:06 +01:00
|
|
|
|
2014-10-23 01:30:19 +02:00
|
|
|
function magnifier.mouse_resize_handler(c, corner, x, y)
|
|
|
|
capi.mouse.coords({ x = x, y = y })
|
|
|
|
|
|
|
|
local wa = capi.screen[c.screen].workarea
|
|
|
|
local center_x = wa.x + wa.width / 2
|
|
|
|
local center_y = wa.y + wa.height / 2
|
|
|
|
local maxdist_pow = (wa.width^2 + wa.height^2) / 4
|
|
|
|
|
|
|
|
capi.mousegrabber.run(function (_mouse)
|
|
|
|
for k, v in ipairs(_mouse.buttons) do
|
|
|
|
if v then
|
|
|
|
local dx = center_x - _mouse.x
|
|
|
|
local dy = center_y - _mouse.y
|
|
|
|
local dist = dx^2 + dy^2
|
|
|
|
|
|
|
|
-- New master width factor
|
|
|
|
local mwfact = dist / maxdist_pow
|
|
|
|
tag.setmwfact(math.min(math.max(0.01, mwfact), 0.99), tag.selected(c.screen))
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end, corner .. "_corner")
|
|
|
|
end
|
|
|
|
|
2012-06-14 02:45:17 +02:00
|
|
|
function magnifier.arrange(p)
|
2009-09-28 14:41:54 +02:00
|
|
|
-- Fullscreen?
|
2009-02-24 21:50:46 +01:00
|
|
|
local area = p.workarea
|
|
|
|
local cls = p.clients
|
2014-10-13 21:07:31 +02:00
|
|
|
local focus = p.focus or capi.client.focus
|
|
|
|
local t = p.tag or tag.selected(p.screen)
|
|
|
|
local mwfact = tag.getmwfact(t)
|
2009-03-13 22:23:35 +01:00
|
|
|
local fidx
|
2009-03-10 07:56:48 +01:00
|
|
|
|
|
|
|
-- Check that the focused window is on the right screen
|
2009-03-13 22:23:35 +01:00
|
|
|
if focus and focus.screen ~= p.screen then focus = nil end
|
2008-11-25 17:01:06 +01:00
|
|
|
|
|
|
|
if not focus and #cls > 0 then
|
|
|
|
focus = cls[1]
|
2009-03-10 07:56:48 +01:00
|
|
|
fidx = 1
|
2008-11-25 17:01:06 +01:00
|
|
|
end
|
|
|
|
|
2009-09-28 14:41:54 +02:00
|
|
|
-- If focused window is not tiled, take the first one which is tiled.
|
|
|
|
if client.floating.get(focus) then
|
|
|
|
focus = cls[1]
|
|
|
|
fidx = 1
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Abort if no clients are present
|
2009-08-31 10:32:53 +02:00
|
|
|
if not focus then return end
|
|
|
|
|
2008-11-25 17:01:06 +01:00
|
|
|
local geometry = {}
|
2009-03-10 07:56:48 +01:00
|
|
|
if #cls > 1 then
|
2008-11-25 17:01:06 +01:00
|
|
|
geometry.width = area.width * math.sqrt(mwfact)
|
|
|
|
geometry.height = area.height * math.sqrt(mwfact)
|
|
|
|
geometry.x = area.x + (area.width - geometry.width) / 2
|
|
|
|
geometry.y = area.y + (area.height - geometry.height) /2
|
|
|
|
else
|
|
|
|
geometry.x = area.x
|
|
|
|
geometry.y = area.y
|
2008-12-12 00:01:43 +01:00
|
|
|
geometry.width = area.width
|
|
|
|
geometry.height = area.height
|
2008-11-25 17:01:06 +01:00
|
|
|
end
|
2010-05-28 19:43:46 +02:00
|
|
|
|
|
|
|
local g = {
|
|
|
|
x = geometry.x,
|
|
|
|
y = geometry.y,
|
2015-02-15 17:25:11 +01:00
|
|
|
width = geometry.width,
|
|
|
|
height = geometry.height
|
2010-05-28 19:43:46 +02:00
|
|
|
}
|
2015-02-15 17:25:11 +01:00
|
|
|
p.geometries[focus] = g
|
2008-11-25 17:01:06 +01:00
|
|
|
|
2009-03-10 07:56:48 +01:00
|
|
|
if #cls > 1 then
|
2008-11-25 17:01:06 +01:00
|
|
|
geometry.x = area.x
|
|
|
|
geometry.y = area.y
|
|
|
|
geometry.height = area.height / (#cls - 1)
|
|
|
|
geometry.width = area.width
|
|
|
|
|
2014-03-14 22:30:51 +01:00
|
|
|
-- We don't know the focus window index. Try to find it.
|
2009-03-10 07:56:48 +01:00
|
|
|
if not fidx then
|
|
|
|
for k, c in ipairs(cls) do
|
|
|
|
if c == focus then
|
|
|
|
fidx = k
|
|
|
|
break
|
|
|
|
end
|
2008-11-25 17:01:06 +01:00
|
|
|
end
|
|
|
|
end
|
2009-01-21 13:45:39 +01:00
|
|
|
|
|
|
|
-- First move clients that are before focused client.
|
|
|
|
for k = fidx + 1, #cls do
|
2015-02-15 17:25:11 +01:00
|
|
|
p.geometries[cls[k]] = {
|
|
|
|
x = geometry.x,
|
|
|
|
y = geometry.y,
|
|
|
|
width = geometry.width,
|
|
|
|
height = geometry.height
|
|
|
|
}
|
2009-01-21 13:45:39 +01:00
|
|
|
geometry.y = geometry.y + geometry.height
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Then move clients that are after focused client.
|
|
|
|
-- So the next focused window will be the one at the top of the screen.
|
|
|
|
for k = 1, fidx - 1 do
|
2010-05-28 19:43:46 +02:00
|
|
|
local g = {
|
|
|
|
x = geometry.x,
|
|
|
|
y = geometry.y,
|
2015-02-15 17:25:11 +01:00
|
|
|
width = geometry.width,
|
|
|
|
height = geometry.height
|
2010-05-28 19:43:46 +02:00
|
|
|
}
|
2015-02-15 17:25:11 +01:00
|
|
|
p.geometries[cls[k]] = g
|
2009-01-21 13:45:39 +01:00
|
|
|
geometry.y = geometry.y + geometry.height
|
|
|
|
end
|
2008-11-25 17:01:06 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-06-14 02:45:17 +02:00
|
|
|
magnifier.name = "magnifier"
|
|
|
|
|
|
|
|
return magnifier
|