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
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2016-01-18 08:51:09 +01:00
|
|
|
local base = require("wibox.widget.base")
|
2010-10-06 12:42:56 +02:00
|
|
|
local table = table
|
|
|
|
local pairs = pairs
|
2016-01-18 08:51:09 +01:00
|
|
|
local util = require("awful.util")
|
2010-10-06 12:42:56 +02:00
|
|
|
|
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 = {}
|
2015-06-21 14:58:13 +02:00
|
|
|
local pos,spacing = 0, self._spacing
|
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, _
|
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-09-17 15:01:50 +02:00
|
|
|
_, h = base.fit_widget(self, 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 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-09-17 15:01:50 +02:00
|
|
|
w, _ = base.fit_widget(self, 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 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 15:57:33 +02:00
|
|
|
table.insert(result, 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
|
|
|
|
|
2015-09-28 21:00:49 +02:00
|
|
|
--- Add some widgets to the given fixed layout
|
2016-01-18 05:23:50 +01:00
|
|
|
-- @param ... Widgets that should be added (must at least be one)
|
2015-09-28 21:00:49 +02:00
|
|
|
function fixed:add(...)
|
|
|
|
-- No table.pack in Lua 5.1 :-(
|
|
|
|
local args = { n=select('#', ...), ... }
|
|
|
|
assert(args.n > 0, "need at least one widget to add")
|
|
|
|
for i=1, args.n do
|
|
|
|
base.check_widget(args[i])
|
|
|
|
table.insert(self.widgets, args[i])
|
|
|
|
end
|
2015-06-14 16:12:44 +02:00
|
|
|
self:emit_signal("widget::layout_changed")
|
2010-10-06 12:42:56 +02:00
|
|
|
end
|
|
|
|
|
2016-01-18 05:23:50 +01:00
|
|
|
|
|
|
|
--- Remove a widget from the layout
|
|
|
|
-- @tparam number index The widget index to remove
|
|
|
|
-- @treturn boolean index If the operation is successful
|
|
|
|
function fixed:remove(index)
|
|
|
|
if not index or index < 1 or index > #self.widgets then return false end
|
|
|
|
|
|
|
|
table.remove(self.widgets, index)
|
|
|
|
|
|
|
|
self:emit_signal("widget::layout_changed")
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Remove one or more widgets from the layout
|
|
|
|
-- The last parameter can be a boolean, forcing a recursive seach of the
|
|
|
|
-- widget(s) to remove.
|
|
|
|
-- @param widget ... Widgets that should be removed (must at least be one)
|
|
|
|
-- @treturn boolean If the operation is successful
|
|
|
|
function fixed:remove_widgets(...)
|
|
|
|
local args = { ... }
|
|
|
|
|
|
|
|
local recursive = type(args[#args]) == "boolean" and args[#args]
|
|
|
|
|
|
|
|
local ret = true
|
|
|
|
for k, rem_widget in ipairs(args) do
|
|
|
|
if recursive and k == #args then break end
|
|
|
|
|
|
|
|
local idx, l = self:index(rem_widget, recursive)
|
|
|
|
|
|
|
|
if idx and l and l.remove then
|
|
|
|
l:remove(idx, false)
|
|
|
|
else
|
|
|
|
ret = false
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
return #args > (recursive and 1 or 0) and ret
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Get all children of this layout
|
|
|
|
-- @treturn table a list of all widgets
|
|
|
|
function fixed:get_children()
|
|
|
|
return self.widgets
|
|
|
|
end
|
|
|
|
|
2016-02-04 07:11:10 +01:00
|
|
|
--- Replace the layout children
|
|
|
|
-- @tparam table children A table composed of valid widgets
|
|
|
|
function fixed:set_children(children)
|
|
|
|
if not children then return self:reset() end
|
|
|
|
self.widgets = children
|
|
|
|
self:emit_signal("widget::layout_changed")
|
|
|
|
end
|
|
|
|
|
2016-01-18 05:23:50 +01:00
|
|
|
--- Replace the first instance of `widget` in the layout with `widget2`
|
|
|
|
-- @param widget The widget to replace
|
|
|
|
-- @param widget2 The widget to replace `widget` with
|
|
|
|
-- @tparam[opt=false] boolean recursive Digg in all compatible layouts to find the widget.
|
|
|
|
-- @treturn boolean If the operation is successful
|
|
|
|
function fixed:replace_widget(widget, widget2, recursive)
|
|
|
|
local idx, l = self:index(widget, recursive)
|
|
|
|
|
|
|
|
if idx and l then
|
|
|
|
l:set(idx, widget2)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Swap 2 widgets in a layout
|
|
|
|
-- @tparam number index1 The first widget index
|
|
|
|
-- @tparam number index2 The second widget index
|
|
|
|
-- @treturn boolean If the operation is successful
|
|
|
|
function fixed:swap(index1, index2)
|
|
|
|
if not index1 or not index2 or index1 > #self.widgets
|
|
|
|
or index2 > #self.widgets then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
local widget1, widget2 = self.widgets[index1], self.widgets[index2]
|
|
|
|
|
|
|
|
self:set(index1, widget2)
|
|
|
|
self:set(index2, widget1)
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Swap 2 widgets in a layout
|
|
|
|
-- If widget1 is present multiple time, only the first instance is swapped
|
|
|
|
-- @param widget1 The first widget
|
|
|
|
-- @param widget2 The second widget
|
|
|
|
-- @tparam[opt=false] boolean recursive Digg in all compatible layouts to find the widget.
|
|
|
|
-- @treturn boolean If the operation is successful
|
|
|
|
function fixed:swap_widgets(widget1, widget2, recursive)
|
|
|
|
base.check_widget(widget1)
|
|
|
|
base.check_widget(widget2)
|
|
|
|
|
|
|
|
local idx1, l1 = self:index(widget1, recursive)
|
|
|
|
local idx2, l2 = self:index(widget2, recursive)
|
|
|
|
|
|
|
|
if idx1 and l1 and idx2 and l2 then
|
|
|
|
l1:set(idx1, widget2)
|
|
|
|
l2:set(idx2, widget1)
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Set a widget at a specific index, replace the current one
|
|
|
|
-- @tparam number index A widget or a widget index
|
|
|
|
-- @param widget2 The widget to take the place of the first one
|
|
|
|
-- @treturn boolean If the operation is successful
|
|
|
|
function fixed:set(index, widget2)
|
|
|
|
if (not widget2) or (not self.widgets[index]) then return false end
|
|
|
|
|
|
|
|
base.check_widget(widget2)
|
|
|
|
|
|
|
|
self.widgets[index] = widget2
|
|
|
|
|
|
|
|
self:emit_signal("widget::layout_changed")
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Insert a new widget in the layout at position `index`
|
|
|
|
-- @tparam number index The position
|
|
|
|
-- @param widget The widget
|
|
|
|
-- @treturn boolean If the operation is successful
|
|
|
|
function fixed:insert(index, widget)
|
|
|
|
if not index or index < 1 or index > #self.widgets + 1 then return false end
|
|
|
|
|
|
|
|
base.check_widget(widget)
|
|
|
|
table.insert(self.widgets, index, widget)
|
|
|
|
self:emit_signal("widget::layout_changed")
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2010-10-06 12:42:56 +02:00
|
|
|
--- 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
|
|
|
|
|
2016-02-07 14:13:43 +01:00
|
|
|
for _, v in pairs(self.widgets) do
|
2015-09-17 15:01:50 +02:00
|
|
|
local w, h = base.fit_widget(self, 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
|
|
|
|
|
2015-06-21 14:58:13 +02:00
|
|
|
local spacing = self._spacing * (#self.widgets-1)
|
2014-10-18 07:17:46 +02:00
|
|
|
|
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)
|
2015-06-21 14:58:13 +02:00
|
|
|
if self._fill_space ~= val then
|
|
|
|
self._fill_space = not not val
|
|
|
|
self:emit_signal("widget::layout_changed")
|
|
|
|
end
|
2010-10-06 12:42:56 +02:00
|
|
|
end
|
|
|
|
|
2015-09-28 21:00:49 +02:00
|
|
|
local function get_layout(dir, widget1, ...)
|
2015-06-14 15:57:33 +02:00
|
|
|
local ret = base.make_widget()
|
2013-01-05 16:12:47 +01:00
|
|
|
|
2016-01-18 08:51:09 +01:00
|
|
|
util.table.crush(ret, fixed)
|
2010-10-06 12:42:56 +02:00
|
|
|
|
2013-01-05 16:12:47 +01:00
|
|
|
ret.dir = dir
|
2010-10-06 12:42:56 +02:00
|
|
|
ret.widgets = {}
|
2015-06-21 14:58:13 +02:00
|
|
|
ret:set_spacing(0)
|
|
|
|
ret:fill_space(false)
|
2010-10-06 12:42:56 +02:00
|
|
|
|
2015-09-28 21:00:49 +02:00
|
|
|
if widget1 then
|
|
|
|
ret:add(widget1, ...)
|
|
|
|
end
|
|
|
|
|
2010-10-06 12:42:56 +02:00
|
|
|
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.
|
2015-09-28 21:00:49 +02:00
|
|
|
-- Widgets can be added via :add() or as arguments to this function.
|
|
|
|
-- @tparam widget ... Widgets that should be added to the layout.
|
|
|
|
function fixed.horizontal(...)
|
|
|
|
return get_layout("x", ...)
|
2010-10-06 12:42:56 +02:00
|
|
|
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.
|
2015-09-28 21:00:49 +02:00
|
|
|
-- Widgets can be added via :add() or as arguments to this function.
|
|
|
|
-- @tparam widget ... Widgets that should be added to the layout.
|
|
|
|
function fixed.vertical(...)
|
|
|
|
return get_layout("y", ...)
|
2010-10-06 12:42:56 +02:00
|
|
|
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)
|
2015-06-21 14:58:13 +02:00
|
|
|
if self._spacing ~= spacing then
|
|
|
|
self._spacing = spacing
|
|
|
|
self:emit_signal("widget::layout_changed")
|
|
|
|
end
|
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
|