75 lines
2.0 KiB
Lua
75 lines
2.0 KiB
Lua
local setmetatable = setmetatable
|
|
local beautiful = require( "beautiful" )
|
|
local color = require( "gears.color" )
|
|
local theme = require( "radical.theme" )
|
|
local shape = require( "gears.shape" )
|
|
|
|
local module = {
|
|
margins = {
|
|
TOP = 0,
|
|
BOTTOM = 0,
|
|
RIGHT = 0,
|
|
LEFT = 0
|
|
},
|
|
need_full_repaint = true
|
|
}
|
|
|
|
local function before_draw_children(self, context, cr, width, height)
|
|
cr:save()
|
|
|
|
-- This item style require negative padding, this is a little dangerous to
|
|
-- do as it can corrupt area outside of the widget
|
|
local col = self._item.bg_prefix or beautiful.icon_grad or beautiful.bg_prefix or beautiful.fg_normal
|
|
|
|
cr:translate(-height/2, 0)
|
|
shape.powerline(cr, width, height)
|
|
|
|
cr:reset_clip()
|
|
|
|
if self._item.border_width and self._item.border_color then
|
|
cr:set_line_width(self._item.border_width)
|
|
cr:set_source(color(self._item.border_color))
|
|
cr:stroke_preserve()
|
|
end
|
|
|
|
cr:set_source(color(col))
|
|
cr:fill()
|
|
cr:restore()
|
|
end
|
|
|
|
local function prefix_fit(box,context,w,h)
|
|
local width,height = box._fit(box,context,w,h)
|
|
return width + h/2 + h/6,height
|
|
end
|
|
|
|
local function suffix_fit(box,context,w,h)
|
|
local width,height = box._fit(box,context,w,h)
|
|
return width + h/2 + h/6,height
|
|
end
|
|
|
|
local function draw(item)
|
|
if not item.widget._overlay_init then
|
|
item.widget._overlay_init = true
|
|
end
|
|
|
|
if not item._internal.align._setup then
|
|
item._internal.align._setup = true
|
|
|
|
-- Replace prefix function
|
|
item._internal.align.first._item = item
|
|
item._internal.align.first._fit = item._internal.align.first.fit
|
|
item._internal.align.first.fit = prefix_fit
|
|
item._internal.align.first.before_draw_children = before_draw_children
|
|
|
|
-- Replace suffix function
|
|
item._internal.align.third._item = item
|
|
item._internal.align.third._fit = item._internal.align.third.fit
|
|
item._internal.align.third.fit = suffix_fit
|
|
end
|
|
|
|
theme.update_colors(item)
|
|
end
|
|
|
|
return setmetatable(module, { __call = function(_, ...) return draw(...) end })
|
|
-- kate: space-indent on; indent-width 2; replace-tabs on;
|