mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
wibox.layout.flex: add set_max_widget_size() function
The function can be used to set the maximum size the widget in the flex layout should take. Signed-off-by: Lukáš Hrázký <lukkash@email.cz> Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
ca73777017
commit
1881ceb9d3
1 changed files with 21 additions and 2 deletions
|
@ -34,6 +34,10 @@ function flex:draw(wibox, cr, width, height)
|
||||||
space_per_item = width / num
|
space_per_item = width / num
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if self._max_widget_size then
|
||||||
|
space_per_item = math.min(space_per_item, self._max_widget_size)
|
||||||
|
end
|
||||||
|
|
||||||
for k, v in pairs(self.widgets) do
|
for k, v in pairs(self.widgets) do
|
||||||
local x, y, w, h
|
local x, y, w, h
|
||||||
if self.dir == "y" then
|
if self.dir == "y" then
|
||||||
|
@ -61,11 +65,25 @@ function flex:add(widget)
|
||||||
self._emit_updated()
|
self._emit_updated()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--- Set the maximum size the widgets in this layout will take (that is,
|
||||||
|
-- maximum width for horizontal and maximum height for vertical).
|
||||||
|
-- @param val The maximum size of the widget.
|
||||||
|
function flex:set_max_widget_size(val)
|
||||||
|
self._max_widget_size = val
|
||||||
|
self:emit_signal("widget::updated")
|
||||||
|
end
|
||||||
|
|
||||||
--- Fit the flex layout into the given space.
|
--- Fit the flex layout into the given space.
|
||||||
-- @param orig_width The available width.
|
-- @param orig_width The available width.
|
||||||
-- @param orig_height The available height.
|
-- @param orig_height The available height.
|
||||||
function flex:fit(orig_width, orig_height)
|
function flex:fit(orig_width, orig_height)
|
||||||
local used_max = 0
|
local used_max = 0
|
||||||
|
local used_in_dir = self.dir == "y" and orig_height or orig_width
|
||||||
|
|
||||||
|
if self._max_widget_size then
|
||||||
|
used_in_dir = math.min(used_in_dir,
|
||||||
|
#self.widgets * self._max_widget_size)
|
||||||
|
end
|
||||||
|
|
||||||
for k, v in pairs(self.widgets) do
|
for k, v in pairs(self.widgets) do
|
||||||
local w, h = v:fit(orig_width, orig_height)
|
local w, h = v:fit(orig_width, orig_height)
|
||||||
|
@ -81,9 +99,9 @@ function flex:fit(orig_width, orig_height)
|
||||||
end
|
end
|
||||||
|
|
||||||
if self.dir == "y" then
|
if self.dir == "y" then
|
||||||
return used_max, orig_height
|
return used_max, used_in_dir
|
||||||
end
|
end
|
||||||
return orig_width, used_max
|
return used_in_dir, used_max
|
||||||
end
|
end
|
||||||
|
|
||||||
function flex:reset()
|
function flex:reset()
|
||||||
|
@ -91,6 +109,7 @@ function flex:reset()
|
||||||
v:disconnect_signal("widget::updated", self._emit_updated)
|
v:disconnect_signal("widget::updated", self._emit_updated)
|
||||||
end
|
end
|
||||||
self.widgets = {}
|
self.widgets = {}
|
||||||
|
self._max_widget_size = nil
|
||||||
self:emit_signal("widget::updated")
|
self:emit_signal("widget::updated")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue