2013-07-14 07:58:39 +02:00
|
|
|
local wibox = require("wibox")
|
2013-07-15 06:33:43 +02:00
|
|
|
local beautiful = require("beautiful")
|
2013-07-21 10:15:56 +02:00
|
|
|
local color = require("gears.color")
|
2013-07-14 07:58:39 +02:00
|
|
|
local ipairs = ipairs
|
|
|
|
local print = print
|
|
|
|
|
2013-07-15 06:33:43 +02:00
|
|
|
local function textbox_draw(self, w, cr, width, height)
|
2013-07-21 10:15:56 +02:00
|
|
|
cr:save()
|
|
|
|
cr:set_source(color(beautiful.menu_border_color or beautiful.border_normal or beautiful.border_color))
|
2013-07-15 06:33:43 +02:00
|
|
|
cr:rectangle(0,0,width,1)
|
|
|
|
cr:rectangle(width-1,0,1,height)
|
|
|
|
cr:stroke()
|
2013-07-21 10:15:56 +02:00
|
|
|
cr:restore()
|
|
|
|
cr:set_source(color(beautiful.menu_fg_normal or beautiful.fg_normal))
|
2013-07-15 06:33:43 +02:00
|
|
|
wibox.widget.textbox.draw(self, w, cr, width, height)
|
|
|
|
end
|
|
|
|
|
|
|
|
local function create_textbox(w,col_c,has_v_header,row_height)
|
|
|
|
local t = wibox.widget.textbox()
|
|
|
|
t.fit = function(...)
|
|
|
|
local fw,fh = wibox.widget.textbox.fit(...)
|
|
|
|
return w/(col_c + (has_v_header and 1 or 0)),row_height or fh
|
|
|
|
end
|
|
|
|
t.draw = textbox_draw
|
2013-07-21 10:15:56 +02:00
|
|
|
t:set_align("center")
|
2013-07-15 06:33:43 +02:00
|
|
|
return t
|
|
|
|
end
|
|
|
|
|
|
|
|
local function create_h_header(main_l,cols,w,args)
|
|
|
|
if args.h_header then
|
|
|
|
local bg = wibox.widget.background()
|
|
|
|
local row_l = wibox.layout.fixed.horizontal()
|
2013-08-09 09:39:56 +02:00
|
|
|
bg:set_bg(beautiful.menu_bg_header or beautiful.fg_normal)
|
2013-07-15 06:33:43 +02:00
|
|
|
bg:set_widget(row_l)
|
|
|
|
if args.v_header then
|
|
|
|
local t = create_textbox(w,cols,args.v_header ~= nil,args.row_height)
|
|
|
|
t:set_markup("<span color='".. beautiful.bg_normal .."'>--</span>")
|
|
|
|
row_l:add(t)
|
|
|
|
end
|
|
|
|
for i=1,cols do
|
|
|
|
local t = create_textbox(w,cols,args.v_header ~= nil,args.row_height)
|
|
|
|
t:set_markup("<span color='".. beautiful.bg_normal .."'>".. (args.h_header[i] or "-") .."</span>")
|
|
|
|
row_l:add(t)
|
|
|
|
end
|
|
|
|
main_l:add(bg)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function new(content,args)
|
|
|
|
local args = args or {}
|
2013-07-14 07:58:39 +02:00
|
|
|
local rows = #content
|
|
|
|
local cols = 0
|
|
|
|
for k,v in ipairs(content) do
|
|
|
|
if #v > cols then
|
|
|
|
cols = #v
|
|
|
|
end
|
|
|
|
end
|
|
|
|
local main_l = wibox.layout.fixed.vertical()
|
|
|
|
local w =200
|
|
|
|
main_l.fit = function(self,width,height)
|
|
|
|
w = width
|
|
|
|
return wibox.layout.fixed.fit(self,width,height)
|
|
|
|
end
|
2013-07-15 06:33:43 +02:00
|
|
|
create_h_header(main_l,cols,w,args)
|
|
|
|
|
2013-07-21 10:15:56 +02:00
|
|
|
local j,widgets =1,{}
|
2013-07-14 07:58:39 +02:00
|
|
|
for k,v in ipairs(content) do
|
2013-07-21 10:15:56 +02:00
|
|
|
local row_l,row_w = wibox.layout.fixed.horizontal(),{}
|
2013-07-15 06:33:43 +02:00
|
|
|
if args.v_header then
|
|
|
|
local t = create_textbox(w,cols,args.v_header ~= nil,args.row_height)
|
|
|
|
t:set_markup("<span color='".. beautiful.bg_normal .."'>".. (args.v_header[j] or "-") .."</span>")
|
|
|
|
local bg = wibox.widget.background()
|
2013-08-09 09:39:56 +02:00
|
|
|
bg:set_bg(beautiful.menu_bg_header or beautiful.fg_normal)
|
2013-07-15 06:33:43 +02:00
|
|
|
bg:set_widget(t)
|
|
|
|
row_l:add(bg)
|
|
|
|
end
|
2013-07-14 07:58:39 +02:00
|
|
|
for i=1,cols do
|
2013-07-15 06:33:43 +02:00
|
|
|
local t = create_textbox(w,cols,args.v_header ~= nil,args.row_height)
|
2013-07-14 07:58:39 +02:00
|
|
|
t:set_text(v[i])
|
|
|
|
row_l:add(t)
|
2013-07-21 10:15:56 +02:00
|
|
|
row_w[#row_w+1] =t
|
2013-07-14 07:58:39 +02:00
|
|
|
end
|
|
|
|
main_l:add(row_l)
|
2013-07-21 10:15:56 +02:00
|
|
|
widgets[#widgets+1] = row_w
|
2013-07-15 06:33:43 +02:00
|
|
|
j = j +1
|
2013-07-14 07:58:39 +02:00
|
|
|
end
|
2013-07-21 10:15:56 +02:00
|
|
|
return main_l,widgets
|
2013-07-14 07:58:39 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
return setmetatable({}, { __call = function(_, ...) return new(...) end })
|
|
|
|
-- kate: space-indent on; indent-width 2; replace-tabs on;
|