2014-01-13 06:46:33 +01:00
|
|
|
local setmetatable = setmetatable
|
2014-01-23 05:58:50 +01:00
|
|
|
local base = require( "radical.base" )
|
|
|
|
local beautiful = require("beautiful" )
|
|
|
|
local color = require("gears.color" )
|
|
|
|
local cairo = require("lgi" ).cairo
|
|
|
|
local wibox = require("wibox" )
|
|
|
|
local arrow_alt = require("radical.item_style.arrow_alt")
|
2014-01-13 06:46:33 +01:00
|
|
|
|
|
|
|
local module = {
|
|
|
|
margins = {
|
2014-01-16 06:25:50 +01:00
|
|
|
TOP = 0,
|
|
|
|
BOTTOM = 0,
|
2014-01-23 05:58:50 +01:00
|
|
|
RIGHT = 0,
|
|
|
|
LEFT = 0
|
2014-01-13 06:46:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
local function prefix_draw(self, w, cr, width, height)
|
|
|
|
cr:save()
|
2014-01-23 05:58:50 +01:00
|
|
|
cr:set_source(color(beautiful.icon_grad or beautiful.fg_normal))
|
|
|
|
cr:rectangle(0,0,width-height/2-2-height/6,height)
|
2014-01-13 06:46:33 +01:00
|
|
|
cr:fill()
|
2014-01-23 05:58:50 +01:00
|
|
|
cr:set_source_surface(arrow_alt.get_beg_arrow({width=height/2+2,height=height,bg_color=beautiful.icon_grad or beautiful.fg_normal}),width-height/2-2 - height/6,0)
|
|
|
|
cr:paint()
|
2014-01-13 06:46:33 +01:00
|
|
|
cr:restore()
|
|
|
|
self._draw(self, w, cr, width, height)
|
|
|
|
end
|
|
|
|
|
|
|
|
local function prefix_fit(box,w,h)
|
|
|
|
local width,height = box._fit(box,w,h)
|
2014-01-23 05:58:50 +01:00
|
|
|
return width + h/2 + h/6,height
|
|
|
|
end
|
|
|
|
|
|
|
|
local function suffix_draw(self, w, cr, width, height)
|
|
|
|
cr:save()
|
|
|
|
cr:set_source_surface(arrow_alt.get_end_arrow({width=height/2+2,height=height,bg_color=beautiful.icon_grad or beautiful.fg_normal}),width-height/2-2,0)
|
|
|
|
cr:paint()
|
|
|
|
cr:restore()
|
|
|
|
self._draw(self, w, cr, width, height)
|
|
|
|
end
|
|
|
|
|
|
|
|
local function suffix_fit(box,w,h)
|
|
|
|
local width,height = box._fit(box,w,h)
|
|
|
|
return width + h/2 + h/6,height
|
2014-01-13 06:46:33 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
local function draw(data,item,args)
|
|
|
|
local args,flags = args or {},{}
|
|
|
|
for _,v in pairs(args) do flags[v] = true end
|
|
|
|
|
|
|
|
if not item._internal.align._setup then
|
|
|
|
item._internal.align._setup = true
|
2014-01-23 05:58:50 +01:00
|
|
|
|
|
|
|
-- Replace prefix function
|
2014-01-13 06:46:33 +01:00
|
|
|
item._internal.align.first._fit = item._internal.align.first.fit
|
|
|
|
item._internal.align.first._draw = item._internal.align.first.draw
|
|
|
|
item._internal.align.first.fit = prefix_fit
|
|
|
|
item._internal.align.first.draw = prefix_draw
|
2014-01-23 05:58:50 +01:00
|
|
|
|
|
|
|
-- Replace suffix function
|
|
|
|
item._internal.align.third._fit = item._internal.align.third.fit
|
|
|
|
item._internal.align.third._draw = item._internal.align.third.draw
|
|
|
|
item._internal.align.third.fit = suffix_fit
|
|
|
|
item._internal.align.third.draw = suffix_draw
|
2014-01-13 06:46:33 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
if flags[base.item_flags.SELECTED] or (item._tmp_menu) then
|
|
|
|
item.widget:set_bg(args.color or data.bg_focus)
|
|
|
|
else
|
|
|
|
item.widget:set_bg(args.color or nil)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return setmetatable(module, { __call = function(_, ...) return draw(...) end })
|
|
|
|
-- kate: space-indent on; indent-width 2; replace-tabs on;
|