Files
koreader/plugins/timesync.koplugin/main.lua
poire-z 850be52177 Keep some menus open when Tap or Hold (#4189)
TouchMenu: added options to menu items with the following defaults:
    keep_menu_open = false
    hold_keep_menu_open = true
So, default for Tap callback is to close menu, and for Hold callback
to keep menu open.
In both cases, provide the TouchMenu instance as the 1st argument to
the callback functions (instead of a refresh_menu_func I added in #3941)
so the callback can do more things, like closing, refreshing,
changing menu items text and re-ordering...

ReaderZooming: show symbol for default (like it was done for
ReaderFont, ReaderHyphenation...)
TextEditor plugin: update the previously opened files list in real
time, so the menu can be kept open and used as the TextEditor main
interface.
SSH plugin: keep menu open and update the Start/Stop state in real time
ReadTimer plugin: tried to do what feels right (but I don't use it)

Also remove forgotten cp in the move/paste file code
2018-09-04 23:55:58 +02:00

78 lines
1.9 KiB
Lua

local Device = require("device")
local command
-- TODO(hzj-jie): Does pocketbook provide ntpdate?
if Device:isKobo() then
command = "ntpd -q -n -p pool.ntp.org"
elseif Device:isKindle() or Device:isPocketBook() then
command = "ntpdate pool.ntp.org"
else
return { disabled = true, }
end
local InfoMessage = require("ui/widget/infomessage")
local UIManager = require("ui/uimanager")
local WidgetContainer = require("ui/widget/container/widgetcontainer")
local T = require("ffi/util").template
local _ = require("gettext")
local NetworkMgr = require("ui/network/manager")
local TimeSync = WidgetContainer:new{
name = "timesync",
}
local function currentTime()
local std_out = io.popen("date")
if std_out then
local result = std_out:read("*all")
std_out:close()
if result ~= nil then
result = result:gsub("\n", "")
return T(_("New time is %1."), result)
end
end
return _("Time synchronized.")
end
local function execute()
local info = InfoMessage:new{
text = _("Synchronizing time. This may take several seconds.")
}
UIManager:show(info)
UIManager:forceRePaint()
local txt
if os.execute(command) ~= 0 then
txt = _("Failed to retrieve time from server. Please check your network configuration.")
else
txt = currentTime()
end
os.execute("hwclock -u -w")
UIManager:close(info)
UIManager:show(InfoMessage:new{
text = txt,
timeout = 3,
})
end
local menuItem = {
text = _("Synchronize time"),
keep_menu_open = true,
callback = function()
if NetworkMgr:isOnline() then
execute()
else
NetworkMgr:promptWifiOn()
end
end
}
function TimeSync:init()
self.ui.menu:registerToMainMenu(self)
end
function TimeSync:addToMainMenu(menu_items)
menu_items.synchronize_time = menuItem
end
return TimeSync