mirror of
https://github.com/koreader/koreader
synced 2024-11-18 03:25:46 +00:00
a2dcfe9aec
This commit standardizes the various todos around the code a bit in a manner recognized by LDoc. Besides drawing more attention by being displayed in the developer docs, they're also extractable with LDoc on the command line: ```sh ldoc --tags todo,fixme *.lua ``` However, whether that particular usage offers any advantage over other search tools is questionable at best. * and some random beautification
20 lines
598 B
Lua
20 lines
598 B
Lua
--[[--
|
|
LeftContainer aligns its content (1 widget) at the left of its own dimensions
|
|
--]]
|
|
|
|
local WidgetContainer = require("ui/widget/container/widgetcontainer")
|
|
|
|
local LeftContainer = WidgetContainer:new()
|
|
|
|
function LeftContainer:paintTo(bb, x, y)
|
|
local contentSize = self[1]:getSize()
|
|
--- @fixme
|
|
-- if contentSize.w > self.dimen.w or contentSize.h > self.dimen.h then
|
|
-- throw error? paint to scrap buffer and blit partially?
|
|
-- for now, we ignore this
|
|
-- end
|
|
self[1]:paintTo(bb, x , y + math.floor((self.dimen.h - contentSize.h)/2))
|
|
end
|
|
|
|
return LeftContainer
|