2017-04-26 16:21:36 +02:00
|
|
|
--[[--
|
2013-10-18 22:38:07 +02:00
|
|
|
CenterContainer centers its content (1 widget) within its own dimensions
|
|
|
|
|
--]]
|
2017-04-26 16:21:36 +02:00
|
|
|
|
|
|
|
|
local WidgetContainer = require("ui/widget/container/widgetcontainer")
|
|
|
|
|
|
2013-10-18 22:38:07 +02:00
|
|
|
local CenterContainer = WidgetContainer:new()
|
|
|
|
|
|
|
|
|
|
function CenterContainer:paintTo(bb, x, y)
|
2015-09-13 01:09:00 -07:00
|
|
|
local content_size = self[1]:getSize()
|
2019-08-23 19:53:53 +02:00
|
|
|
--- @fixme
|
2016-02-10 10:30:05 -08:00
|
|
|
-- if content_size.w > self.dimen.w or content_size.h > self.dimen.h then
|
2014-03-13 21:52:43 +08:00
|
|
|
-- throw error? paint to scrap buffer and blit partially?
|
|
|
|
|
-- for now, we ignore this
|
2016-02-10 10:30:05 -08:00
|
|
|
-- end
|
2014-03-13 21:52:43 +08:00
|
|
|
local x_pos = x
|
|
|
|
|
local y_pos = y
|
|
|
|
|
if self.ignore ~= "height" then
|
2015-09-13 01:09:00 -07:00
|
|
|
y_pos = y + math.floor((self.dimen.h - content_size.h)/2)
|
2014-03-13 21:52:43 +08:00
|
|
|
end
|
|
|
|
|
if self.ignore ~= "width" then
|
2015-09-13 01:09:00 -07:00
|
|
|
x_pos = x + math.floor((self.dimen.w - content_size.w)/2)
|
2014-03-13 21:52:43 +08:00
|
|
|
end
|
|
|
|
|
self[1]:paintTo(bb, x_pos, y_pos)
|
2013-10-18 22:38:07 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return CenterContainer
|