mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
cleanup: expand tab to 4 spaces
This commit is contained in:
@@ -8,24 +8,24 @@ dimensions
|
||||
local BottomContainer = WidgetContainer:new()
|
||||
|
||||
function BottomContainer:paintTo(bb, x, y)
|
||||
local contentSize = self[1]:getSize()
|
||||
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 + math.floor((self.dimen.w - contentSize.w)/2),
|
||||
y + (self.dimen.h - contentSize.h))
|
||||
local contentSize = self[1]:getSize()
|
||||
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 + math.floor((self.dimen.w - contentSize.w)/2),
|
||||
y + (self.dimen.h - contentSize.h))
|
||||
end
|
||||
|
||||
function BottomContainer:contentRange()
|
||||
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
|
||||
}
|
||||
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
|
||||
|
||||
return BottomContainer
|
||||
|
||||
Reference in New Issue
Block a user