2
0
mirror of https://github.com/koreader/koreader synced 2024-11-11 19:11:14 +00:00
koreader/frontend/ui/elements/menu_activate.lua
hius07 e5f28a0f60
"Page turns" menu development (#8022)
Make "Taps and gestures - Page turns" available only in reader.
Move there other page turn related menu items from Navigation.
Remove duplicated code. Added standard "star" for default RTL.
2021-07-25 23:59:06 +02:00

52 lines
1.8 KiB
Lua

local InfoMessage = require("ui/widget/infomessage")
local UIManager = require("ui/uimanager")
local _ = require("gettext")
return {
text = _("Activate menu"),
sub_item_table = {
{
text = _("With a tap"),
checked_func = function()
return G_reader_settings:readSetting("activate_menu") ~= "swipe"
end,
callback = function()
if G_reader_settings:readSetting("activate_menu") ~= "swipe" then
G_reader_settings:saveSetting("activate_menu", "swipe")
else
G_reader_settings:saveSetting("activate_menu", "swipe_tap")
end
UIManager:show(InfoMessage:new{
text = _("This will take effect on next restart."),
})
end,
},
{
text = _("With a swipe"),
checked_func = function()
return G_reader_settings:readSetting("activate_menu") ~= "tap"
end,
callback = function()
if G_reader_settings:readSetting("activate_menu") ~= "tap" then
G_reader_settings:saveSetting("activate_menu", "tap")
else
G_reader_settings:saveSetting("activate_menu", "swipe_tap")
end
UIManager:show(InfoMessage:new{
text = _("This will take effect on next restart."),
})
end,
separator = true,
},
{
text = _("Auto-show bottom menu"),
checked_func = function()
return G_reader_settings:nilOrTrue("show_bottom_menu")
end,
callback = function()
G_reader_settings:flipNilOrTrue("show_bottom_menu")
end,
},
}
}