awesome/luadoc/mousegrabber.lua

24 lines
791 B
Lua
Raw Normal View History

--- awesome mousegrabber API
-- @author Julien Danjou <julien@danjou.info>
-- @copyright 2008-2009 Julien Danjou
module("mousegrabber")
--- Grab the mouse pointer and list motions, calling callback function at each
-- motion. The callback function must return a boolean value: true to
-- continue grabbing, false to stop.
-- The function is called with one argument:
-- a table containing modifiers pointer coordinates.
-- @param func A callback function as described above.
-- @param cursor The name of a X cursor to use while grabbing.
-- @name run
-- @class function
--- Stop grabbing the mouse pointer.
-- @name stop
-- @class function
--- Check if the mousegrabber is running.
-- @return A boolean value, true if running, false otherwise.
-- @name isrunning
-- @class function