awesome/widget/material/list-item.lua

187 lines
4.8 KiB
Lua

-- Default widget requirements
local base = require('wibox.widget.base')
local gtable = require('gears.table')
local setmetatable = setmetatable
local dpi = require('beautiful').xresources.apply_dpi
-- Commons requirements
local wibox = require('wibox')
local clickable_container = require('widget.material.clickable-container')
-- Local declarations
local mat_list_item = {
mt = {}
}
function mat_list_item:build_separator()
self._private.separator = wibox.widget {
orientation = 'horizontal',
forced_height = 1,
opacity = 0.08,
widget = wibox.widget.separator
}
self:emit_signal('widget::layout_changed')
end
function mat_list_item:build_clickable_container()
self._private.clickable_container = wibox.widget {
wibox.widget {
widget = wibox.widget.textbox
},
widget = clickable_container
}
self:emit_signal('widget::layout_changed')
end
function mat_list_item:layout(_, width, height)
local content_width = width - dpi(32)
local content_x = dpi(dpi(16))
local layout = {}
-- Add divider if present
if self._private.divider then
table.insert(layout, base.place_widget_at(self._private.separator, 0, 0, width, 1))
end
-- Add clickable_container if clickable
if self._private.clickable then
table.insert(layout, base.place_widget_at(self._private.clickable_container, 0, 0, width, height))
end
if self._private.prefix then
content_x = content_x + dpi(54)
content_width = content_width - dpi(54)
table.insert(layout, base.place_widget_at(self._private.prefix, dpi(16), 0, dpi(48), height))
end
if self._private.suffix then
content_width = content_width - dpi(54)
table.insert(layout, base.place_widget_at(self._private.suffix, width - dpi(40), dpi(12), width, height))
end
table.insert(layout, base.place_widget_at(self._private.content, content_x, 0, content_width, height))
return layout
end
function mat_list_item:fit(_, width)
return width, dpi(48)
end
---- Properties ----
-- Property clickable
function mat_list_item:set_clickable(value)
if self._private.clickable ~= value then
self._private.clickable = value
self:emit_signal('property::clickable')
self:emit_signal('widget::layout_changed')
if self._private.clickable and not self._private.clickable_container then
self:build_clickable_container()
end
end
end
function mat_list_item:get_clickable()
return self._private.clickable
end
-- Property divider
function mat_list_item:set_divider(value)
if self._private.divider ~= value then
self._private.divider = value
self:emit_signal('property::divider')
self:emit_signal('widget::layout_changed')
if self._private.divider and not self._private.separator then
self:build_separator()
end
end
end
function mat_list_item:get_divider()
return self._private.divider
end
function mat_list_item:set_prefix(widget)
if widget then
base.check_widget(widget)
end
self._private.prefix = widget
self:emit_signal('widget::layout_changed')
end
function mat_list_item:get_prefix()
return self._private.prefix
end
function mat_list_item:set_suffix(widget)
if widget then
base.check_widget(widget)
end
self._private.suffix = widget
self:emit_signal('widget::layout_changed')
end
function mat_list_item:get_suffix()
return self._private.suffix
end
--- The widget who will be the content.
-- @property content
-- @tparam widget widget The widget
function mat_list_item:set_content(widget)
if widget then
base.check_widget(widget)
end
self._private.content = widget
self:emit_signal('widget::layout_changed')
end
function mat_list_item:get_content()
return self._private.content
end
-- Get the number of children element
-- @treturn table The children
function mat_list_item:get_children()
return {self._private.widget}
end
-- Replace the layout children
-- This layout only accept one children, all others will be ignored
-- @tparam table children A table composed of valid widgets
function mat_list_item:set_children(children)
if not children[2] then
self:set_content(children[1])
else
self:set_prefix(children[1])
self:set_content(children[2])
end
if children[3] then
self:set_suffix(children[3])
end
end
local function new(widget)
local ret = base.make_widget(nil, nil, {
enable_properties = true
})
gtable.crush(ret, mat_list_item, true)
ret._private.content = widget
return ret
end
function mat_list_item.mt:__call(...)
return new(...)
end
-- @DOC_widget_COMMON@
-- @DOC_object_COMMON@
return setmetatable(mat_list_item, mat_list_item.mt)