[todo] highlight widget when the popup is shown
This commit is contained in:
parent
36ff9d53b7
commit
223fe7226a
|
@ -27,23 +27,35 @@ local update_widget
|
||||||
todo_widget.widget = wibox.widget {
|
todo_widget.widget = wibox.widget {
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
id = "icon",
|
{
|
||||||
widget = wibox.widget.imagebox
|
{
|
||||||
|
id = "icon",
|
||||||
|
forced_height = 16,
|
||||||
|
forced_width = 16,
|
||||||
|
widget = wibox.widget.imagebox
|
||||||
|
},
|
||||||
|
valign = 'center',
|
||||||
|
layout = wibox.container.place
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id = "txt",
|
||||||
|
widget = wibox.widget.textbox
|
||||||
|
},
|
||||||
|
spacing = 4,
|
||||||
|
layout = wibox.layout.fixed.horizontal,
|
||||||
},
|
},
|
||||||
id = "margin",
|
|
||||||
margins = 4,
|
margins = 4,
|
||||||
layout = wibox.container.margin
|
layout = wibox.container.margin
|
||||||
},
|
},
|
||||||
{
|
shape = function(cr, width, height)
|
||||||
id = "txt",
|
gears.shape.rounded_rect(cr, width, height, 4)
|
||||||
widget = wibox.widget.textbox
|
end,
|
||||||
},
|
widget = wibox.container.background,
|
||||||
layout = wibox.layout.fixed.horizontal,
|
|
||||||
set_text = function(self, new_value)
|
set_text = function(self, new_value)
|
||||||
self.txt.text = new_value
|
self:get_children_by_id("txt")[1].text = new_value
|
||||||
end,
|
end,
|
||||||
set_icon = function(self, new_value)
|
set_icon = function(self, new_value)
|
||||||
self.margin.icon.image = new_value
|
self:get_children_by_id("icon")[1].image = new_value
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -302,11 +314,13 @@ local function worker(user_args)
|
||||||
end
|
end
|
||||||
|
|
||||||
todo_widget.widget:buttons(
|
todo_widget.widget:buttons(
|
||||||
awful.util.table.join(
|
gears.table.join(
|
||||||
awful.button({}, 1, function()
|
awful.button({}, 1, function()
|
||||||
if popup.visible then
|
if popup.visible then
|
||||||
|
todo_widget.widget:set_bg('#00000000')
|
||||||
popup.visible = not popup.visible
|
popup.visible = not popup.visible
|
||||||
else
|
else
|
||||||
|
todo_widget.widget:set_bg(beautiful.bg_focus)
|
||||||
popup:move_next_to(mouse.current_widget_geometry)
|
popup:move_next_to(mouse.current_widget_geometry)
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
Loading…
Reference in New Issue