2010-10-06 12:42:56 +02:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
-- @author Uli Schlachter
|
|
|
|
-- @copyright 2010 Uli Schlachter
|
|
|
|
-- @release @AWESOME_VERSION@
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
local base = require("wibox.layout.base")
|
|
|
|
local widget_base = require("wibox.widget.base")
|
|
|
|
local table = table
|
|
|
|
local pairs = pairs
|
|
|
|
local floor = math.floor
|
|
|
|
|
2012-06-12 15:29:52 +02:00
|
|
|
-- wibox.layout.flex
|
|
|
|
local flex = {}
|
2010-10-06 12:42:56 +02:00
|
|
|
|
|
|
|
local function round(x)
|
|
|
|
return floor(x + 0.5)
|
|
|
|
end
|
|
|
|
|
2013-01-05 16:12:47 +01:00
|
|
|
--- Draw a flex layout. Each widget gets an equal share of the available space.
|
2012-11-19 14:09:10 +01:00
|
|
|
-- @param wibox The wibox that this widget is drawn to.
|
2010-10-06 12:42:56 +02:00
|
|
|
-- @param cr The cairo context to use.
|
|
|
|
-- @param width The available width.
|
|
|
|
-- @param height The available height.
|
|
|
|
-- @return The total space needed by the layout.
|
2013-01-05 16:12:47 +01:00
|
|
|
function flex:draw(wibox, cr, width, height)
|
2010-10-06 12:42:56 +02:00
|
|
|
local pos = 0
|
|
|
|
|
2013-01-05 16:12:47 +01:00
|
|
|
local num = #self.widgets
|
2010-10-06 12:42:56 +02:00
|
|
|
local space_per_item
|
2013-01-05 16:12:47 +01:00
|
|
|
if self.dir == "y" then
|
2010-10-06 12:42:56 +02:00
|
|
|
space_per_item = height / num
|
|
|
|
else
|
|
|
|
space_per_item = width / num
|
|
|
|
end
|
|
|
|
|
2013-01-20 15:00:28 +01:00
|
|
|
if self._max_widget_size then
|
|
|
|
space_per_item = math.min(space_per_item, self._max_widget_size)
|
|
|
|
end
|
|
|
|
|
2013-01-05 16:12:47 +01:00
|
|
|
for k, v in pairs(self.widgets) do
|
2010-10-06 12:42:56 +02:00
|
|
|
local x, y, w, h
|
2013-01-05 16:12:47 +01:00
|
|
|
if self.dir == "y" then
|
2010-10-06 12:42:56 +02:00
|
|
|
x, y = 0, round(pos)
|
|
|
|
w, h = width, floor(space_per_item)
|
|
|
|
else
|
|
|
|
x, y = round(pos), 0
|
|
|
|
w, h = floor(space_per_item), height
|
|
|
|
end
|
|
|
|
base.draw_widget(wibox, cr, v, x, y, w, h)
|
|
|
|
|
|
|
|
pos = pos + space_per_item
|
|
|
|
|
2013-01-05 16:12:47 +01:00
|
|
|
if (self.dir == "y" and pos >= height) or
|
|
|
|
(self.dir ~= "y" and pos >= width) then
|
2010-10-06 12:42:56 +02:00
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-01-05 16:12:47 +01:00
|
|
|
function flex:add(widget)
|
2010-10-06 12:42:56 +02:00
|
|
|
widget_base.check_widget(widget)
|
2013-01-05 16:12:47 +01:00
|
|
|
table.insert(self.widgets, widget)
|
|
|
|
widget:connect_signal("widget::updated", self._emit_updated)
|
|
|
|
self._emit_updated()
|
2010-10-06 12:42:56 +02:00
|
|
|
end
|
|
|
|
|
2013-01-20 15:00:28 +01:00
|
|
|
--- 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
|
|
|
|
|
2013-01-05 16:12:48 +01:00
|
|
|
--- Fit the flex layout into the given space.
|
|
|
|
-- @param orig_width The available width.
|
|
|
|
-- @param orig_height The available height.
|
|
|
|
function flex:fit(orig_width, orig_height)
|
|
|
|
local used_max = 0
|
2013-01-20 15:00:28 +01:00
|
|
|
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
|
2013-01-05 16:12:48 +01:00
|
|
|
|
|
|
|
for k, v in pairs(self.widgets) do
|
|
|
|
local w, h = v:fit(orig_width, orig_height)
|
|
|
|
local max
|
|
|
|
if self.dir == "y" then
|
|
|
|
max = w
|
|
|
|
else
|
|
|
|
max = h
|
|
|
|
end
|
|
|
|
if max > used_max then
|
|
|
|
used_max = max
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if self.dir == "y" then
|
2013-01-20 15:00:28 +01:00
|
|
|
return used_max, used_in_dir
|
2013-01-05 16:12:48 +01:00
|
|
|
end
|
2013-01-20 15:00:28 +01:00
|
|
|
return used_in_dir, used_max
|
2013-01-05 16:12:48 +01:00
|
|
|
end
|
|
|
|
|
2013-01-05 16:12:47 +01:00
|
|
|
function flex:reset()
|
|
|
|
for k, v in pairs(self.widgets) do
|
|
|
|
v:disconnect_signal("widget::updated", self._emit_updated)
|
2010-10-06 12:42:56 +02:00
|
|
|
end
|
2013-01-05 16:12:47 +01:00
|
|
|
self.widgets = {}
|
2013-01-20 15:00:28 +01:00
|
|
|
self._max_widget_size = nil
|
2013-01-05 16:12:47 +01:00
|
|
|
self:emit_signal("widget::updated")
|
2010-10-06 12:42:56 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local function get_layout(dir)
|
2013-01-05 16:12:47 +01:00
|
|
|
local ret = widget_base.make_widget()
|
2010-10-06 12:42:56 +02:00
|
|
|
|
2013-01-05 16:12:47 +01:00
|
|
|
for k, v in pairs(flex) do
|
|
|
|
if type(v) == "function" then
|
|
|
|
ret[k] = v
|
|
|
|
end
|
2010-10-06 12:42:56 +02:00
|
|
|
end
|
|
|
|
|
2013-01-05 16:12:47 +01:00
|
|
|
ret.dir = dir
|
2010-10-06 12:42:56 +02:00
|
|
|
ret.widgets = {}
|
|
|
|
ret._emit_updated = function()
|
|
|
|
ret:emit_signal("widget::updated")
|
|
|
|
end
|
|
|
|
|
|
|
|
return ret
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Returns a new horizontal flex layout. A flex layout shares the available space
|
|
|
|
-- equally among all widgets. Widgets can be added via :add(widget).
|
2012-06-12 15:29:52 +02:00
|
|
|
function flex.horizontal()
|
2010-10-06 12:42:56 +02:00
|
|
|
return get_layout("x")
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Returns a new vertical flex layout. A flex layout shares the available space
|
|
|
|
-- equally among all widgets. Widgets can be added via :add(widget).
|
2012-06-12 15:29:52 +02:00
|
|
|
function flex.vertical()
|
2010-10-06 12:42:56 +02:00
|
|
|
return get_layout("y")
|
|
|
|
end
|
|
|
|
|
2012-06-12 15:29:52 +02:00
|
|
|
return flex
|
|
|
|
|
2011-09-11 16:50:01 +02:00
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|