2013-10-18 20:38:07 +00:00
|
|
|
local CenterContainer = require("ui/widget/container/centercontainer")
|
|
|
|
local InputContainer = require("ui/widget/container/inputcontainer")
|
2014-08-01 04:36:32 +00:00
|
|
|
local ConfirmBox = require("ui/widget/confirmbox")
|
2013-10-18 20:38:07 +00:00
|
|
|
local UIManager = require("ui/uimanager")
|
2014-10-30 18:42:18 +00:00
|
|
|
local Device = require("device")
|
2013-10-18 20:38:07 +00:00
|
|
|
local GestureRange = require("ui/gesturerange")
|
|
|
|
local Geom = require("ui/geometry")
|
2014-10-30 18:42:18 +00:00
|
|
|
local Screen = require("device").screen
|
2014-09-10 04:22:09 +00:00
|
|
|
local DEBUG = require("dbg")
|
2013-10-18 20:38:07 +00:00
|
|
|
local _ = require("gettext")
|
2014-11-16 11:57:56 +00:00
|
|
|
local FileSearcher = require("apps/filemanager/filemanagerfilesearcher")
|
2014-08-07 07:14:30 +00:00
|
|
|
local Search = require("apps/filemanager/filemanagersearch")
|
2014-08-11 08:39:08 +00:00
|
|
|
local SetDefaults = require("apps/filemanager/filemanagersetdefaults")
|
2013-10-18 20:38:07 +00:00
|
|
|
|
|
|
|
local FileManagerMenu = InputContainer:extend{
|
2014-03-13 13:52:43 +00:00
|
|
|
tab_item_table = nil,
|
|
|
|
registered_widgets = {},
|
2013-08-14 09:29:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function FileManagerMenu:init()
|
2014-09-10 04:22:09 +00:00
|
|
|
local filemanager = self.ui
|
2014-03-13 13:52:43 +00:00
|
|
|
self.tab_item_table = {
|
2014-07-27 13:41:38 +00:00
|
|
|
setting = {
|
|
|
|
icon = "resources/icons/appbar.settings.png",
|
|
|
|
},
|
|
|
|
info = {
|
2014-03-13 13:52:43 +00:00
|
|
|
icon = "resources/icons/appbar.pokeball.png",
|
|
|
|
},
|
2014-08-11 14:14:15 +00:00
|
|
|
tools = {
|
|
|
|
icon = "resources/icons/appbar.tools.png",
|
|
|
|
},
|
2014-11-26 17:16:54 +00:00
|
|
|
search = {
|
2014-09-05 13:02:13 +00:00
|
|
|
icon = "resources/icons/appbar.magnify.browse.png",
|
|
|
|
},
|
2014-03-13 13:52:43 +00:00
|
|
|
home = {
|
|
|
|
icon = "resources/icons/appbar.home.png",
|
|
|
|
callback = function()
|
2014-08-16 20:32:34 +00:00
|
|
|
if settings_changed then
|
|
|
|
settings_changed = false
|
|
|
|
UIManager:show(ConfirmBox:new{
|
|
|
|
text = _("You have unsaved default settings. Save them now?"),
|
|
|
|
ok_callback = function()
|
|
|
|
SetDefaults:SaveSettings()
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
else
|
|
|
|
UIManager:close(self.menu_container)
|
|
|
|
self.ui:onClose()
|
|
|
|
end
|
2014-03-13 13:52:43 +00:00
|
|
|
end,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
self.registered_widgets = {}
|
|
|
|
|
2014-06-10 07:57:10 +00:00
|
|
|
if Device:hasKeys() then
|
2014-03-13 13:52:43 +00:00
|
|
|
self.key_events = {
|
2014-06-05 06:58:53 +00:00
|
|
|
ShowMenu = { { "Menu" }, doc = "show menu" },
|
2014-03-13 13:52:43 +00:00
|
|
|
}
|
|
|
|
end
|
2013-08-14 09:29:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function FileManagerMenu:initGesListener()
|
2014-03-13 13:52:43 +00:00
|
|
|
self.ges_events = {
|
|
|
|
TapShowMenu = {
|
|
|
|
GestureRange:new{
|
|
|
|
ges = "tap",
|
|
|
|
range = Geom:new{
|
|
|
|
x = 0,
|
|
|
|
y = 0,
|
|
|
|
w = Screen:getWidth()*3/4,
|
|
|
|
h = Screen:getHeight()/4,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
2013-08-14 09:29:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function FileManagerMenu:setUpdateItemTable()
|
2014-03-13 13:52:43 +00:00
|
|
|
for _, widget in pairs(self.registered_widgets) do
|
|
|
|
widget:addToMainMenu(self.tab_item_table)
|
|
|
|
end
|
|
|
|
|
2014-07-27 13:41:38 +00:00
|
|
|
-- setting tab
|
|
|
|
table.insert(self.tab_item_table.setting, {
|
2014-06-05 11:06:35 +00:00
|
|
|
text = _("Show hidden files"),
|
|
|
|
checked_func = function() return self.ui.file_chooser.show_hidden end,
|
2014-10-30 14:41:49 +00:00
|
|
|
callback = function() self.ui:toggleHiddenFiles() end
|
|
|
|
})
|
|
|
|
local FileManager = require("apps/filemanager/filemanager")
|
|
|
|
table.insert(self.tab_item_table.setting, self.ui:getSortingMenuTable())
|
|
|
|
table.insert(self.tab_item_table.setting, {
|
|
|
|
text = _("Reverse sorting"),
|
|
|
|
checked_func = function() return self.ui.file_chooser.reverse_collate end,
|
|
|
|
callback = function() self.ui:toggleReverseCollate() end
|
2014-03-13 13:52:43 +00:00
|
|
|
})
|
2014-07-27 13:41:38 +00:00
|
|
|
table.insert(self.tab_item_table.setting, {
|
2014-06-05 11:06:35 +00:00
|
|
|
text = _("Start with last opened file"),
|
|
|
|
checked_func = function() return G_reader_settings:readSetting("open_last") end,
|
|
|
|
enabled_func = function() return G_reader_settings:readSetting("lastfile") ~= nil end,
|
|
|
|
callback = function()
|
|
|
|
local open_last = G_reader_settings:readSetting("open_last") or false
|
|
|
|
G_reader_settings:saveSetting("open_last", not open_last)
|
|
|
|
end
|
|
|
|
})
|
2014-11-21 14:41:14 +00:00
|
|
|
-- insert common settings
|
|
|
|
for i, common_setting in ipairs(require("ui/elements/common_settings_menu_table")) do
|
|
|
|
table.insert(self.tab_item_table.setting, common_setting)
|
2014-03-13 13:52:43 +00:00
|
|
|
end
|
2014-11-21 14:41:14 +00:00
|
|
|
|
2014-07-27 13:41:38 +00:00
|
|
|
-- info tab
|
2014-11-21 14:41:14 +00:00
|
|
|
-- insert common info
|
|
|
|
for i, common_setting in ipairs(require("ui/elements/common_info_menu_table")) do
|
|
|
|
table.insert(self.tab_item_table.info, common_setting)
|
2014-08-06 12:19:12 +00:00
|
|
|
end
|
2014-11-21 14:41:14 +00:00
|
|
|
|
2014-08-11 14:14:15 +00:00
|
|
|
-- tools tab
|
|
|
|
table.insert(self.tab_item_table.tools, {
|
2014-11-26 17:16:54 +00:00
|
|
|
text = _("Advanced settings"),
|
2014-08-11 14:14:15 +00:00
|
|
|
callback = function()
|
|
|
|
SetDefaults:ConfirmEdit()
|
|
|
|
end,
|
|
|
|
hold_callback = function()
|
|
|
|
SetDefaults:ConfirmSave()
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
table.insert(self.tab_item_table.tools, {
|
2014-11-26 17:16:54 +00:00
|
|
|
text = _("OPDS catalog"),
|
2014-08-07 07:14:30 +00:00
|
|
|
callback = function()
|
2014-11-26 17:16:54 +00:00
|
|
|
local OPDSCatalog = require("apps/opdscatalog/opdscatalog")
|
|
|
|
function OPDSCatalog:onExit()
|
|
|
|
DEBUG("refresh filemanager")
|
|
|
|
filemanager:onRefresh()
|
2014-11-16 11:57:56 +00:00
|
|
|
end
|
2014-11-26 17:16:54 +00:00
|
|
|
OPDSCatalog:showCatalog()
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- search tab
|
|
|
|
table.insert(self.tab_item_table.search, {
|
|
|
|
text = _("Find a book in calibre catalog"),
|
|
|
|
callback = function()
|
|
|
|
Search:getCalibre()
|
|
|
|
Search:ShowSearch()
|
|
|
|
end
|
|
|
|
})
|
|
|
|
table.insert(self.tab_item_table.search, {
|
|
|
|
text = _("Find a file"),
|
|
|
|
callback = function()
|
|
|
|
FileSearcher:init(self.ui.file_chooser.path)
|
2014-08-07 07:14:30 +00:00
|
|
|
end
|
|
|
|
})
|
2014-11-26 17:16:54 +00:00
|
|
|
|
2014-08-16 20:32:34 +00:00
|
|
|
-- home tab
|
|
|
|
table.insert(self.tab_item_table.home, {
|
|
|
|
text = _("Exit"),
|
|
|
|
callback = function()
|
|
|
|
UIManager:close(self.menu_container)
|
|
|
|
self.ui:onClose()
|
|
|
|
end
|
|
|
|
})
|
2013-08-14 09:29:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function FileManagerMenu:onShowMenu()
|
2014-12-01 07:32:12 +00:00
|
|
|
local tab_index = G_reader_settings:readSetting("filemanagermenu_tab_index") or 1
|
2014-07-27 13:41:38 +00:00
|
|
|
if #self.tab_item_table.setting == 0 then
|
2014-03-13 13:52:43 +00:00
|
|
|
self:setUpdateItemTable()
|
|
|
|
end
|
|
|
|
|
|
|
|
local menu_container = CenterContainer:new{
|
|
|
|
ignore = "height",
|
|
|
|
dimen = Screen:getSize(),
|
|
|
|
}
|
|
|
|
|
|
|
|
local main_menu = nil
|
|
|
|
if Device:isTouchDevice() then
|
2014-10-25 08:02:42 +00:00
|
|
|
local TouchMenu = require("ui/widget/touchmenu")
|
2014-03-13 13:52:43 +00:00
|
|
|
main_menu = TouchMenu:new{
|
|
|
|
width = Screen:getWidth(),
|
2014-12-01 07:32:12 +00:00
|
|
|
last_index = tab_index,
|
2014-03-13 13:52:43 +00:00
|
|
|
tab_item_table = {
|
2014-07-27 13:41:38 +00:00
|
|
|
self.tab_item_table.setting,
|
|
|
|
self.tab_item_table.info,
|
2014-08-11 14:14:15 +00:00
|
|
|
self.tab_item_table.tools,
|
2014-11-26 17:16:54 +00:00
|
|
|
self.tab_item_table.search,
|
2014-03-13 13:52:43 +00:00
|
|
|
self.tab_item_table.home,
|
|
|
|
},
|
|
|
|
show_parent = menu_container,
|
|
|
|
}
|
|
|
|
else
|
2014-10-25 08:02:42 +00:00
|
|
|
local Menu = require("ui/widget/menu")
|
2014-03-13 13:52:43 +00:00
|
|
|
main_menu = Menu:new{
|
|
|
|
title = _("File manager menu"),
|
2014-10-25 08:02:42 +00:00
|
|
|
item_table = Menu.itemTableFromTouchMenu(self.tab_item_table),
|
|
|
|
width = Screen:getWidth()-10,
|
|
|
|
show_parent = menu_container,
|
2014-03-13 13:52:43 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
main_menu.close_callback = function ()
|
2014-12-01 07:32:12 +00:00
|
|
|
self:onCloseFileManagerMenu()
|
2014-03-13 13:52:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
menu_container[1] = main_menu
|
|
|
|
-- maintain a reference to menu_container
|
|
|
|
self.menu_container = menu_container
|
|
|
|
UIManager:show(menu_container)
|
|
|
|
|
|
|
|
return true
|
2013-08-14 09:29:05 +00:00
|
|
|
end
|
|
|
|
|
2014-09-05 13:02:13 +00:00
|
|
|
function FileManagerMenu:onCloseFileManagerMenu()
|
2014-12-01 07:32:12 +00:00
|
|
|
local last_tab_index = self.menu_container[1].last_index
|
|
|
|
DEBUG("remember menu tab index", last_tab_index)
|
|
|
|
G_reader_settings:saveSetting("filemanagermenu_tab_index", last_tab_index)
|
2014-09-05 13:02:13 +00:00
|
|
|
UIManager:close(self.menu_container)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2013-08-14 09:29:05 +00:00
|
|
|
function FileManagerMenu:onTapShowMenu()
|
2014-03-13 13:52:43 +00:00
|
|
|
self:onShowMenu()
|
|
|
|
return true
|
2013-08-14 09:29:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function FileManagerMenu:onSetDimensions(dimen)
|
2014-03-13 13:52:43 +00:00
|
|
|
-- update listening according to new screen dimen
|
|
|
|
if Device:isTouchDevice() then
|
|
|
|
self:initGesListener()
|
|
|
|
end
|
2013-08-14 09:29:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function FileManagerMenu:registerToMainMenu(widget)
|
2014-03-13 13:52:43 +00:00
|
|
|
table.insert(self.registered_widgets, widget)
|
2013-08-14 09:29:05 +00:00
|
|
|
end
|
|
|
|
|
2013-10-18 20:38:07 +00:00
|
|
|
return FileManagerMenu
|