mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
resize: restore the fleur cursor and add a beautiful option (#957)
Fixes #956
This commit is contained in:
parent
6f1df7a3ad
commit
d4dc579105
1 changed files with 20 additions and 1 deletions
|
@ -12,6 +12,7 @@
|
|||
|
||||
local aplace = require("awful.placement")
|
||||
local capi = {mousegrabber = mousegrabber}
|
||||
local beautiful = require("beautiful")
|
||||
|
||||
local module = {}
|
||||
|
||||
|
@ -19,6 +20,19 @@ local mode = "live"
|
|||
local req = "request::geometry"
|
||||
local callbacks = {enter={}, move={}, leave={}}
|
||||
|
||||
local cursors = {
|
||||
["mouse.resize"] = "fleur",
|
||||
["mouse.move" ] = "cross"
|
||||
}
|
||||
|
||||
--- The resize cursor name.
|
||||
-- @beautiful beautiful.cursor_mouse_resize
|
||||
-- @tparam[opt=fleur] string cursor
|
||||
|
||||
--- The move cursor name.
|
||||
-- @beautiful beautiful.cursor_mouse_move
|
||||
-- @tparam[opt=cross] string cursor
|
||||
|
||||
--- Set the resize mode.
|
||||
-- The available modes are:
|
||||
--
|
||||
|
@ -122,6 +136,11 @@ local function handler(_, client, context, args) --luacheck: no unused_args
|
|||
|
||||
geo = nil
|
||||
|
||||
-- Select the cursor
|
||||
local tcontext = context:gsub('[.]', '_')
|
||||
|
||||
local cursor = beautiful["cursor_"..tcontext] or cursors[context] or "cross"
|
||||
|
||||
-- Execute the placement function and use request::geometry
|
||||
capi.mousegrabber.run(function (_mouse)
|
||||
if not client.valid then return end
|
||||
|
@ -193,7 +212,7 @@ local function handler(_, client, context, args) --luacheck: no unused_args
|
|||
client:emit_signal( req, context, geo)
|
||||
|
||||
return false
|
||||
end, "cross")
|
||||
end, cursor)
|
||||
end
|
||||
|
||||
return setmetatable(module, {__call=handler})
|
||||
|
|
Loading…
Reference in a new issue