From 56c15da3071dcac26ab711a56bceb53c760d45df Mon Sep 17 00:00:00 2001 From: dodo Date: Mon, 30 Apr 2012 17:44:58 +0200 Subject: [PATCH] awful.keygrabber: capi.keygrabber stack Signed-off-by: Uli Schlachter --- lib/awful/init.lua.in | 1 + lib/awful/keygrabber.lua.in | 87 +++++++++++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+) create mode 100644 lib/awful/keygrabber.lua.in diff --git a/lib/awful/init.lua.in b/lib/awful/init.lua.in index 2311447e..6c328bda 100644 --- a/lib/awful/init.lua.in +++ b/lib/awful/init.lua.in @@ -13,6 +13,7 @@ require("awful.screen") require("awful.tag") require("awful.util") require("awful.widget") +require("awful.keygrabber") require("awful.menu") require("awful.mouse") require("awful.remote") diff --git a/lib/awful/keygrabber.lua.in b/lib/awful/keygrabber.lua.in new file mode 100644 index 00000000..6ee604fa --- /dev/null +++ b/lib/awful/keygrabber.lua.in @@ -0,0 +1,87 @@ +--------------------------------------------------------------------------- +-- @author dodo +-- @copyright 2012 dodo +-- @release @AWESOME_VERSION@ +--------------------------------------------------------------------------- + +local ipairs = ipairs +local table = table +local capi = { + keygrabber = keygrabber } + +--- Keygrabber Stack +module("awful.keygrabber") + +-- Private data +local grabbers = {} +local keygrabbing = false + + +local function grabber(mod, key, event) + for i, g in ipairs(grabbers) do + -- continue if the grabber explicitly returns false + if g(mod, key, event) ~= false then + break + end + end +end + +--- Stop grabbing the keyboard for the provided callback. +-- When no callback is given, the least grabber gets removed (last one added to the stack). +-- @param g The key grabber that must be removed. +function stop(g) + for i, v in ipairs(grabbers) do + if v == g then + table.remove(grabbers, i) + break + end + end + -- stop the global key grabber if the last grabber disappears from stack + if #grabbers == 0 then + keygrabbing = false + capi.keygrabber.stop() + end +end + +--- +-- Grab keyboard and read pressed keys, calling the least callback function from +-- stack at each key press, until stack is empty.
+-- Calling run with the same callback again will bring the callback +-- to the top of the stack.

+-- The callback function is passed three arguments:
+-- a table containing modifiers keys, a string with the key pressed and a +-- string with either "press" or "release" to indicate the event type.

+-- A callback can return false to pass the events to the next key grabber in the stack. +-- @param g The key grabber callback that will get the key events until it will be deleted or a new grabber is added. +-- @return the given callback `g` +-- @usage Following function can be bound to a key, and used to resize a client +-- using keyboard. +--

+-- function resize(c)
+-- local grabber = awful.keygrabber.run(function(mod, key, event)
+-- if event == "release" then return end

+-- +-- if key == 'Up' then awful.client.moveresize(0, 0, 0, 5, c)
+-- elseif key == 'Down' then awful.client.moveresize(0, 0, 0, -5, c)
+-- elseif key == 'Right' then awful.client.moveresize(0, 0, 5, 0, c)
+-- elseif key == 'Left' then awful.client.moveresize(0, 0, -5, 0, c)
+-- else awful.keygrabber.stop(grabber)
+-- end

+-- +-- end)
+-- end
+--

+function run(g) + -- Remove the grabber if its in stack + stop(g) + -- Record the grabber has latest added + table.insert(grabbers, 1, g) + -- start the keygrabber if its not running already + if not keygrabbing then + keygrabbing = true + capi.keygrabber.run(grabber) + end + return g +end + +-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80