2017-09-18 17:04:36 +00:00
local DateWidget = require ( " ui/widget/datewidget " )
2014-11-21 14:41:14 +00:00
local Device = require ( " device " )
2019-09-19 14:51:47 +00:00
local Event = require ( " ui/event " )
2017-08-15 17:54:02 +00:00
local InfoMessage = require ( " ui/widget/infomessage " )
2014-11-21 14:41:14 +00:00
local Language = require ( " ui/language " )
2016-06-26 00:53:08 +00:00
local NetworkMgr = require ( " ui/network/manager " )
2014-11-21 14:41:14 +00:00
local UIManager = require ( " ui/uimanager " )
2017-08-15 17:54:02 +00:00
local TimeWidget = require ( " ui/widget/timewidget " )
2014-11-21 14:41:14 +00:00
local _ = require ( " gettext " )
2020-01-02 20:31:29 +00:00
local N_ = _.ngettext
2017-08-15 17:54:02 +00:00
local Screen = Device.screen
local T = require ( " ffi/util " ) . template
2014-11-21 14:41:14 +00:00
local common_settings = { }
2019-09-04 18:54:43 +00:00
if Device : isCervantes ( ) then
local util = require ( " util " )
if util.pathExists ( " /usr/bin/restart.sh " ) then
common_settings.start_bq = {
text = T ( _ ( " Start %1 reader app " ) , " BQ " ) ,
callback = function ( )
UIManager : quit ( )
UIManager._exit_code = 87
end ,
}
end
end
2014-11-21 14:41:14 +00:00
if Device : hasFrontlight ( ) then
2017-03-03 06:41:10 +00:00
common_settings.frontlight = {
2014-11-21 14:41:14 +00:00
text = _ ( " Frontlight " ) ,
callback = function ( )
2020-07-12 18:47:49 +00:00
UIManager : broadcastEvent ( Event : new ( " ShowFlDialog " ) )
2014-11-21 14:41:14 +00:00
end ,
2017-02-28 21:46:32 +00:00
}
2014-11-21 14:41:14 +00:00
end
2014-11-28 18:53:48 +00:00
2019-02-15 00:18:30 +00:00
if Device : canToggleMassStorage ( ) then
local MassStorage = require ( " ui/elements/mass_storage " )
-- mass storage settings
common_settings.mass_storage_settings = {
text = _ ( " USB mass storage " ) ,
sub_item_table = MassStorage : getSettingsMenuTable ( )
}
-- mass storage actions
2020-08-26 23:06:41 +00:00
common_settings.mass_storage_actions = MassStorage : getActionsMenuTable ( )
2019-02-15 00:18:30 +00:00
end
2020-10-21 23:17:34 +00:00
if Device : canToggleChargingLED ( ) then
-- Charging LED settings
common_settings.charging_led = {
text = _ ( " Turn on the power LED when charging " ) ,
checked_func = function ( )
return G_reader_settings : nilOrTrue ( " enable_charging_led " )
end ,
callback = function ( )
G_reader_settings : flipNilOrTrue ( " enable_charging_led " )
end
}
end
2020-09-01 14:39:47 +00:00
-- Associate OS level file extensions (must be off by default, because we're not associated initially)
if Device : canAssociateFileExtensions ( ) then
common_settings.file_ext_assoc = {
text = _ ( " Associate file extensions " ) ,
sub_item_table = require ( " ui/elements/file_ext_assoc " ) : getSettingsMenuTable ( )
}
end
2019-10-28 21:42:07 +00:00
-- This affects the topmenu, we want to be able to access it even if !Device:setDateTime()
common_settings.time = {
text = _ ( " Time and date " ) ,
sub_item_table = {
{
text = _ ( " 12-hour clock " ) ,
keep_menu_open = true ,
checked_func = function ( )
ReaderFooter: Don't duplicate a 12h clock time format option (#6973)
* ReaderFooter:
* Honor the global twelve_hour_clock setting, instead of
duplicating a local one.
(Re #6969)
* os.date is a thin wrapper around strftime, so we might be able to get
away with some not-quite-standard extensions...
These are *definitely* supported on Linux, but are *NOT* the glibc
extension (that'd be e.g., %-I), so, hopefully, they're somewhat
portable...
They are also supported on BSD/macOS.
They are *not* supported by the MS UCRT. That means MinGW-w64, too.
This *appears* to be supported on current Bionic (it might even support
said glibc format altering extensions).
* And of course, Windows is terrible, so, make this terribly ugly to not
break it there...
* Turns out BSD also supports the dash trim format extension, so, leave
the trimming to the libc, and handle the special-casing in a way that
doesn't create stupid locals.
* Random unrelated cleanup ^^.
(https://gitter.im/koreader/koreader?at=5fd24be492aa1c4ef5d11f31)
* Update the testsuite
(Because the default used to be 24h clock).
Changed the default to 24h clock ;p.
* Explain why we don't try to fix it in Lua
2020-12-12 09:44:35 +00:00
return G_reader_settings : isTrue ( " twelve_hour_clock " )
2019-10-28 21:42:07 +00:00
end ,
callback = function ( )
ReaderFooter: Don't duplicate a 12h clock time format option (#6973)
* ReaderFooter:
* Honor the global twelve_hour_clock setting, instead of
duplicating a local one.
(Re #6969)
* os.date is a thin wrapper around strftime, so we might be able to get
away with some not-quite-standard extensions...
These are *definitely* supported on Linux, but are *NOT* the glibc
extension (that'd be e.g., %-I), so, hopefully, they're somewhat
portable...
They are also supported on BSD/macOS.
They are *not* supported by the MS UCRT. That means MinGW-w64, too.
This *appears* to be supported on current Bionic (it might even support
said glibc format altering extensions).
* And of course, Windows is terrible, so, make this terribly ugly to not
break it there...
* Turns out BSD also supports the dash trim format extension, so, leave
the trimming to the libc, and handle the special-casing in a way that
doesn't create stupid locals.
* Random unrelated cleanup ^^.
(https://gitter.im/koreader/koreader?at=5fd24be492aa1c4ef5d11f31)
* Update the testsuite
(Because the default used to be 24h clock).
Changed the default to 24h clock ;p.
* Explain why we don't try to fix it in Lua
2020-12-12 09:44:35 +00:00
G_reader_settings : flipNilOrFalse ( " twelve_hour_clock " )
2019-10-28 21:42:07 +00:00
end ,
2017-09-18 17:04:36 +00:00
}
2017-08-15 17:54:02 +00:00
}
2019-10-28 21:42:07 +00:00
}
if Device : setDateTime ( ) then
table.insert ( common_settings.time . sub_item_table , {
text = _ ( " Set time " ) ,
keep_menu_open = true ,
callback = function ( )
local now_t = os.date ( " *t " )
local curr_hour = now_t.hour
local curr_min = now_t.min
local time_widget = TimeWidget : new {
hour = curr_hour ,
min = curr_min ,
ok_text = _ ( " Set time " ) ,
title_text = _ ( " Set time " ) ,
callback = function ( time )
if Device : setDateTime ( nil , nil , nil , time.hour , time.min ) then
now_t = os.date ( " *t " )
UIManager : show ( InfoMessage : new {
text = T ( _ ( " Current time: %1:%2 " ) , string.format ( " %02d " , now_t.hour ) ,
string.format ( " %02d " , now_t.min ) )
} )
else
UIManager : show ( InfoMessage : new {
text = _ ( " Time couldn't be set " ) ,
} )
end
end
}
UIManager : show ( time_widget )
end ,
} )
table.insert ( common_settings.time . sub_item_table , {
text = _ ( " Set date " ) ,
keep_menu_open = true ,
callback = function ( )
local now_t = os.date ( " *t " )
local curr_year = now_t.year
local curr_month = now_t.month
local curr_day = now_t.day
local date_widget = DateWidget : new {
year = curr_year ,
month = curr_month ,
day = curr_day ,
ok_text = _ ( " Set date " ) ,
title_text = _ ( " Set date " ) ,
callback = function ( time )
now_t = os.date ( " *t " )
if Device : setDateTime ( time.year , time.month , time.day , now_t.hour , now_t.min , now_t.sec ) then
now_t = os.date ( " *t " )
UIManager : show ( InfoMessage : new {
text = T ( _ ( " Current date: %1-%2-%3 " ) , now_t.year , string.format ( " %02d " , now_t.month ) ,
string.format ( " %02d " , now_t.day ) )
} )
else
UIManager : show ( InfoMessage : new {
text = _ ( " Date couldn't be set " ) ,
} )
end
end
}
UIManager : show ( date_widget )
end ,
} )
2017-08-15 17:54:02 +00:00
end
2019-03-26 22:09:08 +00:00
if Device : isKobo ( ) then
2019-06-28 20:19:25 +00:00
common_settings.ignore_sleepcover = {
text = _ ( " Ignore all sleepcover events " ) ,
2019-03-26 22:09:08 +00:00
checked_func = function ( )
return G_reader_settings : isTrue ( " ignore_power_sleepcover " )
end ,
callback = function ( )
G_reader_settings : flipNilOrFalse ( " ignore_power_sleepcover " )
2019-06-28 20:19:25 +00:00
G_reader_settings : flipFalse ( " ignore_open_sleepcover " )
UIManager : show ( InfoMessage : new {
text = _ ( " This will take effect on next restart. " ) ,
} )
end
}
common_settings.ignore_open_sleepcover = {
text = _ ( " Ignore sleepcover wakeup events " ) ,
checked_func = function ( )
return G_reader_settings : isTrue ( " ignore_open_sleepcover " )
end ,
callback = function ( )
G_reader_settings : flipNilOrFalse ( " ignore_open_sleepcover " )
G_reader_settings : flipFalse ( " ignore_power_sleepcover " )
2019-04-08 21:05:08 +00:00
UIManager : show ( InfoMessage : new {
text = _ ( " This will take effect on next restart. " ) ,
} )
2019-03-26 22:09:08 +00:00
end
}
end
2017-03-03 06:41:10 +00:00
common_settings.night_mode = {
2014-11-21 14:41:14 +00:00
text = _ ( " Night mode " ) ,
2019-04-08 21:05:08 +00:00
checked_func = function ( ) return G_reader_settings : isTrue ( " night_mode " ) end ,
2014-11-21 14:41:14 +00:00
callback = function ( )
2020-07-12 18:47:49 +00:00
UIManager : broadcastEvent ( Event : new ( " ToggleNightMode " ) )
2014-11-21 14:41:14 +00:00
end
2017-02-28 21:46:32 +00:00
}
2017-03-03 06:41:10 +00:00
common_settings.network = {
2014-11-21 14:41:14 +00:00
text = _ ( " Network " ) ,
2017-02-28 21:46:32 +00:00
}
2018-05-13 19:27:52 +00:00
NetworkMgr : getMenuTable ( common_settings )
2017-09-17 18:29:49 +00:00
2017-03-03 06:41:10 +00:00
common_settings.screen = {
2014-11-21 14:41:14 +00:00
text = _ ( " Screen " ) ,
2017-02-28 21:46:32 +00:00
}
2020-07-01 20:17:41 +00:00
common_settings.screen_rotation = require ( " ui/elements/screen_rotation_menu_table " )
2019-02-28 17:32:11 +00:00
common_settings.screen_dpi = require ( " ui/elements/screen_dpi_menu_table " )
common_settings.screen_eink_opt = require ( " ui/elements/screen_eink_opt_menu_table " )
common_settings.menu_activate = require ( " ui/elements/menu_activate " )
common_settings.screen_disable_double_tab = require ( " ui/elements/screen_disable_double_tap_table " )
2019-09-19 14:51:47 +00:00
common_settings.ignore_hold_corners = {
text = _ ( " Ignore hold on corners " ) ,
checked_func = function ( )
return G_reader_settings : isTrue ( " ignore_hold_corners " )
end ,
callback = function ( )
UIManager : broadcastEvent ( Event : new ( " IgnoreHoldCorners " ) )
end ,
}
2019-02-28 17:32:11 +00:00
2020-02-18 01:24:48 +00:00
-- NOTE: Allow disabling color if it's mistakenly enabled on a Grayscale screen (after a settings import?)
if Screen : isColorEnabled ( ) or Screen : isColorScreen ( ) then
2019-02-28 17:32:11 +00:00
common_settings.color_rendering = require ( " ui/elements/screen_color_menu_table " )
2017-10-01 17:23:06 +00:00
end
2019-01-17 20:44:15 +00:00
2017-09-17 18:29:49 +00:00
if Device : isAndroid ( ) then
2019-01-17 20:44:15 +00:00
-- android common settings
local isAndroid , android = pcall ( require , " android " )
if not isAndroid then return end
2019-07-26 21:04:20 +00:00
-- screen timeout options, disabled if device needs wakelocks.
common_settings.screen_timeout = require ( " ui/elements/screen_android " ) : getTimeoutMenuTable ( )
2019-01-17 20:44:15 +00:00
2020-05-05 09:18:18 +00:00
-- haptic feedback override
common_settings.android_haptic_feedback = {
text = _ ( " Force haptic feedback " ) ,
checked_func = function ( ) return G_reader_settings : isTrue ( " haptic_feedback_override " ) end ,
callback = function ( )
G_reader_settings : flipNilOrFalse ( " haptic_feedback_override " )
android.setHapticOverride ( G_reader_settings : isTrue ( " haptic_feedback_override " ) )
end ,
}
2019-08-01 16:27:24 +00:00
-- volume key events
common_settings.android_volume_keys = {
text = _ ( " Volume key page turning " ) ,
checked_func = function ( ) return not android.getVolumeKeysIgnored ( ) end ,
callback = function ( )
local is_ignored = android.getVolumeKeysIgnored ( )
android.setVolumeKeysIgnored ( not is_ignored )
G_reader_settings : saveSetting ( " android_ignore_volume_keys " , not is_ignored )
end ,
}
2019-11-05 23:52:44 +00:00
-- camera key events
common_settings.android_camera_key = {
text = _ ( " Camera key toggles touchscreen support " ) ,
checked_func = function ( ) return G_reader_settings : isTrue ( " camera_key_toggles_touchscreen " ) end ,
callback = function ( ) G_reader_settings : flipNilOrFalse ( " camera_key_toggles_touchscreen " ) end ,
}
2020-06-15 05:43:37 +00:00
common_settings.android_back_button = {
text = _ ( " Ignore back button completely " ) ,
checked_func = function ( ) return android.isBackButtonIgnored ( ) end ,
callback = function ( )
local is_ignored = android.isBackButtonIgnored ( )
android.setBackButtonIgnored ( not is_ignored )
G_reader_settings : saveSetting ( " android_ignore_back_button " , not is_ignored )
end ,
}
2019-07-05 20:57:58 +00:00
-- fullscreen toggle on devices with compatible fullscreen methods (apis 14-18)
if Device.firmware_rev < 19 then
2019-02-28 17:32:11 +00:00
common_settings.fullscreen = {
text = _ ( " Fullscreen " ) ,
checked_func = function ( ) return android.isFullscreen ( ) end ,
callback = function ( ) require ( " ui/elements/screen_android " ) : toggleFullscreen ( ) end ,
}
2019-01-17 20:44:15 +00:00
end
2020-11-04 18:15:07 +00:00
-- ignore battery optimization
if Device.firmware_rev >= 23 then
common_settings.ignore_battery_optimizations = {
text = _ ( " Battery optimizations " ) ,
checked_func = function ( ) return not android.settings . hasPermission ( " battery " ) end ,
callback = function ( )
local text = _ ( [ [
Go to Android battery optimization settings ?
You will be prompted with a permission management screen .
Please don ' t change any settings unless you know what you ' re doing . ] ] )
android.settings . requestPermission ( " battery " , text , _ ( " OK " ) , _ ( " Cancel " ) )
end ,
}
end
2017-09-17 18:29:49 +00:00
end
2019-02-28 19:42:00 +00:00
if Device : isTouchDevice ( ) then
2019-09-06 15:01:37 +00:00
common_settings.keyboard_layout = {
text = _ ( " Keyboard layout " ) ,
sub_item_table = require ( " ui/elements/menu_keyboard_layout " ) ,
}
2019-02-28 19:42:00 +00:00
common_settings.taps_and_gestures = {
text = _ ( " Taps and gestures " ) ,
}
end
2019-02-28 21:38:24 +00:00
common_settings.navigation = {
text = _ ( " Navigation " ) ,
}
local back_to_exit_str = {
prompt = { _ ( " Prompt " ) , _ ( " prompt " ) } ,
always = { _ ( " Always " ) , _ ( " always " ) } ,
disable = { _ ( " Disable " ) , _ ( " disable " ) } ,
}
common_settings.back_to_exit = {
text_func = function ( )
local back_to_exit = G_reader_settings : readSetting ( " back_to_exit " ) or " prompt "
return T ( _ ( " Back to exit (%1) " ) ,
back_to_exit_str [ back_to_exit ] [ 2 ] )
end ,
sub_item_table = {
{
text = back_to_exit_str.prompt [ 1 ] ,
checked_func = function ( )
local setting = G_reader_settings : readSetting ( " back_to_exit " )
return setting == " prompt " or setting == nil
end ,
callback = function ( )
G_reader_settings : saveSetting ( " back_to_exit " , " prompt " )
end ,
} ,
{
text = back_to_exit_str.always [ 1 ] ,
checked_func = function ( )
return G_reader_settings : readSetting ( " back_to_exit " )
== " always "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " back_to_exit " , " always " )
end ,
} ,
{
text = back_to_exit_str.disable [ 1 ] ,
checked_func = function ( )
return G_reader_settings : readSetting ( " back_to_exit " )
== " disable "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " back_to_exit " , " disable " )
end ,
} ,
} ,
}
common_settings.back_in_filemanager = {
text = _ ( " Back in file browser " ) ,
sub_item_table = {
{
text_func = function ( )
local back_to_exit = G_reader_settings : readSetting ( " back_to_exit " ) or " prompt "
return T ( _ ( " Back to exit (%1) " ) ,
back_to_exit_str [ back_to_exit ] [ 2 ] )
end ,
checked_func = function ( )
local back_in_filemanager = G_reader_settings : readSetting ( " back_in_filemanager " )
return back_in_filemanager == nil or back_in_filemanager == " default "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " back_in_filemanager " , " default " )
end ,
} ,
{
text = _ ( " Go to parent folder " ) ,
checked_func = function ( )
return G_reader_settings : readSetting ( " back_in_filemanager " )
== " parent_folder "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " back_in_filemanager " , " parent_folder " )
end ,
} ,
} ,
}
2020-11-03 21:51:11 +00:00
common_settings.back_in_reader = {
-- All these options are managed by ReaderBack
text = _ ( " Back in reader " ) ,
sub_item_table = {
{
text_func = function ( )
local back_to_exit = G_reader_settings : readSetting ( " back_to_exit " ) or " prompt "
return T ( _ ( " Back to exit (%1) " ) ,
back_to_exit_str [ back_to_exit ] [ 2 ] )
end ,
checked_func = function ( )
return G_reader_settings : readSetting ( " back_in_reader " ) == " default "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " back_in_reader " , " default " )
end ,
} ,
{
text = _ ( " Go to file browser " ) ,
checked_func = function ( )
return G_reader_settings : readSetting ( " back_in_reader " ) == " filebrowser "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " back_in_reader " , " filebrowser " )
end ,
} ,
{
text = _ ( " Go to previous location " ) ,
checked_func = function ( )
local back_in_reader = G_reader_settings : readSetting ( " back_in_reader " )
return back_in_reader == " previous_location " or back_in_reader == nil
end ,
callback = function ( )
G_reader_settings : saveSetting ( " back_in_reader " , " previous_location " )
end ,
} ,
{
text = _ ( " Go to previous read page " ) ,
checked_func = function ( )
return G_reader_settings : readSetting ( " back_in_reader " ) == " previous_read_page "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " back_in_reader " , " previous_read_page " )
end ,
} ,
} ,
2019-02-28 21:38:24 +00:00
}
2018-04-09 07:22:16 +00:00
if Device : hasKeys ( ) then
2019-02-28 21:38:24 +00:00
common_settings.invert_page_turn_buttons = {
text = _ ( " Invert page turn buttons " ) ,
checked_func = function ( )
return G_reader_settings : isTrue ( " input_invert_page_turn_keys " )
end ,
callback = function ( )
G_reader_settings : flipNilOrFalse ( " input_invert_page_turn_keys " )
Device : invertButtons ( )
end ,
2018-04-09 07:22:16 +00:00
}
end
2019-02-28 21:38:24 +00:00
2020-01-01 11:27:51 +00:00
-- Auto-save settings: default value, info text and warning, and menu items
if G_reader_settings : readSetting ( " auto_save_settings_interval_minutes " ) == nil then
-- Default to auto save every 15 mn
G_reader_settings : saveSetting ( " auto_save_settings_interval_minutes " , 15 )
end
local auto_save_help_text = _ ( [ [
This sets how often to rewrite to disk global settings and book metadata , including your current position and any highlights and bookmarks made , when you ' re reading a document.
The normal behavior is to save those only when the document is closed , or your device suspended , or when exiting KOReader .
Setting it to some interval may help prevent losing new settings / sidecar data after a software crash , but will cause more I / O writes the lower the interval is , and may slowly wear out your storage media in the long run . ] ] )
-- Some devices with FAT32 storage may not like having settings rewritten too often,
-- so let that be known. See https://github.com/koreader/koreader/pull/3625
local warn_about_auto_save = Device : isKobo ( ) or Device : isKindle ( ) or Device : isCervantes ( ) or Device : isPocketBook ( ) or Device : isSonyPRSTUX ( )
if warn_about_auto_save then
local auto_save_help_warning = _ ( [[Please be warned that on this device, setting a low interval may exacerbate the potential for filesystem corruption and complete data loss after a hardware crash.]] )
auto_save_help_text = auto_save_help_text .. " \n \n " .. auto_save_help_warning
end
local function genAutoSaveMenuItem ( value )
local setting_name = " auto_save_settings_interval_minutes "
local text
if not value then
text = _ ( " Only on close, suspend and exit " )
else
2020-01-02 20:31:29 +00:00
text = T ( N_ ( " Every minute " , " Every %1 minutes " , value ) , value )
2020-01-01 11:27:51 +00:00
end
return {
text = text ,
help_text = auto_save_help_text ,
checked_func = function ( )
return G_reader_settings : readSetting ( setting_name ) == value
end ,
callback = function ( )
G_reader_settings : saveSetting ( setting_name , value )
end ,
}
end
2018-01-30 11:12:52 +00:00
common_settings.document = {
text = _ ( " Document " ) ,
2016-07-14 17:38:00 +00:00
sub_item_table = {
2020-01-01 11:27:51 +00:00
{
text_func = function ( )
local interval = G_reader_settings : readSetting ( " auto_save_settings_interval_minutes " )
local s_interval
if interval == false then
2020-07-25 13:26:26 +00:00
s_interval = _ ( " only on close " )
2020-01-01 11:27:51 +00:00
else
2020-01-02 20:31:29 +00:00
s_interval = T ( N_ ( " every 1 m " , " every %1 m " , interval ) , interval )
2020-01-01 11:27:51 +00:00
end
return T ( _ ( " Auto-save book metadata: %1 " ) , s_interval )
end ,
help_text = auto_save_help_text ,
sub_item_table = {
genAutoSaveMenuItem ( false ) ,
genAutoSaveMenuItem ( 5 ) ,
genAutoSaveMenuItem ( 15 ) ,
genAutoSaveMenuItem ( 60 ) ,
warn_about_auto_save and {
text = _ ( " Important info about this auto-save option " ) ,
keep_menu_open = true ,
callback = function ( )
UIManager : show ( InfoMessage : new { text = auto_save_help_text , } )
end ,
} or nil ,
} ,
} ,
2016-07-14 17:38:00 +00:00
{
2018-01-30 11:12:52 +00:00
text = _ ( " Save document (write highlights into PDF) " ) ,
sub_item_table = {
{
text = _ ( " Prompt " ) ,
checked_func = function ( )
local setting = G_reader_settings : readSetting ( " save_document " )
return setting == " prompt " or setting == nil
end ,
callback = function ( )
G_reader_settings : delSetting ( " save_document " )
end ,
} ,
{
text = _ ( " Always " ) ,
checked_func = function ( )
return G_reader_settings : readSetting ( " save_document " )
== " always "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " save_document " , " always " )
end ,
} ,
{
text = _ ( " Disable " ) ,
checked_func = function ( )
return G_reader_settings : readSetting ( " save_document " )
== " disable "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " save_document " , " disable " )
end ,
} ,
} ,
2016-07-14 17:38:00 +00:00
} ,
{
2018-05-13 11:07:23 +00:00
text = _ ( " End of document action " ) ,
sub_item_table = {
2020-06-11 09:37:14 +00:00
{
text = _ ( " Always mark as read " ) ,
checked_func = function ( )
return G_reader_settings : isTrue ( " end_document_auto_mark " )
end ,
callback = function ( )
G_reader_settings : flipNilOrFalse ( " end_document_auto_mark " )
end ,
separator = true ,
} ,
2018-05-13 11:07:23 +00:00
{
text = _ ( " Ask with pop-up dialog " ) ,
checked_func = function ( )
local setting = G_reader_settings : readSetting ( " end_document_action " )
return setting == " pop-up " or setting == nil
end ,
callback = function ( )
G_reader_settings : saveSetting ( " end_document_action " , " pop-up " )
end ,
} ,
{
text = _ ( " Do nothing " ) ,
checked_func = function ( )
return G_reader_settings : readSetting ( " end_document_action " ) == " nothing "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " end_document_action " , " nothing " )
end ,
} ,
{
text = _ ( " Book status " ) ,
checked_func = function ( )
return G_reader_settings : readSetting ( " end_document_action " ) == " book_status "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " end_document_action " , " book_status " )
end ,
} ,
2019-07-05 08:35:23 +00:00
{
text = _ ( " Delete file " ) ,
checked_func = function ( )
return G_reader_settings : readSetting ( " end_document_action " ) == " delete_file "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " end_document_action " , " delete_file " )
end ,
} ,
2018-05-13 11:07:23 +00:00
{
text = _ ( " Open next file " ) ,
enabled_func = function ( )
return G_reader_settings : readSetting ( " collate " )
~= " access "
end ,
checked_func = function ( )
return G_reader_settings : readSetting ( " end_document_action " ) == " next_file "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " end_document_action " , " next_file " )
end ,
} ,
2020-02-05 07:19:35 +00:00
{
text = _ ( " Go to beginning " ) ,
checked_func = function ( )
return G_reader_settings : readSetting ( " end_document_action " ) == " goto_beginning "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " end_document_action " , " goto_beginning " )
end ,
} ,
2018-05-13 11:07:23 +00:00
{
text = _ ( " Return to file browser " ) ,
checked_func = function ( )
return G_reader_settings : readSetting ( " end_document_action " ) == " file_browser "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " end_document_action " , " file_browser " )
end ,
} ,
2019-11-16 13:51:21 +00:00
{
text = _ ( " Mark book as read " ) ,
checked_func = function ( )
return G_reader_settings : readSetting ( " end_document_action " ) == " mark_read "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " end_document_action " , " mark_read " )
end ,
} ,
2018-05-13 11:07:23 +00:00
{
text = _ ( " Book status and return to file browser " ) ,
checked_func = function ( )
return G_reader_settings : readSetting ( " end_document_action " ) == " book_status_file_browser "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " end_document_action " , " book_status_file_browser " )
end ,
} ,
}
2016-07-14 17:38:00 +00:00
} ,
2019-01-17 21:12:38 +00:00
{
text = _ ( " Highlight action " ) ,
sub_item_table = {
2020-05-05 16:56:30 +00:00
{
text = _ ( " Enable on single word selection " ) ,
checked_func = function ( )
return G_reader_settings : isTrue ( " highlight_action_on_single_word " )
end ,
callback = function ( )
2020-06-11 09:37:14 +00:00
G_reader_settings : flipNilOrFalse ( " highlight_action_on_single_word " )
2020-05-05 16:56:30 +00:00
end ,
separator = true ,
} ,
2019-01-17 21:12:38 +00:00
{
text = _ ( " Ask with popup dialog " ) ,
checked_func = function ( )
return G_reader_settings : nilOrFalse ( " default_highlight_action " )
end ,
callback = function ( )
G_reader_settings : saveSetting ( " default_highlight_action " , nil )
end ,
} ,
{
text = _ ( " Highlight " ) ,
checked_func = function ( )
return G_reader_settings : readSetting ( " default_highlight_action " ) == " highlight "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " default_highlight_action " , " highlight " )
end ,
} ,
{
text = _ ( " Translate " ) ,
checked_func = function ( )
return G_reader_settings : readSetting ( " default_highlight_action " ) == " translate "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " default_highlight_action " , " translate " )
end ,
} ,
{
text = _ ( " Wikipedia " ) ,
checked_func = function ( )
return G_reader_settings : readSetting ( " default_highlight_action " ) == " wikipedia "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " default_highlight_action " , " wikipedia " )
end ,
} ,
2020-05-05 16:56:30 +00:00
{
text = _ ( " Dictionary " ) ,
checked_func = function ( )
return G_reader_settings : readSetting ( " default_highlight_action " ) == " dictionary "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " default_highlight_action " , " dictionary " )
end ,
} ,
{
text = _ ( " Fulltext search " ) ,
checked_func = function ( )
return G_reader_settings : readSetting ( " default_highlight_action " ) == " search "
end ,
callback = function ( )
G_reader_settings : saveSetting ( " default_highlight_action " , " search " )
end ,
} ,
2019-01-17 21:12:38 +00:00
}
} ,
2016-07-14 17:38:00 +00:00
} ,
2017-02-28 21:46:32 +00:00
}
2017-03-03 06:41:10 +00:00
common_settings.language = Language : getLangMenuTable ( )
2014-11-21 14:41:14 +00:00
2019-09-17 11:01:40 +00:00
common_settings.screenshot = {
text = _ ( " Screenshot directory " ) ,
callback = function ( )
local Screenshoter = require ( " ui/widget/screenshoter " )
Screenshoter : chooseFolder ( )
end ,
}
2014-11-21 14:41:14 +00:00
return common_settings