42 lines
1.5 KiB
Lua
42 lines
1.5 KiB
Lua
---------------------------------------------------------------------------
|
|
-- @author Julien Danjou <julien@danjou.info>
|
|
-- @copyright 2009 Julien Danjou
|
|
-- @release @AWESOME_VERSION@
|
|
---------------------------------------------------------------------------
|
|
|
|
-- Grab environment we need
|
|
local setmetatable = setmetatable
|
|
local ipairs = ipairs
|
|
local unpack = unpack
|
|
local capi = { button = button }
|
|
local util = require("awful.util")
|
|
|
|
--- Button helper for awful
|
|
module("awful.button")
|
|
|
|
--- Modifiers to ignore
|
|
ignore_modifiers = { "Lock", "Mod2" }
|
|
|
|
--- Create a new button to use as binding.
|
|
-- This function is useful to create several buttons from one, because it will use
|
|
-- the ignore_modifier variable to create more button with or without the ignored
|
|
-- modifiers activated.
|
|
-- For example if you want to ignore CapsLock in your buttonbinding (which is
|
|
-- ignored by default by this function), creatina button binding with this function
|
|
-- will return 2 button objects: one with CapsLock on, and the other one with
|
|
-- CapsLock off.
|
|
-- @see capi.button
|
|
-- @return A table with one or several button objects.
|
|
function new(mod, ...)
|
|
local ret = {}
|
|
local subsets = util.subsets(ignore_modifiers)
|
|
for _, set in ipairs(subsets) do
|
|
ret[#ret + 1] = capi.button(util.table.join(mod, set), unpack(arg))
|
|
end
|
|
return ret
|
|
end
|
|
|
|
setmetatable(_M, { __call = function(_, ...) return new(unpack(arg)) end })
|
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|