2010-10-06 12:42:56 +02:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
-- @author Uli Schlachter
|
|
|
|
-- @copyright 2010 Uli Schlachter
|
|
|
|
-- @release @AWESOME_VERSION@
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2012-11-19 15:35:32 +01:00
|
|
|
--- Collection of layouts that can be used in widget boxes
|
2012-06-12 15:29:52 +02:00
|
|
|
-- wibox.layout
|
2010-10-06 12:42:56 +02:00
|
|
|
|
2012-06-12 15:29:52 +02:00
|
|
|
return
|
|
|
|
{
|
|
|
|
base = require("wibox.layout.base");
|
|
|
|
fixed = require("wibox.layout.fixed");
|
|
|
|
align = require("wibox.layout.align");
|
|
|
|
flex = require("wibox.layout.flex");
|
|
|
|
rotate = require("wibox.layout.rotate");
|
|
|
|
margin = require("wibox.layout.margin");
|
|
|
|
mirror = require("wibox.layout.mirror");
|
2013-01-05 16:12:52 +01:00
|
|
|
constraint = require("wibox.layout.constraint");
|
2012-06-12 15:29:52 +02:00
|
|
|
}
|
2010-10-06 12:42:56 +02:00
|
|
|
|
2011-09-11 16:50:01 +02:00
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|