将awidget放在另一个小部件的上方是不是很棒?例如:在进度条上绘制带有一些文本(百分比)的texbox。
这是工作解决方案
local function make_stack(w1, w2)
local ret = wibox.widget.base.make_widget()
ret.fit = function(self, ...) return w1:fit(...) end
ret.draw = function(self, wibox, cr, width, height)
w1:draw(wibox, cr, width, height)
w2:draw(wibox, cr, width, height)
end
update = function() ret:emit_signal("widget::updated") end
w1:connect_signal("widget::updated", update)
w2:connect_signal("widget::updated", update)
return ret
end
答案 0 :(得分:0)
没有类似内置的内容,但您可以自己编写(未经测试):
function make_stack(w1, w2)
local ret = wibox.widget.base.make_widget()
local update = function() ret:emit_signal("widget::updated") end
w1:connect_signal("widget::updated", update)
w2:connect_signal("widget::updated", update)
ret.fit = function(self, ...) return w2:fit(...) end
ret.draw = function(self, wibox, cr, width, height)
wibox.layout.base.draw_widget(wibox, cr, w1, 0, 0, width, height)
wibox.layout.base.draw_widget(wibox, cr, w2, 0, 0, width, height)
end
return ret
end
函数make_stack(w1, w2)
创建一个新的小部件,在w2
的ontop上绘制w1
。小部件w2
决定两个小部件的大小,如fit
函数中所示。
例如,可以使用此功能:left_layout:add(make_stack(mytasklist[s], mytextclock))