2010-10-06 12:42:56 +02:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
-- @author Uli Schlachter
|
|
|
|
-- @copyright 2010 Uli Schlachter
|
|
|
|
-- @release @AWESOME_VERSION@
|
2015-02-25 11:18:53 +01:00
|
|
|
-- @classmod wibox.layout.fixed
|
2010-10-06 12:42:56 +02:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
local base = require("wibox.layout.base")
|
|
|
|
local widget_base = require("wibox.widget.base")
|
|
|
|
local table = table
|
|
|
|
local pairs = pairs
|
|
|
|
|
2012-06-12 15:29:52 +02:00
|
|
|
local fixed = {}
|
2010-10-06 12:42:56 +02:00
|
|
|
|
2015-06-14 16:12:44 +02:00
|
|
|
--- Layout a fixed layout. Each widget gets just the space it asks for.
|
2015-08-08 13:18:54 +02:00
|
|
|
-- @param context The context in which we are drawn.
|
2010-10-06 12:42:56 +02:00
|
|
|
-- @param width The available width.
|
|
|
|
-- @param height The available height.
|
2015-06-14 16:12:44 +02:00
|
|
|
function fixed:layout(context, width, height)
|
|
|
|
local result = {}
|
2014-10-18 07:17:46 +02:00
|
|
|
local pos,spacing = 0,self._spacing or 0
|
2010-10-06 12:42:56 +02:00
|
|
|
|
2013-01-05 16:12:47 +01:00
|
|
|
for k, v in pairs(self.widgets) do
|
2012-06-16 21:12:26 +02:00
|
|
|
local x, y, w, h, _
|
2010-10-06 19:47:34 +02:00
|
|
|
local in_dir
|
2013-01-05 16:12:47 +01:00
|
|
|
if self.dir == "y" then
|
2010-10-06 12:42:56 +02:00
|
|
|
x, y = 0, pos
|
|
|
|
w, h = width, height - pos
|
2013-10-03 07:11:09 +02:00
|
|
|
if k ~= #self.widgets or not self._fill_space then
|
2015-08-08 13:43:35 +02:00
|
|
|
_, h = base.fit_widget(context, v, w, h);
|
2010-10-06 12:42:56 +02:00
|
|
|
end
|
2014-10-18 07:17:46 +02:00
|
|
|
pos = pos + h + spacing
|
2010-10-06 19:47:34 +02:00
|
|
|
in_dir = h
|
2010-10-06 12:42:56 +02:00
|
|
|
else
|
|
|
|
x, y = pos, 0
|
|
|
|
w, h = width - pos, height
|
2013-10-03 07:11:09 +02:00
|
|
|
if k ~= #self.widgets or not self._fill_space then
|
2015-08-08 13:43:35 +02:00
|
|
|
w, _ = base.fit_widget(context, v, w, h);
|
2010-10-06 12:42:56 +02:00
|
|
|
end
|
2014-10-18 07:17:46 +02:00
|
|
|
pos = pos + w + spacing
|
2010-10-06 19:47:34 +02:00
|
|
|
in_dir = w
|
2010-10-06 12:42:56 +02:00
|
|
|
end
|
|
|
|
|
2014-10-18 07:17:46 +02:00
|
|
|
if (self.dir == "y" and pos-spacing > height) or
|
|
|
|
(self.dir ~= "y" and pos-spacing > width) then
|
2010-10-06 12:42:56 +02:00
|
|
|
break
|
|
|
|
end
|
2015-06-14 16:12:44 +02:00
|
|
|
table.insert(result, widget_base.place_widget_at(v, x, y, w, h))
|
2010-10-06 12:42:56 +02:00
|
|
|
end
|
2015-06-14 16:12:44 +02:00
|
|
|
return result
|
2010-10-06 12:42:56 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--- Add a widget to the given fixed layout
|
2012-11-18 20:44:03 +01:00
|
|
|
function fixed:add(widget)
|
2010-10-06 12:42:56 +02:00
|
|
|
widget_base.check_widget(widget)
|
2012-11-18 20:44:03 +01:00
|
|
|
table.insert(self.widgets, widget)
|
2015-06-14 16:12:44 +02:00
|
|
|
self:emit_signal("widget::layout_changed")
|
2010-10-06 12:42:56 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--- Fit the fixed layout into the given space
|
2015-08-08 13:43:35 +02:00
|
|
|
-- @param context The context in which we are fit.
|
2010-10-06 12:42:56 +02:00
|
|
|
-- @param orig_width The available width.
|
|
|
|
-- @param orig_height The available height.
|
2015-08-08 13:43:35 +02:00
|
|
|
function fixed:fit(context, orig_width, orig_height)
|
2010-10-06 12:42:56 +02:00
|
|
|
local width, height = orig_width, orig_height
|
|
|
|
local used_in_dir, used_max = 0, 0
|
|
|
|
|
2013-01-05 16:12:47 +01:00
|
|
|
for k, v in pairs(self.widgets) do
|
2015-08-08 13:43:35 +02:00
|
|
|
local w, h = base.fit_widget(context, v, width, height)
|
2010-10-06 12:42:56 +02:00
|
|
|
local in_dir, max
|
2013-01-05 16:12:47 +01:00
|
|
|
if self.dir == "y" then
|
2010-10-06 12:42:56 +02:00
|
|
|
max, in_dir = w, h
|
|
|
|
height = height - in_dir
|
|
|
|
else
|
|
|
|
in_dir, max = w, h
|
|
|
|
width = width - in_dir
|
|
|
|
end
|
|
|
|
if max > used_max then
|
|
|
|
used_max = max
|
|
|
|
end
|
|
|
|
used_in_dir = used_in_dir + in_dir
|
|
|
|
|
|
|
|
if width <= 0 or height <= 0 then
|
2013-01-05 16:12:47 +01:00
|
|
|
if self.dir == "y" then
|
2010-10-06 12:42:56 +02:00
|
|
|
used_in_dir = orig_height
|
|
|
|
else
|
|
|
|
used_in_dir = orig_width
|
|
|
|
end
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-10-18 07:17:46 +02:00
|
|
|
local spacing = ((self._spacing or 0)*(#self.widgets-1))
|
|
|
|
|
2013-01-05 16:12:47 +01:00
|
|
|
if self.dir == "y" then
|
2014-10-18 07:17:46 +02:00
|
|
|
return used_max, used_in_dir + spacing
|
2010-10-06 12:42:56 +02:00
|
|
|
end
|
2014-10-18 07:17:46 +02:00
|
|
|
return used_in_dir + spacing, used_max
|
2010-10-06 12:42:56 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--- Reset a fixed layout. This removes all widgets from the layout.
|
2012-11-18 20:44:03 +01:00
|
|
|
function fixed:reset()
|
|
|
|
self.widgets = {}
|
2015-06-14 16:12:44 +02:00
|
|
|
self:emit_signal("widget::layout_changed")
|
2010-10-06 12:42:56 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--- Set the layout's fill_space property. If this property is true, the last
|
|
|
|
-- widget will get all the space that is left. If this is false, the last widget
|
|
|
|
-- won't be handled specially and there can be space left unused.
|
2012-11-18 20:44:03 +01:00
|
|
|
function fixed:fill_space(val)
|
|
|
|
self._fill_space = val
|
2015-06-14 16:12:44 +02:00
|
|
|
self:emit_signal("widget::layout_changed")
|
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()
|
|
|
|
|
|
|
|
for k, v in pairs(fixed) 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 = {}
|
|
|
|
|
|
|
|
return ret
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Returns a new horizontal fixed layout. Each widget will get as much space as it
|
|
|
|
-- asks for and each widget will be drawn next to its neighboring widget.
|
|
|
|
-- Widgets can be added via :add().
|
2012-06-12 15:29:52 +02:00
|
|
|
function fixed.horizontal()
|
2010-10-06 12:42:56 +02:00
|
|
|
return get_layout("x")
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Returns a new vertical fixed layout. Each widget will get as much space as it
|
|
|
|
-- asks for and each widget will be drawn next to its neighboring widget.
|
|
|
|
-- Widgets can be added via :add().
|
2012-06-12 15:29:52 +02:00
|
|
|
function fixed.vertical()
|
2010-10-06 12:42:56 +02:00
|
|
|
return get_layout("y")
|
|
|
|
end
|
|
|
|
|
2014-11-08 01:08:26 +01:00
|
|
|
--- Add spacing between each layout widgets
|
|
|
|
-- @param spacing Spacing between widgets.
|
2014-10-18 07:17:46 +02:00
|
|
|
function fixed:set_spacing(spacing)
|
|
|
|
self._spacing = spacing
|
2015-06-14 16:12:44 +02:00
|
|
|
self:emit_signal("widget::layout_changed")
|
2014-10-18 07:17:46 +02:00
|
|
|
end
|
|
|
|
|
2012-06-12 15:29:52 +02:00
|
|
|
return fixed
|
|
|
|
|
2011-09-11 16:50:01 +02:00
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|