2
0
mirror of https://github.com/koreader/koreader synced 2024-11-13 19:11:25 +00:00
koreader/frontend/ui/widget/container/bottomcontainer.lua

34 lines
1003 B
Lua
Raw Normal View History

2017-04-26 14:21:36 +00:00
--[[--
2013-10-18 20:38:07 +00:00
BottomContainer contains its content (1 widget) at the bottom of its own
dimensions
--]]
2017-04-26 14:21:36 +00:00
local Geom = require("ui/geometry")
local WidgetContainer = require("ui/widget/container/widgetcontainer")
2013-10-18 20:38:07 +00:00
local BottomContainer = WidgetContainer:new()
function BottomContainer:paintTo(bb, x, y)
2014-03-13 13:52:43 +00:00
local contentSize = self[1]:getSize()
2016-02-10 18:30:05 +00:00
-- FIXME
-- if contentSize.w > self.dimen.w or contentSize.h > self.dimen.h then
2014-03-13 13:52:43 +00:00
-- throw error? paint to scrap buffer and blit partially?
-- for now, we ignore this
2016-02-10 18:30:05 +00:00
-- end
2014-03-13 13:52:43 +00:00
self[1]:paintTo(bb,
x + math.floor((self.dimen.w - contentSize.w)/2),
y + (self.dimen.h - contentSize.h))
2013-10-18 20:38:07 +00:00
end
function BottomContainer:contentRange()
2014-03-13 13:52:43 +00:00
local contentSize = self[1]:getSize()
return Geom:new{
x = (self.dimen.x or 0) + math.floor((self.dimen.w - contentSize.w)/2),
y = (self.dimen.y or 0) + self.dimen.h - contentSize.h,
w = contentSize.w,
h = contentSize.h
}
end
2013-10-18 20:38:07 +00:00
return BottomContainer