2
0
mirror of https://github.com/koreader/koreader synced 2024-10-31 21:20:20 +00:00
koreader/frontend/ui/widget/horizontalgroup.lua

62 lines
1.5 KiB
Lua
Raw Normal View History

2013-10-18 20:38:07 +00:00
local WidgetContainer = require("ui/widget/container/widgetcontainer")
--[[
A Layout widget that puts objects besides each others
--]]
local HorizontalGroup = WidgetContainer:new{
2014-03-13 13:52:43 +00:00
align = "center",
_size = nil,
2013-10-18 20:38:07 +00:00
}
function HorizontalGroup:getSize()
2014-03-13 13:52:43 +00:00
if not self._size then
self._size = { w = 0, h = 0 }
self._offsets = { }
for i, widget in ipairs(self) do
local w_size = widget:getSize()
self._offsets[i] = {
x = self._size.w,
y = w_size.h
}
self._size.w = self._size.w + w_size.w
if w_size.h > self._size.h then
self._size.h = w_size.h
end
end
end
return self._size
2013-10-18 20:38:07 +00:00
end
function HorizontalGroup:paintTo(bb, x, y)
2014-03-13 13:52:43 +00:00
local size = self:getSize()
for i, widget in ipairs(self) do
if self.align == "center" then
widget:paintTo(bb,
x + self._offsets[i].x,
y + math.floor((size.h - self._offsets[i].y) / 2))
elseif self.align == "top" then
widget:paintTo(bb, x + self._offsets[i].x, y)
elseif self.align == "bottom" then
widget:paintTo(bb, x + self._offsets[i].x, y + size.h - self._offsets[i].y)
end
end
2013-10-18 20:38:07 +00:00
end
function HorizontalGroup:clear()
2014-03-13 13:52:43 +00:00
self:free()
WidgetContainer.clear(self)
2013-10-18 20:38:07 +00:00
end
function HorizontalGroup:resetLayout()
2014-03-13 13:52:43 +00:00
self._size = nil
self._offsets = {}
2013-10-18 20:38:07 +00:00
end
function HorizontalGroup:free()
2014-03-13 13:52:43 +00:00
self:resetLayout()
WidgetContainer.free(self)
2013-10-18 20:38:07 +00:00
end
return HorizontalGroup