2
0
mirror of https://github.com/koreader/koreader synced 2024-11-10 01:10:34 +00:00
koreader/frontend/ui/widget/container/centercontainer.lua

36 lines
1000 B
Lua
Raw Normal View History

2017-04-26 14:21:36 +00:00
--[[--
2013-10-18 20:38:07 +00:00
CenterContainer centers its content (1 widget) within its own dimensions
--]]
2017-04-26 14:21:36 +00:00
local WidgetContainer = require("ui/widget/container/widgetcontainer")
2013-10-18 20:38:07 +00:00
local CenterContainer = WidgetContainer:new()
function CenterContainer:paintTo(bb, x, y)
local content_size = self[1]:getSize()
-- check if content is bigger than container
if self.ignore_if_over == "height" then -- align upper borders
if self.dimen.h < content_size.h then
self.ignore = "height"
end
end
if self.ignore_if_over == "width" then -- align left borders
if self.dimen.w < content_size.w then
self.ignore = "width"
end
end
2014-03-13 13:52:43 +00:00
local x_pos = x
local y_pos = y
if self.ignore ~= "height" then
y_pos = y + math.floor((self.dimen.h - content_size.h)/2)
2014-03-13 13:52:43 +00:00
end
if self.ignore ~= "width" then
x_pos = x + math.floor((self.dimen.w - content_size.w)/2)
2014-03-13 13:52:43 +00:00
end
self[1]:paintTo(bb, x_pos, y_pos)
2013-10-18 20:38:07 +00:00
end
return CenterContainer