2019-09-01 19:30:19 +00:00
|
|
|
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
|
2020-10-18 18:38:17 +00:00
|
|
|
logger.dbg("AutoTurn:_schedule registered settings_id",
|
2019-09-01 19:30:19 +00:00
|
|
|
settings_id,
|
2020-10-18 18:38:17 +00:00
|
|
|
"does not equal to current one",
|
2019-09-01 19:30:19 +00:00
|
|
|
self.settings_id)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local delay = self.last_action_sec + self.autoturn_sec - os.time()
|
|
|
|
|
|
|
|
if delay <= 0 then
|
2020-09-13 17:00:03 +00:00
|
|
|
if UIManager:getTopWidget() == "ReaderUI" then
|
2019-09-01 19:30:19 +00:00
|
|
|
logger.dbg("AutoTurn: go to next page")
|
|
|
|
self.ui:handleEvent(Event:new("GotoViewRel", self.autoturn_distance))
|
|
|
|
end
|
2020-10-18 18:38:17 +00:00
|
|
|
logger.dbg("AutoTurn: schedule in", self.autoturn_sec)
|
2019-09-01 19:30:19 +00:00
|
|
|
UIManager:scheduleIn(self.autoturn_sec, function() self:_schedule(settings_id) end)
|
|
|
|
else
|
2020-10-18 18:38:17 +00:00
|
|
|
logger.dbg("AutoTurn: schedule in", delay)
|
2019-09-01 19:30:19 +00:00
|
|
|
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
|
2020-10-18 18:38:17 +00:00
|
|
|
logger.dbg("AutoTurn: deprecateLastTask", self.settings_id)
|
2019-09-01 19:30:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function AutoTurn:_start()
|
|
|
|
if self:_enabled() then
|
2020-10-18 18:38:17 +00:00
|
|
|
local now_ts = os.time()
|
|
|
|
logger.dbg("AutoTurn: start at", now_ts)
|
2019-09-01 19:30:19 +00:00
|
|
|
PluginShare.pause_auto_suspend = true
|
2020-10-18 18:38:17 +00:00
|
|
|
self.last_action_sec = now_ts
|
2019-09-01 19:30:19 +00:00
|
|
|
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 = {
|
2020-10-09 05:40:23 +00:00
|
|
|
sorting_hint = "navi",
|
2019-09-01 19:30:19 +00:00
|
|
|
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 {
|
2020-06-12 23:56:36 +00:00
|
|
|
width = math.floor(Screen:getWidth() * 0.6),
|
2019-09-01 19:30:19 +00:00
|
|
|
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 {
|
2020-06-12 23:56:36 +00:00
|
|
|
width = math.floor(Screen:getWidth() * 0.6),
|
2019-09-01 19:30:19 +00:00
|
|
|
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
|