45 lines
1.2 KiB
Lua
45 lines
1.2 KiB
Lua
local setmetatable = setmetatable
|
|
local print = print
|
|
local pairs=pairs
|
|
local base = require( "radical.base" )
|
|
local wibox = require("wibox" )
|
|
|
|
local module = {
|
|
margins = {
|
|
TOP = 2,
|
|
BOTTOM = 2,
|
|
RIGHT = 2,
|
|
LEFT = 4
|
|
}
|
|
}
|
|
|
|
local function widget_draw23(self, context, cr, width, height)
|
|
if wibox.widget.background.draw then
|
|
wibox.widget.background.draw(self, context, cr, width, height)
|
|
end
|
|
end
|
|
|
|
local function draw(item,args)
|
|
local args = args or {}
|
|
|
|
item.widget.draw = widget_draw23
|
|
|
|
local state = item.state or {}
|
|
local current_state = state._current_key or nil
|
|
local state_name = base.colors_by_id[current_state]
|
|
|
|
if current_state == base.item_flags.SELECTED or (item._tmp_menu) then
|
|
item.widget:set_bg(item.bg_focus)
|
|
item.widget:set_fg(item.fg_focus)
|
|
elseif state_name then
|
|
item.widget:set_bg(args.color or item["bg_"..state_name])
|
|
item.widget:set_fg( item["fg_"..state_name])
|
|
else
|
|
item.widget:set_bg(args.color or nil)
|
|
item.widget:set_fg(item["fg"])
|
|
end
|
|
end
|
|
|
|
return setmetatable(module, { __call = function(_, ...) return draw(...) end })
|
|
-- kate: space-indent on; indent-width 2; replace-tabs on;
|