--------------------------------------------------------------------------- -- @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, screen = screen, mouse = mouse, mousegrabber = mousegrabber } local client = require("awful.client") --- Magnifier layout module for awful -- awful.layout.suit.magnifier local magnifier = {} 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 function magnifier.arrange(p) -- Fullscreen? local area = p.workarea local cls = p.clients local focus = p.focus or capi.client.focus local t = p.tag or tag.selected(p.screen) local mwfact = tag.getmwfact(t) local fidx -- Check that the focused window is on the right screen if focus and focus.screen ~= p.screen then focus = nil end if not focus and #cls > 0 then focus = cls[1] fidx = 1 end -- 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 if not focus then return end local geometry = {} if #cls > 1 then 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 geometry.width = area.width geometry.height = area.height end local g = { x = geometry.x, y = geometry.y, width = geometry.width, height = geometry.height } p.geometries[focus] = g if #cls > 1 then geometry.x = area.x geometry.y = area.y geometry.height = area.height / (#cls - 1) geometry.width = area.width -- We don't know the focus window index. Try to find it. if not fidx then for k, c in ipairs(cls) do if c == focus then fidx = k break end end end -- First move clients that are before focused client. for k = fidx + 1, #cls do p.geometries[cls[k]] = { x = geometry.x, y = geometry.y, width = geometry.width, height = geometry.height } 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 local g = { x = geometry.x, y = geometry.y, width = geometry.width, height = geometry.height } p.geometries[cls[k]] = g geometry.y = geometry.y + geometry.height end end end magnifier.name = "magnifier" return magnifier