Merge pull request #2938 from Aire-One/doc_fix_wibox.widget_signals_params
Fix missing `self` parameter from signals.
This commit is contained in:
commit
f8894de1c3
|
@ -88,6 +88,7 @@
|
||||||
|
|
||||||
--- When a mouse button is pressed over the widget.
|
--- When a mouse button is pressed over the widget.
|
||||||
-- @signal button::press
|
-- @signal button::press
|
||||||
|
-- @tparam table self The current object instance itself.
|
||||||
-- @tparam number lx The horizontal position relative to the (0,0) position in
|
-- @tparam number lx The horizontal position relative to the (0,0) position in
|
||||||
-- the widget.
|
-- the widget.
|
||||||
-- @tparam number ly The vertical position relative to the (0,0) position in the
|
-- @tparam number ly The vertical position relative to the (0,0) position in the
|
||||||
|
@ -118,6 +119,7 @@
|
||||||
|
|
||||||
--- When a mouse button is released over the widget.
|
--- When a mouse button is released over the widget.
|
||||||
-- @signal button::release
|
-- @signal button::release
|
||||||
|
-- @tparam table self The current object instance itself.
|
||||||
-- @tparam number lx The horizontal position relative to the (0,0) position in
|
-- @tparam number lx The horizontal position relative to the (0,0) position in
|
||||||
-- the widget.
|
-- the widget.
|
||||||
-- @tparam number ly The vertical position relative to the (0,0) position in the
|
-- @tparam number ly The vertical position relative to the (0,0) position in the
|
||||||
|
@ -148,6 +150,7 @@
|
||||||
|
|
||||||
--- When the mouse enter a widget.
|
--- When the mouse enter a widget.
|
||||||
-- @signal mouse::enter
|
-- @signal mouse::enter
|
||||||
|
-- @tparam table self The current object instance itself.
|
||||||
-- @tparam table find_widgets_result The entry from the result of
|
-- @tparam table find_widgets_result The entry from the result of
|
||||||
-- @{wibox.drawable:find_widgets} for the position that the mouse hit.
|
-- @{wibox.drawable:find_widgets} for the position that the mouse hit.
|
||||||
-- @tparam wibox.drawable find_widgets_result.drawable The drawable containing
|
-- @tparam wibox.drawable find_widgets_result.drawable The drawable containing
|
||||||
|
@ -172,6 +175,7 @@
|
||||||
|
|
||||||
--- When the mouse leave a widget.
|
--- When the mouse leave a widget.
|
||||||
-- @signal mouse::leave
|
-- @signal mouse::leave
|
||||||
|
-- @tparam table self The current object instance itself.
|
||||||
-- @tparam table find_widgets_result The entry from the result of
|
-- @tparam table find_widgets_result The entry from the result of
|
||||||
-- @{wibox.drawable:find_widgets} for the position that the mouse hit.
|
-- @{wibox.drawable:find_widgets} for the position that the mouse hit.
|
||||||
-- @tparam wibox.drawable find_widgets_result.drawable The drawable containing
|
-- @tparam wibox.drawable find_widgets_result.drawable The drawable containing
|
||||||
|
|
Loading…
Reference in New Issue