2018-03-30 10:46:36 +00:00
|
|
|
local Device = require("device")
|
2013-10-22 15:11:31 +00:00
|
|
|
local Event = require("ui/event")
|
2018-03-18 10:42:35 +00:00
|
|
|
local InputContainer = require("ui/widget/container/inputcontainer")
|
|
|
|
local logger = require("logger")
|
2013-10-22 15:11:31 +00:00
|
|
|
local UIManager = require("ui/uimanager")
|
2012-06-10 15:52:09 +00:00
|
|
|
--[[
|
|
|
|
Wrapper Widget that manages focus for a whole dialog
|
|
|
|
|
|
|
|
supports a 2D model of active elements
|
|
|
|
|
|
|
|
e.g.:
|
2014-03-13 13:52:43 +00:00
|
|
|
layout = {
|
2018-03-14 21:16:38 +00:00
|
|
|
{ textinput, textinput, item },
|
|
|
|
{ okbutton, cancelbutton, item },
|
|
|
|
{ nil, item, nil },
|
|
|
|
{ nil, item, nil },
|
|
|
|
{ nil, item, nil },
|
2014-03-13 13:52:43 +00:00
|
|
|
}
|
2018-03-14 21:16:38 +00:00
|
|
|
Navigate the layout by trying to avoid not set or nil value.
|
|
|
|
Provide a simple wrap around in the vertical direction.
|
|
|
|
The first element of the first table must be valid to ensure
|
|
|
|
to not get stuck in an invalid position.
|
2012-06-10 15:52:09 +00:00
|
|
|
|
|
|
|
but notice that this does _not_ do the layout for you,
|
|
|
|
it rather defines an abstract layout.
|
|
|
|
]]
|
2013-10-18 20:38:07 +00:00
|
|
|
local FocusManager = InputContainer:new{
|
2014-03-13 13:52:43 +00:00
|
|
|
selected = nil, -- defaults to x=1, y=1
|
|
|
|
layout = nil, -- mandatory
|
|
|
|
movement_allowed = { x = true, y = true }
|
2012-06-10 15:52:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function FocusManager:init()
|
2015-09-13 08:08:31 +00:00
|
|
|
if not self.selected then
|
|
|
|
self.selected = { x = 1, y = 1 }
|
|
|
|
end
|
2018-03-30 10:46:36 +00:00
|
|
|
if Device:hasKeys() then
|
|
|
|
self.key_events = {
|
|
|
|
-- these will all generate the same event, just with different arguments
|
|
|
|
FocusUp = { {"Up"}, doc = "move focus up", event = "FocusMove", args = {0, -1} },
|
|
|
|
FocusDown = { {"Down"}, doc = "move focus down", event = "FocusMove", args = {0, 1} },
|
|
|
|
FocusLeft = { {"Left"}, doc = "move focus left", event = "FocusMove", args = {-1, 0} },
|
|
|
|
FocusRight = { {"Right"}, doc = "move focus right", event = "FocusMove", args = {1, 0} },
|
|
|
|
}
|
|
|
|
end
|
2012-06-10 15:52:09 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function FocusManager:onFocusMove(args)
|
2014-03-13 13:52:43 +00:00
|
|
|
local dx, dy = unpack(args)
|
|
|
|
|
|
|
|
if (dx ~= 0 and not self.movement_allowed.x)
|
|
|
|
or (dy ~= 0 and not self.movement_allowed.y) then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
if not self.layout or not self.layout[self.selected.y] or not self.layout[self.selected.y][self.selected.x] then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
local current_item = self.layout[self.selected.y][self.selected.x]
|
|
|
|
while true do
|
2018-03-14 21:16:38 +00:00
|
|
|
if not self.layout[self.selected.y + dy] then
|
2018-03-18 10:42:35 +00:00
|
|
|
--horizontal border, try to wraparound
|
2018-03-21 11:21:48 +00:00
|
|
|
if not self:_wrapAround(dy) then
|
2014-03-13 13:52:43 +00:00
|
|
|
break
|
|
|
|
end
|
2018-03-21 11:21:48 +00:00
|
|
|
elseif not self.layout[self.selected.y + dy][self.selected.x] then
|
|
|
|
--inner horizontal border, trying to be clever and step down
|
2018-03-30 10:46:36 +00:00
|
|
|
if not self:_verticalStep(dy) then
|
|
|
|
break
|
|
|
|
end
|
2018-03-14 21:16:38 +00:00
|
|
|
elseif not self.layout[self.selected.y + dy][self.selected.x + dx] then
|
2018-03-18 10:42:35 +00:00
|
|
|
--vertical border, no wraparound
|
2018-03-14 21:16:38 +00:00
|
|
|
break
|
2014-03-13 13:52:43 +00:00
|
|
|
else
|
|
|
|
self.selected.y = self.selected.y + dy
|
2018-03-14 21:16:38 +00:00
|
|
|
self.selected.x = self.selected.x + dx
|
2017-10-07 10:11:00 +00:00
|
|
|
end
|
2018-03-21 11:21:48 +00:00
|
|
|
logger.dbg("Cursor position : ".. self.selected.y .." : "..self.selected.x)
|
2014-03-13 13:52:43 +00:00
|
|
|
|
|
|
|
if self.layout[self.selected.y][self.selected.x] ~= current_item
|
|
|
|
or not self.layout[self.selected.y][self.selected.x].is_inactive then
|
|
|
|
-- we found a different object to focus
|
|
|
|
current_item:handleEvent(Event:new("Unfocus"))
|
|
|
|
self.layout[self.selected.y][self.selected.x]:handleEvent(Event:new("Focus"))
|
2018-06-02 16:10:55 +00:00
|
|
|
-- trigger a fast repaint, this does not count toward a flashing eink resfresh
|
2014-11-30 00:12:00 +00:00
|
|
|
-- TODO: is this really needed?
|
2018-03-14 21:16:38 +00:00
|
|
|
UIManager:setDirty(self.show_parent or self, "fast")
|
2014-03-13 13:52:43 +00:00
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return true
|
2012-06-10 18:14:29 +00:00
|
|
|
end
|
|
|
|
|
2018-03-21 11:21:48 +00:00
|
|
|
function FocusManager:_wrapAround(dy)
|
2018-03-14 21:16:38 +00:00
|
|
|
--go to the last valid item directly above or below the current item
|
|
|
|
--return false if none could be found
|
|
|
|
local y = self.selected.y
|
2018-03-21 11:21:48 +00:00
|
|
|
while self.layout[y - dy] do
|
2018-03-14 21:16:38 +00:00
|
|
|
y = y - dy
|
|
|
|
end
|
|
|
|
if y ~= self.selected.y then
|
|
|
|
self.selected.y = y
|
2018-03-21 11:21:48 +00:00
|
|
|
if not self.layout[self.selected.y][self.selected.x] then
|
|
|
|
--call verticalStep on the current line to perform the search
|
2018-03-30 10:46:36 +00:00
|
|
|
return self:_verticalStep(0)
|
2018-03-21 11:21:48 +00:00
|
|
|
end
|
2018-03-14 21:16:38 +00:00
|
|
|
return true
|
|
|
|
else
|
|
|
|
return false
|
|
|
|
end
|
2012-06-10 18:14:29 +00:00
|
|
|
end
|
2013-10-18 20:38:07 +00:00
|
|
|
|
2018-03-21 11:21:48 +00:00
|
|
|
function FocusManager:_verticalStep(dy)
|
|
|
|
local x = self.selected.x
|
2018-03-30 10:46:36 +00:00
|
|
|
if type(self.layout[self.selected.y + dy]) ~= "table" or self.layout[self.selected.y + dy] == {} then
|
|
|
|
logger.err("[FocusManager] : Malformed layout")
|
|
|
|
return false
|
|
|
|
end
|
2018-03-21 11:21:48 +00:00
|
|
|
--looking for the item on the line below, the closest on the left side
|
|
|
|
while not self.layout[self.selected.y + dy][x] do
|
|
|
|
x = x - 1
|
|
|
|
if x == 0 then
|
|
|
|
--if he is not on the left, must be on the right
|
|
|
|
x = self.selected.x
|
|
|
|
while not self.layout[self.selected.y + dy][x] do
|
|
|
|
x = x + 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
self.selected.x = x
|
|
|
|
self.selected.y = self.selected.y + dy
|
2018-03-30 10:46:36 +00:00
|
|
|
return true
|
2018-03-21 11:21:48 +00:00
|
|
|
end
|
|
|
|
|
2015-09-13 08:09:00 +00:00
|
|
|
function FocusManager:getFocusItem()
|
|
|
|
return self.layout[self.selected.y][self.selected.x]
|
|
|
|
end
|
|
|
|
|
2013-10-18 20:38:07 +00:00
|
|
|
return FocusManager
|