2
0
mirror of https://github.com/koreader/koreader synced 2024-11-18 03:25:46 +00:00
koreader/frontend/ui/widget/container/widgetcontainer.lua

121 lines
3.2 KiB
Lua
Raw Normal View History

2016-12-05 00:41:01 +00:00
--[[--
2016-12-11 03:08:31 +00:00
WidgetContainer is a container for one or multiple Widgets. It is the base
class for all the container widgets.
2016-12-05 00:41:01 +00:00
2016-12-11 03:08:31 +00:00
Child widgets are stored in WidgetContainer as conventional array items:
WidgetContainer:new{
ChildWidgetFoo:new{},
ChildWidgetBar:new{},
...
}
It handles event propagation and painting (with different alignments) for its children.
2016-12-05 00:41:01 +00:00
]]
2013-10-18 20:38:07 +00:00
local Geom = require("ui/geometry")
local Widget = require("ui/widget/widget")
local Device = require("device")
2013-10-18 20:38:07 +00:00
if Device.should_restrict_JIT then
require("jit").off(true, true)
end
2013-10-18 20:38:07 +00:00
local WidgetContainer = Widget:new()
function WidgetContainer:init()
if self.dimen then
if self.initDimen then
self:initDimen()
else
if not self.dimen.w then
self.dimen.w = self[1]:getSize().w
end
if not self.dimen.h then
self.dimen.h = self[1]:getSize().h
end
end
2014-03-13 13:52:43 +00:00
end
2013-10-18 20:38:07 +00:00
end
function WidgetContainer:getSize()
2014-03-13 13:52:43 +00:00
if self.dimen then
-- fixed size
return self.dimen
elseif self[1] then
-- return size of first child widget
return self[1]:getSize()
else
return Geom:new{ w = 0, h = 0 }
end
2013-10-18 20:38:07 +00:00
end
2016-12-05 00:41:01 +00:00
--[[--
2017-11-15 08:02:33 +00:00
Deletes all child widgets.
2016-12-05 00:41:01 +00:00
]]
2013-10-18 20:38:07 +00:00
function WidgetContainer:clear()
2014-03-13 13:52:43 +00:00
while table.remove(self) do end
2013-10-18 20:38:07 +00:00
end
function WidgetContainer:paintTo(bb, x, y)
2014-03-13 13:52:43 +00:00
-- default to pass request to first child widget
if self[1] then
x = x + (self.dimen.x or 0)
y = y + (self.dimen.y or 0)
if self.align == "top" then
local contentSize = self[1]:getSize()
self[1]:paintTo(bb,
x + math.floor((self.dimen.w - contentSize.w)/2), y)
elseif self.align == "bottom" then
local contentSize = self[1]:getSize()
self[1]:paintTo(bb,
x + math.floor((self.dimen.w - contentSize.w)/2),
y + (self.dimen.h - contentSize.h))
elseif self.align == "center" then
local contentSize = self[1]:getSize()
self[1]:paintTo(bb,
x + math.floor((self.dimen.w - contentSize.w)/2),
y + math.floor((self.dimen.h - contentSize.h)/2))
2014-03-13 13:52:43 +00:00
else
return self[1]:paintTo(bb, x, y)
end
end
2013-10-18 20:38:07 +00:00
end
function WidgetContainer:propagateEvent(event)
2014-03-13 13:52:43 +00:00
-- propagate to children
for _, widget in ipairs(self) do
if widget:handleEvent(event) then
-- stop propagating when an event handler returns true
return true
end
end
return false
2013-10-18 20:38:07 +00:00
end
2016-12-05 00:41:01 +00:00
--[[--
WidgetContainer will pass event to its children by calling their handleEvent
2016-12-11 03:08:31 +00:00
methods. If no child consumes the event (by returning true), it will try
to react to the event by itself.
2016-12-05 00:41:01 +00:00
@tparam ui.event.Event event
2017-11-15 08:02:33 +00:00
@treturn bool true if event is consumed, otherwise false. A consumed event will
2016-12-05 00:41:01 +00:00
not be sent to other widgets.
]]
2013-10-18 20:38:07 +00:00
function WidgetContainer:handleEvent(event)
2014-03-13 13:52:43 +00:00
if not self:propagateEvent(event) then
-- call our own standard event handler
return Widget.handleEvent(self, event)
else
return true
end
2013-10-18 20:38:07 +00:00
end
function WidgetContainer:free()
2014-03-13 13:52:43 +00:00
for _, widget in ipairs(self) do
if widget.free then widget:free() end
end
2013-10-18 20:38:07 +00:00
end
return WidgetContainer