mirror of
https://github.com/koreader/koreader
synced 2024-11-16 06:12:56 +00:00
22678ee5ff
* Unbreak the Device test * Rename a few things * Tweak a few comments
37 lines
1.2 KiB
Lua
37 lines
1.2 KiB
Lua
local Device = require("device")
|
|
local Event = require("ui/event")
|
|
local UIManager = require("ui/uimanager")
|
|
local _ = require("gettext")
|
|
|
|
-- This whole menu is hidden behind a hasKeys device cap.
|
|
local PhysicalButtons = {
|
|
text = _("Physical buttons"), -- Mainly so as to differentiate w/ "Page Turns" when in readermenu...
|
|
sub_item_table = {
|
|
{
|
|
text = _("Invert page turn buttons"),
|
|
checked_func = function()
|
|
return G_reader_settings:isTrue("input_invert_page_turn_keys")
|
|
end,
|
|
callback = function()
|
|
UIManager:broadcastEvent(Event:new("SwapPageTurnButtons"))
|
|
end,
|
|
}
|
|
},
|
|
}
|
|
|
|
if Device:canKeyRepeat() then
|
|
table.insert(PhysicalButtons.sub_item_table, {
|
|
text = _("Disable key repeat"),
|
|
help_text = _("Useful if you don't like the behavior or if your device has faulty switches"),
|
|
checked_func = function()
|
|
return G_reader_settings:isTrue("input_no_key_repeat")
|
|
end,
|
|
callback = function()
|
|
UIManager:broadcastEvent(Event:new("ToggleKeyRepeat"))
|
|
end,
|
|
separator = true,
|
|
})
|
|
end
|
|
|
|
return PhysicalButtons
|