Kindle4NT improvements (#3745)

* [device][kindle4] add fake event to kindle4

* modify focusmanager to allow for more complex layout

The focusmanager now naviguate the layout by avoiding nil value
instead of relying on table lenght. It should be completely backward
compatible

* add Dpad naviguation to the touchmenu

* fix crash because virtualkeyboard on non touch device

the kindle4NT has no keyboard nor touch, the fix open the virtual
keyboard so koreader dont crash but it's not useable

* Enable device with keys to use the touchmenu

* Don't get stuck in reader progress statistics plugin

* [underlinecontainer] Fix and remove unused function

References #1898.
This commit is contained in:
onde2rock
2018-03-14 22:16:38 +01:00
committed by Frans de Jonge
parent 9849d89f0e
commit e8aab49ee9
12 changed files with 148 additions and 69 deletions

View File

@@ -88,6 +88,9 @@ if Device.isTouchDevice() then
end)
end
end
elseif not Device.hasKeyboard() then
Keyboard = require("ui/widget/virtualkeyboard")
function InputText:initEventListener() end --do nothing but doesn't crash for now
else
Keyboard = require("ui/widget/physicalkeyboard")
function InputText:initEventListener() end