mirror of
https://github.com/koreader/koreader
synced 2024-11-10 01:10:34 +00:00
179 lines
6.3 KiB
Lua
179 lines
6.3 KiB
Lua
|
local Device = require("device")
|
||
|
local Event = require("ui/event")
|
||
|
local PluginShare = require("pluginshare")
|
||
|
local UIManager = require("ui/uimanager")
|
||
|
local WidgetContainer = require("ui/widget/container/widgetcontainer")
|
||
|
local logger = require("logger")
|
||
|
local _ = require("gettext")
|
||
|
local T = require("ffi/util").template
|
||
|
|
||
|
local AutoTurn = WidgetContainer:new{
|
||
|
name = 'autoturn',
|
||
|
is_doc_only = true,
|
||
|
autoturn_sec = G_reader_settings:readSetting("autoturn_timeout_seconds") or 0,
|
||
|
autoturn_distance = G_reader_settings:readSetting("autoturn_distance") or 1,
|
||
|
enabled = G_reader_settings:isTrue("autoturn_enabled"),
|
||
|
settings_id = 0,
|
||
|
last_action_sec = os.time(),
|
||
|
}
|
||
|
|
||
|
function AutoTurn:_enabled()
|
||
|
return self.enabled and self.autoturn_sec > 0
|
||
|
end
|
||
|
|
||
|
function AutoTurn:_schedule(settings_id)
|
||
|
if not self:_enabled() then
|
||
|
logger.dbg("AutoTurn:_schedule is disabled")
|
||
|
return
|
||
|
end
|
||
|
if self.settings_id ~= settings_id then
|
||
|
logger.dbg("AutoTurn:_schedule registered settings_id ",
|
||
|
settings_id,
|
||
|
" does not equal to current one ",
|
||
|
self.settings_id)
|
||
|
return
|
||
|
end
|
||
|
|
||
|
local delay = self.last_action_sec + self.autoturn_sec - os.time()
|
||
|
|
||
|
if delay <= 0 then
|
||
|
if UIManager:getTopWidget() == "ReaderUI"then
|
||
|
logger.dbg("AutoTurn: go to next page")
|
||
|
self.ui:handleEvent(Event:new("GotoViewRel", self.autoturn_distance))
|
||
|
end
|
||
|
logger.dbg("AutoTurn: schedule at ", os.time() + self.autoturn_sec)
|
||
|
UIManager:scheduleIn(self.autoturn_sec, function() self:_schedule(settings_id) end)
|
||
|
else
|
||
|
logger.dbg("AutoTurn: schedule at ", os.time() + delay)
|
||
|
UIManager:scheduleIn(delay, function() self:_schedule(settings_id) end)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
function AutoTurn:_deprecateLastTask()
|
||
|
PluginShare.pause_auto_suspend = false
|
||
|
self.settings_id = self.settings_id + 1
|
||
|
logger.dbg("AutoTurn: deprecateLastTask ", self.settings_id)
|
||
|
end
|
||
|
|
||
|
function AutoTurn:_start()
|
||
|
if self:_enabled() then
|
||
|
logger.dbg("AutoTurn: start at ", os.time())
|
||
|
PluginShare.pause_auto_suspend = true
|
||
|
self.last_action_sec = os.time()
|
||
|
self:_schedule(self.settings_id)
|
||
|
|
||
|
local text
|
||
|
if self.autoturn_distance == 1 then
|
||
|
text = T(_("Autoturn is now active and will automatically turn the page every %1 seconds."),
|
||
|
self.autoturn_sec)
|
||
|
else
|
||
|
text = T(_("Autoturn is now active and will automatically scroll %1 % of the page every %2 seconds."),
|
||
|
self.autoturn_distance * 100,
|
||
|
self.autoturn_sec)
|
||
|
end
|
||
|
|
||
|
local InfoMessage = require("ui/widget/infomessage")
|
||
|
UIManager:show(InfoMessage:new{
|
||
|
text = text,
|
||
|
timeout = 3,
|
||
|
})
|
||
|
end
|
||
|
end
|
||
|
|
||
|
function AutoTurn:init()
|
||
|
UIManager.event_hook:registerWidget("InputEvent", self)
|
||
|
self.autoturn_sec = self.settings
|
||
|
self.ui.menu:registerToMainMenu(self)
|
||
|
self:_deprecateLastTask()
|
||
|
self:_start()
|
||
|
end
|
||
|
|
||
|
function AutoTurn:onCloseDocument()
|
||
|
logger.dbg("AutoTurn: onCloseDocument")
|
||
|
self:_deprecateLastTask()
|
||
|
end
|
||
|
|
||
|
function AutoTurn:onInputEvent()
|
||
|
logger.dbg("AutoTurn: onInputEvent")
|
||
|
self.last_action_sec = os.time()
|
||
|
end
|
||
|
|
||
|
-- We do not want autoturn to turn pages during the suspend process.
|
||
|
-- Unschedule it and restart after resume.
|
||
|
function AutoTurn:onSuspend()
|
||
|
logger.dbg("AutoTurn: onSuspend")
|
||
|
self:_deprecateLastTask()
|
||
|
end
|
||
|
|
||
|
function AutoTurn:onResume()
|
||
|
logger.dbg("AutoTurn: onResume")
|
||
|
self:_start()
|
||
|
end
|
||
|
|
||
|
function AutoTurn:addToMainMenu(menu_items)
|
||
|
menu_items.autoturn = {
|
||
|
text_func = function() return self:_enabled() and T(_("Autoturn (%1 s)"), self.autoturn_sec)
|
||
|
or _("Autoturn") end,
|
||
|
checked_func = function() return self:_enabled() end,
|
||
|
callback = function(menu)
|
||
|
local Screen = Device.screen
|
||
|
local SpinWidget = require("ui/widget/spinwidget")
|
||
|
local curr_items = G_reader_settings:readSetting("autoturn_timeout_seconds") or 30
|
||
|
local autoturn_spin = SpinWidget:new {
|
||
|
width = Screen:getWidth() * 0.6,
|
||
|
value = curr_items,
|
||
|
value_min = 0,
|
||
|
value_max = 240,
|
||
|
value_hold_step = 5,
|
||
|
ok_text = _("Set timeout"),
|
||
|
cancel_text = _("Disable"),
|
||
|
title_text = _("Timeout in seconds"),
|
||
|
cancel_callback = function()
|
||
|
self.enabled = false
|
||
|
G_reader_settings:flipFalse("autoturn_enabled")
|
||
|
self:_deprecateLastTask()
|
||
|
menu:updateItems()
|
||
|
end,
|
||
|
callback = function(autoturn_spin)
|
||
|
self.autoturn_sec = autoturn_spin.value
|
||
|
G_reader_settings:saveSetting("autoturn_timeout_seconds", autoturn_spin.value)
|
||
|
self.enabled = true
|
||
|
G_reader_settings:flipTrue("autoturn_enabled")
|
||
|
self:_deprecateLastTask()
|
||
|
self:_start()
|
||
|
menu:updateItems()
|
||
|
end,
|
||
|
}
|
||
|
UIManager:show(autoturn_spin)
|
||
|
end,
|
||
|
hold_callback = function(menu)
|
||
|
local Screen = Device.screen
|
||
|
local SpinWidget = require("ui/widget/spinwidget")
|
||
|
local curr_items = G_reader_settings:readSetting("autoturn_distance") or 1
|
||
|
local autoturn_spin = SpinWidget:new {
|
||
|
width = Screen:getWidth() * 0.6,
|
||
|
value = curr_items,
|
||
|
value_min = -20,
|
||
|
value_max = 20,
|
||
|
precision = "%.2f",
|
||
|
value_step = .1,
|
||
|
value_hold_step = .5,
|
||
|
ok_text = _("Set distance"),
|
||
|
title_text = _("Scrolling distance"),
|
||
|
callback = function(autoturn_spin)
|
||
|
self.autoturn_distance = autoturn_spin.value
|
||
|
G_reader_settings:saveSetting("autoturn_distance", autoturn_spin.value)
|
||
|
if self.enabled then
|
||
|
self:_deprecateLastTask()
|
||
|
self:_start()
|
||
|
end
|
||
|
menu:updateItems()
|
||
|
end,
|
||
|
}
|
||
|
UIManager:show(autoturn_spin)
|
||
|
end,
|
||
|
}
|
||
|
end
|
||
|
|
||
|
return AutoTurn
|