38 lines
1.1 KiB
Lua
38 lines
1.1 KiB
Lua
local setmetatable = setmetatable
|
|
local print = print
|
|
local color = require( "gears.color")
|
|
local cairo = require( "lgi" ).cairo
|
|
local wibox = require( "wibox" )
|
|
local beautiful = require( "beautiful" )
|
|
|
|
local module = {HORIZONTAL=1,VERTICAL=2}
|
|
|
|
local function draw(self, w, cr, width, height)
|
|
cr:save()
|
|
cr:set_source(self._color)
|
|
if self.direction == module.VERTICAL then
|
|
cr:rectangle(2,2,1,height-4)
|
|
else
|
|
cr:rectangle(5,2,width-10,1)
|
|
end
|
|
cr:fill()
|
|
cr:restore()
|
|
end
|
|
|
|
local function fit(box, w, h)
|
|
return box.direction == module.VERTICAL and 5 or w,box.direction == module.VERTICAL and h or 5
|
|
end
|
|
|
|
local function new(menu,direction)
|
|
local bg = wibox.widget.base.make_widget()
|
|
bg.direction = direction or module.HORIZONTAL
|
|
bg.fit = fit
|
|
bg._color = color( menu and menu.separator_color or beautiful.border_color or beautiful.fg_normal)
|
|
bg.draw = draw
|
|
bg._force_fit = true
|
|
return bg
|
|
end
|
|
|
|
return setmetatable(module, { __call = function(_, ...) return new(...) end })
|
|
-- kate: space-indent on; indent-width 2; replace-tabs on;
|