naughty.list.actions: Update the property documentation.
This commit is contained in:
parent
eb21c24acb
commit
51a1d387e5
|
@ -24,6 +24,7 @@
|
||||||
-- @author Emmanuel Lepage Vallee <elv1313@gmail.com>
|
-- @author Emmanuel Lepage Vallee <elv1313@gmail.com>
|
||||||
-- @copyright 2017 Emmanuel Lepage Vallee
|
-- @copyright 2017 Emmanuel Lepage Vallee
|
||||||
-- @widgetmod naughty.list.actions
|
-- @widgetmod naughty.list.actions
|
||||||
|
-- @supermodule wibox.widget.base
|
||||||
-- @see awful.widget.common
|
-- @see awful.widget.common
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -188,7 +189,7 @@ local actionlist = {}
|
||||||
|
|
||||||
--- The actionlist parent notification.
|
--- The actionlist parent notification.
|
||||||
-- @property notification
|
-- @property notification
|
||||||
-- @tparam naughty.notification notification
|
-- @tparam[opt=nil] naughty.notification|nil notification
|
||||||
-- @propemits true false
|
-- @propemits true false
|
||||||
-- @see naughty.notification
|
-- @see naughty.notification
|
||||||
|
|
||||||
|
@ -196,18 +197,33 @@ local actionlist = {}
|
||||||
-- If no layout is specified, a `wibox.layout.fixed.horizontal` will be created
|
-- If no layout is specified, a `wibox.layout.fixed.horizontal` will be created
|
||||||
-- automatically.
|
-- automatically.
|
||||||
-- @property base_layout
|
-- @property base_layout
|
||||||
-- @tparam widget base_layout
|
-- @tparam[opt=wibox.layout.fixed.horizontal] widget base_layout
|
||||||
-- @propemits true false
|
-- @propemits true false
|
||||||
-- @see wibox.layout.fixed.horizontal
|
-- @see wibox.layout.fixed.horizontal
|
||||||
|
|
||||||
--- The actionlist parent notification.
|
--- The actionlist parent notification.
|
||||||
-- @property widget_template
|
-- @property widget_template
|
||||||
-- @tparam table widget_template
|
-- @tparam[opt=nil] template|nil widget_template
|
||||||
-- @propemits true false
|
-- @propemits true false
|
||||||
|
|
||||||
--- A table with values to override each `beautiful.notification_action` values.
|
--- A table with values to override each `beautiful.notification_action` values.
|
||||||
-- @property style
|
-- @property style
|
||||||
-- @tparam table style
|
-- @tparam[opt={}] table|nil style
|
||||||
|
-- @tparam boolean|nil style.underline_normal
|
||||||
|
-- @tparam boolean|nil style.underline_selected
|
||||||
|
-- @tparam shape|nil style.shape_normal
|
||||||
|
-- @tparam shape|nil style.shape_selected
|
||||||
|
-- @tparam gears.color|string|nil style.shape_border_color_normal
|
||||||
|
-- @tparam gears.color|string|nil style.shape_border_color_selected
|
||||||
|
-- @tparam number|nil style.shape_border_width_normal
|
||||||
|
-- @tparam number|nil style.shape_border_width_selected
|
||||||
|
-- @tparam number|nil style.icon_size
|
||||||
|
-- @tparam color|string|nil style.bg_normal
|
||||||
|
-- @tparam color|string|nil style.bg_selected
|
||||||
|
-- @tparam color|string|nil style.fg_normal
|
||||||
|
-- @tparam color|string|nil style.fg_selected
|
||||||
|
-- @tparam surface|string|nil style.bgimage_normal
|
||||||
|
-- @tparam surface|string|nil style.bgimage_selected
|
||||||
-- @propemits true false
|
-- @propemits true false
|
||||||
-- @usebeautiful beautiful.font Fallback when the `font` property isn't set.
|
-- @usebeautiful beautiful.font Fallback when the `font` property isn't set.
|
||||||
-- @usebeautiful beautiful.notification_action_underline_normal Fallback.
|
-- @usebeautiful beautiful.notification_action_underline_normal Fallback.
|
||||||
|
@ -349,8 +365,6 @@ local function new(_, args)
|
||||||
return wdg
|
return wdg
|
||||||
end
|
end
|
||||||
|
|
||||||
--@DOC_widget_COMMON@
|
|
||||||
|
|
||||||
--@DOC_object_COMMON@
|
--@DOC_object_COMMON@
|
||||||
|
|
||||||
return setmetatable(module, {__call = new})
|
return setmetatable(module, {__call = new})
|
||||||
|
|
Loading…
Reference in New Issue