--------------------------------------------------------------------------- --- Implements EWMH requests handling. -- -- @author Julien Danjou <julien@danjou.info> -- @copyright 2009 Julien Danjou -- @module awful.ewmh --------------------------------------------------------------------------- local client = client local screen = screen local ipairs = ipairs local timer = require("gears.timer") local gtable = require("gears.table") local aclient = require("awful.client") local aplace = require("awful.placement") local asuit = require("awful.layout.suit") local beautiful = require("beautiful") local alayout = require("awful.layout") local atag = require("awful.tag") local ewmh = { generic_activate_filters = {}, contextual_activate_filters = {}, } --- Honor the screen padding when maximizing. -- @beautiful beautiful.maximized_honor_padding -- @tparam[opt=true] boolean maximized_honor_padding --- Hide the border on fullscreen clients. -- @beautiful beautiful.fullscreen_hide_border -- @tparam[opt=true] boolean fullscreen_hide_border --- Hide the border on maximized clients. -- @beautiful beautiful.maximized_hide_border -- @tparam[opt=false] boolean maximized_hide_border --- The list of all registered generic request::activate (focus stealing) -- filters. If a filter is added to only one context, it will be in -- `ewmh.contextual_activate_filters`["context_name"]. -- @table[opt={}] generic_activate_filters -- @see ewmh.activate -- @see ewmh.add_activate_filter -- @see ewmh.remove_activate_filter --- The list of all registered contextual request::activate (focus stealing) -- filters. If a filter is added to only one context, it will be in -- `ewmh.generic_activate_filters`. -- @table[opt={}] contextual_activate_filters -- @see ewmh.activate -- @see ewmh.add_activate_filter -- @see ewmh.remove_activate_filter --- Update a client's settings when its geometry changes, skipping signals -- resulting from calls within. local repair_geometry_lock = false local function repair_geometry(window) if repair_geometry_lock then return end repair_geometry_lock = true -- Re-apply the geometry locking properties to what they should be. for _, prop in ipairs { "fullscreen", "maximized", "maximized_vertical", "maximized_horizontal" } do if window[prop] then window:emit_signal("request::geometry", prop, { store_geometry = false }) break end end repair_geometry_lock = false end --- Activate a window. -- -- This sets the focus only if the client is visible. -- -- It is the default signal handler for `request::activate` on a `client`. -- -- @signalhandler awful.ewmh.activate -- @client c A client to use -- @tparam string context The context where this signal was used. -- @tparam[opt] table hints A table with additional hints: -- @tparam[opt=false] boolean hints.raise should the client be raised? -- @tparam[opt=false] boolean hints.switch_to_tag should the client's first tag -- be selected if none of the client's tags are selected? -- @tparam[opt=false] boolean hints.switch_to_tags Select all tags associated -- with the client. function ewmh.activate(c, context, hints) -- luacheck: no unused args hints = hints or {} if c.focusable == false and not hints.force then if hints.raise then c:raise() end return end local found, ret = false -- Execute the filters until something handle the request for _, tab in ipairs { ewmh.contextual_activate_filters[context] or {}, ewmh.generic_activate_filters } do for i=#tab, 1, -1 do ret = tab[i](c, context, hints) if ret ~= nil then found=true; break end end if found then break end end -- Minimized clients can be requested to have focus by, for example, 3rd -- party toolbars and they might not try to unminimize it first. if ret ~= false and hints.raise then c.minimized = false end if ret ~= false and c:isvisible() then client.focus = c elseif ret == false and not hints.force then return end if hints.raise then c:raise() if not awesome.startup and not c:isvisible() then c.urgent = true end end -- The rules use `switchtotag`. For consistency and code re-use, support it, -- but keep undocumented. --TODO v5 remove switchtotag if hints.switchtotag or hints.switch_to_tag or hints.switch_to_tags then atag.viewmore(c:tags(), c.screen, (not hints.switch_to_tags) and 0 or nil) end end --- Add an activate (focus stealing) filter function. -- -- The callback takes the following parameters: -- -- * **c** (*client*) The client requesting the activation -- * **context** (*string*) The activation context. -- * **hints** (*table*) Some additional hints (depending on the context) -- -- If the callback returns `true`, the client will be activated. If the callback -- returns `false`, the activation request is cancelled unless the `force` hint is -- set. If the callback returns `nil`, the previous callback will be executed. -- This will continue until either a callback handles the request or when it runs -- out of callbacks. In that case, the request will be granted if the client is -- visible. -- -- For example, to block Firefox from stealing the focus, use: -- -- awful.ewmh.add_activate_filter(function(c) -- if c.class == "Firefox" then return false end -- end, "ewmh") -- -- @tparam function f The callback -- @tparam[opt] string context The `request::activate` context -- @see generic_activate_filters -- @see contextual_activate_filters -- @see remove_activate_filter -- @staticfct awful.ewmh.add_activate_filter function ewmh.add_activate_filter(f, context) if not context then table.insert(ewmh.generic_activate_filters, f) else ewmh.contextual_activate_filters[context] = ewmh.contextual_activate_filters[context] or {} table.insert(ewmh.contextual_activate_filters[context], f) end end --- Remove an activate (focus stealing) filter function. -- This is an helper to avoid dealing with `ewmh.add_activate_filter` directly. -- @tparam function f The callback -- @tparam[opt] string context The `request::activate` context -- @treturn boolean If the callback existed -- @see generic_activate_filters -- @see contextual_activate_filters -- @see add_activate_filter -- @staticfct awful.ewmh.remove_activate_filter function ewmh.remove_activate_filter(f, context) local tab = context and (ewmh.contextual_activate_filters[context] or {}) or ewmh.generic_activate_filters for k, v in ipairs(tab) do if v == f then table.remove(tab, k) -- In case the callback is there multiple time. ewmh.remove_activate_filter(f, context) return true end end return false end -- Get tags that are on the same screen as the client. This should _almost_ -- always return the same content as c:tags(). local function get_valid_tags(c, s) local tags, new_tags = c:tags(), {} for _, t in ipairs(tags) do if s == t.screen then table.insert(new_tags, t) end end return new_tags end --- Tag a window with its requested tag. -- -- It is the default signal handler for `request::tag` on a `client`. -- -- @signalhandler awful.ewmh.tag -- @client c A client to tag -- @tparam[opt] tag|boolean t A tag to use. If true, then the client is made sticky. -- @tparam[opt={}] table hints Extra information function ewmh.tag(c, t, hints) --luacheck: no unused -- There is nothing to do if not t and #get_valid_tags(c, c.screen) > 0 then return end if not t then if c.transient_for and not (hints and hints.reason == "screen") then c.screen = c.transient_for.screen if not c.sticky then local tags = c.transient_for:tags() c:tags(#tags > 0 and tags or c.transient_for.screen.selected_tags) end else c:to_selected_tags() end elseif type(t) == "boolean" and t then c.sticky = true else c.screen = t.screen c:tags({ t }) end end --- Handle client urgent request -- @signalhandler awful.ewmh.urgent -- @client c A client -- @tparam boolean urgent If the client should be urgent function ewmh.urgent(c, urgent) if c ~= client.focus and not aclient.property.get(c,"ignore_urgent") then c.urgent = urgent end end -- Map the state to the action name local context_mapper = { maximized_vertical = "maximize_vertically", maximized_horizontal = "maximize_horizontally", maximized = "maximize", fullscreen = "maximize" } --- Move and resize the client. -- -- This is the default geometry request handler. -- -- @signalhandler awful.ewmh.geometry -- @tparam client c The client -- @tparam string context The context -- @tparam[opt={}] table hints The hints to pass to the handler function ewmh.geometry(c, context, hints) local layout = c.screen.selected_tag and c.screen.selected_tag.layout or nil -- Setting the geometry will not work unless the client is floating. if (not c.floating) and (not layout == asuit.floating) then return end context = context or "" local original_context = context -- Now, map it to something useful context = context_mapper[context] or context local props = gtable.clone(hints or {}, false) props.store_geometry = props.store_geometry==nil and true or props.store_geometry -- If it is a known placement function, then apply it, otherwise let -- other potential handler resize the client (like in-layout resize or -- floating client resize) if aplace[context] then -- Check if it corresponds to a boolean property. local state = c[original_context] -- If the property is boolean and it corresponds to the undo operation, -- restore the stored geometry. if state == false then local original = repair_geometry_lock repair_geometry_lock = true aplace.restore(c, {context=context}) repair_geometry_lock = original return end local honor_default = original_context ~= "fullscreen" if props.honor_workarea == nil then props.honor_workarea = honor_default end if props.honor_padding == nil and props.honor_workarea and context:match("maximize") then props.honor_padding = beautiful.maximized_honor_padding ~= false end if (original_context == "fullscreen" and beautiful.fullscreen_hide_border ~= false) or (original_context == "maximized" and beautiful.maximized_hide_border == true) then props.ignore_border_width = true props.zap_border_width = true end local original = repair_geometry_lock repair_geometry_lock = true aplace[context](c, props) repair_geometry_lock = original end end --- Merge the 2 requests sent by clients wanting to be maximized. -- -- The X clients set 2 flags (atoms) when they want to be maximized. This caused -- 2 request::geometry to be sent. This code gives some time for them to arrive -- and send a new `request::geometry` (through the property change) with the -- combined state. -- -- @signalhandler awful.ewmh.merge_maximization -- @tparam client c The client -- @tparam string context The context -- @tparam[opt={}] table hints The hints to pass to the handler function ewmh.merge_maximization(c, context, hints) if context ~= "client_maximize_horizontal" and context ~= "client_maximize_vertical" then return end if not c._delay_maximization then c._delay_maximization = function() -- Computes the actual X11 atoms before/after local before_max_h = c.maximized or c.maximized_horizontal local before_max_v = c.maximized or c.maximized_vertical local after_max_h, after_max_v if c._delayed_max_h ~= nil then after_max_h = c._delayed_max_h else after_max_h = before_max_h end if c._delayed_max_v ~= nil then after_max_v = c._delayed_max_v else after_max_v = before_max_v end -- Interprets the client's intention based on the client's view if after_max_h and after_max_v then c.maximized = true elseif before_max_h and before_max_v then -- At this point, c.maximized must be true, and the client is -- trying to unmaximize the window, and potentially partial -- maximized the window c.maximized = false if after_max_h ~= after_max_v then c.maximized_horizontal = after_max_h c.maximized_vertical = after_max_v end else -- At this point, c.maximized must be false, and the client is -- not trying to fully maximize the window c.maximized_horizontal = after_max_h c.maximized_vertical = after_max_v end end timer { timeout = 1/60, autostart = true, single_shot = true, callback = function() if not c.valid then return end c._delay_maximization(c) c._delay_maximization = nil c._delayed_max_h = nil c._delayed_max_v = nil end } end local function get_value(suffix, long_suffix) if hints.toggle and c["_delayed_max_"..suffix] ~= nil then return not c["_delayed_max_"..suffix] elseif hints.toggle then return not (c["maximized"] or c["maximized_"..long_suffix]) else return hints.status end end if context == "client_maximize_horizontal" then c._delayed_max_h = get_value("h", "horizontal") elseif context == "client_maximize_vertical" then c._delayed_max_v = get_value("v", "vertical") end end --- Allow the client to move itself. -- -- This is the default geometry request handler when the context is `ewmh`. -- -- @signalhandler awful.ewmh.client_geometry_requests -- @tparam client c The client -- @tparam string context The context -- @tparam[opt={}] table hints The hints to pass to the handler function ewmh.client_geometry_requests(c, context, hints) if context == "ewmh" and hints then if c.immobilized_horizontal then hints = gtable.clone(hints) hints.x = nil hints.width = nil end if c.immobilized_vertical then hints = gtable.clone(hints) hints.y = nil hints.height = nil end c:geometry(hints) end end -- The magnifier layout doesn't work with focus follow mouse. ewmh.add_activate_filter(function(c) if alayout.get(c.screen) ~= alayout.suit.magnifier and aclient.focus.filter(c) then return nil else return false end end, "mouse_enter") client.connect_signal("request::activate", ewmh.activate) client.connect_signal("request::tag", ewmh.tag) client.connect_signal("request::urgent", ewmh.urgent) client.connect_signal("request::geometry", ewmh.geometry) client.connect_signal("request::geometry", ewmh.merge_maximization) client.connect_signal("request::geometry", ewmh.client_geometry_requests) client.connect_signal("property::border_width", repair_geometry) client.connect_signal("property::screen", repair_geometry) screen.connect_signal("property::workarea", function(s) for _, c in pairs(client.get(s)) do repair_geometry(c) end end) return ewmh -- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80