luadoc: remove module name from functions in client.lua

Signed-off-by: koniu <gkusnierz@gmail.com>
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
koniu 2009-09-02 09:46:57 +01:00 committed by Julien Danjou
parent 4643de7f30
commit 06f4a30d5a
1 changed files with 16 additions and 16 deletions

View File

@ -47,89 +47,89 @@ module("client")
--- Get all clients into a table. --- Get all clients into a table.
-- @param screen An optional screen number. -- @param screen An optional screen number.
-- @return A table with all clients. -- @return A table with all clients.
-- @name client.get -- @name get
-- @class function -- @class function
--- Check if a client is visible on its screen. --- Check if a client is visible on its screen.
-- @param - -- @param -
-- @return A boolean value, true if the client is visible, false otherwise. -- @return A boolean value, true if the client is visible, false otherwise.
-- @name client.isvisible -- @name isvisible
-- @class function -- @class function
--- Return client geometry. --- Return client geometry.
-- @param arg1 A table with new coordinates, or none. -- @param arg1 A table with new coordinates, or none.
-- @return A table with client coordinates. -- @return A table with client coordinates.
-- @name client.geometry -- @name geometry
-- @class function -- @class function
--- Return client struts (reserved space at the edge of the screen). --- Return client struts (reserved space at the edge of the screen).
-- @param struts A table with new strut values, or none. -- @param struts A table with new strut values, or none.
-- @return A table with strut values. -- @return A table with strut values.
-- @name client.struts -- @name struts
-- @class function -- @class function
--- Get or set mouse buttons bindings for a client. --- Get or set mouse buttons bindings for a client.
-- @param buttons_table An array of mouse button bindings objects, or nothing. -- @param buttons_table An array of mouse button bindings objects, or nothing.
-- @return A table with all buttons. -- @return A table with all buttons.
-- @name client.buttons -- @name buttons
-- @class function -- @class function
--- Get or set keys bindings for a client. --- Get or set keys bindings for a client.
-- @param keys_table An array of key bindings objects, or nothing. -- @param keys_table An array of key bindings objects, or nothing.
-- @return A table with all keys. -- @return A table with all keys.
-- @name client.keys -- @name keys
-- @class function -- @class function
--- Access or set the client tags. --- Access or set the client tags.
-- @param tags_table A table with tags to set, or none to get the current tags table. -- @param tags_table A table with tags to set, or none to get the current tags table.
-- @return A table with all tags. -- @return A table with all tags.
-- @name client.tags -- @name tags
-- @class function -- @class function
--- Kill a client. --- Kill a client.
-- @param - -- @param -
-- @name client.kill -- @name kill
-- @class function -- @class function
--- Swap a client with another one in global client list. --- Swap a client with another one in global client list.
-- @param c A client to swap with. -- @param c A client to swap with.
-- @name client.swap -- @name swap
-- @class function -- @class function
--- Raise a client on top of others which are on the same layer. --- Raise a client on top of others which are on the same layer.
-- @param - -- @param -
-- @name client.raise -- @name raise
-- @class function -- @class function
--- Lower a client on bottom of others which are on the same layer. --- Lower a client on bottom of others which are on the same layer.
-- @param - -- @param -
-- @name client.lower -- @name lower
-- @class function -- @class function
--- Redraw a client by unmapping and mapping it quickly. --- Redraw a client by unmapping and mapping it quickly.
-- @param - -- @param -
-- @name client.redraw -- @name redraw
-- @class function -- @class function
--- Stop managing a client. --- Stop managing a client.
-- @param - -- @param -
-- @name client.unmanage -- @name unmanage
-- @class function -- @class function
--- Add a signal. --- Add a signal.
-- @param name A signal name. -- @param name A signal name.
-- @param func A function to call when the signal is emitted. -- @param func A function to call when the signal is emitted.
-- @name client.add_signal -- @name add_signal
-- @class function -- @class function
--- Remove a signal. --- Remove a signal.
-- @param name A signal name. -- @param name A signal name.
-- @param func A function to remove. -- @param func A function to remove.
-- @name client.remove_signal -- @name remove_signal
-- @class function -- @class function
--- Emit a signal. --- Emit a signal.
-- @param name A signal name. -- @param name A signal name.
-- @param ... Various arguments, optional. -- @param ... Various arguments, optional.
-- @name client.emit_signal -- @name emit_signal
-- @class function -- @class function