mirror of
https://codeberg.org/1414codeforge/yui.git
synced 2025-02-16 11:50:56 +01:00
[columns,rows] Remove superfluous widget types, leave containers as Layouts.
This commit is contained in:
parent
cfdea6c990
commit
e70537142e
@ -2,9 +2,6 @@ local BASE = (...):gsub('columns', '')
|
|||||||
|
|
||||||
local Layout = require(BASE..'layout')
|
local Layout = require(BASE..'layout')
|
||||||
|
|
||||||
local Columns = setmetatable({}, Layout)
|
|
||||||
Columns.__index = Columns
|
|
||||||
|
|
||||||
|
|
||||||
-- Advance position to next column,
|
-- Advance position to next column,
|
||||||
-- given current position, widget dimensions and padding.
|
-- given current position, widget dimensions and padding.
|
||||||
@ -12,8 +9,8 @@ local function columnadvance(x,y, ww,wh, padding)
|
|||||||
return x + ww + padding, y
|
return x + ww + padding, y
|
||||||
end
|
end
|
||||||
|
|
||||||
function Columns.new(args)
|
function Columns(args)
|
||||||
local self = setmetatable(Layout.new(args), Columns)
|
local self = Layout.new(args)
|
||||||
|
|
||||||
self.advance = columnadvance
|
self.advance = columnadvance
|
||||||
self.prev = 'left'
|
self.prev = 'left'
|
||||||
|
9
rows.lua
9
rows.lua
@ -1,10 +1,7 @@
|
|||||||
local BASE = (...):gsub('rows')
|
local BASE = (...):gsub('rows', '')
|
||||||
|
|
||||||
local Layout = require(BASE..'layout')
|
local Layout = require(BASE..'layout')
|
||||||
|
|
||||||
local Rows = setmetatable({}, Layout)
|
|
||||||
Rows.__index = Rows
|
|
||||||
|
|
||||||
|
|
||||||
-- Advance position to next row,
|
-- Advance position to next row,
|
||||||
-- given current position, widget dimensions and padding.
|
-- given current position, widget dimensions and padding.
|
||||||
@ -12,8 +9,8 @@ local function rowadvance(x,y, ww,wh, padding)
|
|||||||
return x, y + wh + padding
|
return x, y + wh + padding
|
||||||
end
|
end
|
||||||
|
|
||||||
function Rows.new(args)
|
function Rows(args)
|
||||||
local self = setmetatable(Layout.new(args), Rows)
|
local self = Layout.new(args)
|
||||||
|
|
||||||
self.advance = rowadvance
|
self.advance = rowadvance
|
||||||
self.prev = 'up'
|
self.prev = 'up'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user