2 -- @author Julien Danjou <julien@danjou.info>
3 -- @copyright 2008-2009 Julien Danjou
7 -- @field screen Screen number.
8 -- @field client The client attached to (titlebar only).
9 -- @field border_width Border width.
10 -- @field border_color Border color.
11 -- @field align The alignment (titlebar only).
12 -- @field fg Foreground color.
13 -- @field bg Background color.
14 -- @field bg_image Background image.
15 -- @field position The position (titlebar only).
16 -- @field ontop On top of other windows.
17 -- @field cursor The mouse cursor.
18 -- @field visible Visibility.
19 -- @field orientation The drawing orientation: east, north or south.
20 -- @field widgets A table with all widgets drawn on this wibox.
21 -- @field opacity The opacity of the wibox, between 0 and 1.
22 -- @field x The x coordinates.
23 -- @field y The y coordinates.
24 -- @field width The width of the wibox.
25 -- @field height The height of the wibox.
26 -- @field shape_bounding Image describing the window's border shape.
27 -- @field shape_clip Image describing the window's content shape.
31 --- Get or set mouse buttons bindings to a wibox.
32 -- @param buttons_table A table of buttons objects, or nothing.
36 --- Get or set wibox struts.
37 -- @param strut A table with new strut, or nothing
38 -- @return The wibox strut in a table.
42 --- Get or set wibox geometry. That's the same as accessing or setting the x, y, width or height
43 -- properties of a wibox.
44 -- @param A table with coordinates to modify.
45 -- @return A table with wibox coordinates and geometry.
50 -- @param name A signal name.
51 -- @param func A function to call when the signal is emited.
56 -- @param name A signal name.
57 -- @param func A function to remove.
58 -- @name remove_signal
62 -- @param name A signal name.
63 -- @param ... Various arguments, optional.