screen: move the tagging on screen change to Lua
[awesome.git] / luadoc / mouse.lua
blob6d35ef53d3399bdcb3885eff45cae13e5f9b0964
1 --- awesome mouse API
2 -- @author Julien Danjou <julien@danjou.info>
3 -- @copyright 2008-2009 Julien Danjou
4 module("mouse")
6 --- Mouse library.
7 -- @field coords Mouse coordinates.
8 -- @field screen Mouse screen number.
9 -- @class table
10 -- @name mouse
12 --- Get or set the mouse coords.
13 -- @param coords_table None or a table with x and y keys as mouse coordinates.
14 -- @return A table with mouse coordinates.
15 -- @name coords
16 -- @class function
18 --- Get the client or any object which is under the pointer.
19 -- @param -
20 -- @return A client or nil.
21 -- @name object_under_pointer
22 -- @class function