2 -- @author Julien Danjou <julien@danjou.info>
3 -- @copyright 2008-2009 Julien Danjou
7 -- @field visible The widget visibility.
8 -- @field type The widget type. Can only be set using constructor. Type can be either textbox,
9 -- imagebox or systray.
13 --- Set the widget buttons. It will receive a press or release event when of this buttons is
15 -- @param buttons_table A table with buttons, or nil if you do not want to modify it.
16 -- @return A table with buttons the widget is listening to.
20 --- Get the widget extents, i.e., the size the widgets needs to be drawn.
22 -- @return A table with x, y, width and height.
27 -- @field text The text to display.
28 -- @field width The width of the textbox. Set to 0 for auto.
29 -- @field wrap The wrap mode: word, char, word_char.
30 -- @field ellipsize The ellipsize mode: start, middle or end.
31 -- @field border_width The border width to draw around.
32 -- @field border_color The border color.
33 -- @field align Text alignment, left, center or right.
34 -- @field margin Method to pass text margin: a table with top, left, right and bottom keys.
35 -- @field bg Background color.
36 -- @field bg_image Background image.
37 -- @field bg_align Background image alignment, left, center, right, bottom, top or middle
38 -- @field bg_resize Background resize.
43 -- @field image The image to display.
44 -- @field bg The background color to use.
53 -- @param name A signal name.
54 -- @param func A function to call when the signal is emitted.
59 -- @param name A signal name.
60 -- @param func A function to remove.
61 -- @name remove_signal
65 -- @param name A signal name.
66 -- @param ... Various arguments, optional.