--------------------------------------------------------------------------- -- @author Uli Schlachter -- @copyright 2010 Uli Schlachter -- @release @AWESOME_VERSION@ --------------------------------------------------------------------------- local base = require("wibox.layout.base") local fixed = require("wibox.layout.fixed") local widget_base = require("wibox.widget.base") local table = table local pairs = pairs local floor = math.floor -- wibox.layout.flex local flex = {} local function round(x) return floor(x + 0.5) end flex.fit = fixed.fit --- Draw a flex layout. Each widget gets an equal share of the available space. -- @param wibox The wibox that this widget is drawn to. -- @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. function flex:draw(wibox, cr, width, height) local pos = 0 local num = #self.widgets local space_per_item if self.dir == "y" then space_per_item = height / num else space_per_item = width / num end for k, v in pairs(self.widgets) do local x, y, w, h if self.dir == "y" then 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 if (self.dir == "y" and pos >= height) or (self.dir ~= "y" and pos >= width) then break end end end function flex:add(widget) widget_base.check_widget(widget) table.insert(self.widgets, widget) widget:connect_signal("widget::updated", self._emit_updated) self._emit_updated() end function flex:reset() for k, v in pairs(self.widgets) do v:disconnect_signal("widget::updated", self._emit_updated) end self.widgets = {} self:emit_signal("widget::updated") end local function get_layout(dir) local ret = widget_base.make_widget() for k, v in pairs(flex) do if type(v) == "function" then ret[k] = v end end ret.dir = dir 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). function flex.horizontal() 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). function flex.vertical() return get_layout("y") end return flex -- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80