2013-10-18 20:38:07 +00:00
|
|
|
local InputContainer = require("ui/widget/container/inputcontainer")
|
|
|
|
local InputDialog = require("ui/widget/inputdialog")
|
|
|
|
local UIManager = require("ui/uimanager")
|
|
|
|
local Event = require("ui/event")
|
2017-04-14 18:12:21 +00:00
|
|
|
local SkimToWidget = require("apps/reader/skimtowidget")
|
2013-10-18 20:38:07 +00:00
|
|
|
local _ = require("gettext")
|
2013-07-30 15:09:08 +00:00
|
|
|
|
2013-10-18 20:38:07 +00:00
|
|
|
local ReaderGoto = InputContainer:new{
|
2014-11-12 11:29:38 +00:00
|
|
|
goto_menu_title = _("Go to"),
|
2016-12-29 07:27:48 +00:00
|
|
|
skim_menu_title = _("Skim to"),
|
2013-07-30 15:09:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function ReaderGoto:init()
|
2014-03-13 13:52:43 +00:00
|
|
|
self.ui.menu:registerToMainMenu(self)
|
2013-07-31 05:51:01 +00:00
|
|
|
end
|
|
|
|
|
2017-03-04 13:46:38 +00:00
|
|
|
function ReaderGoto:addToMainMenu(menu_items)
|
2014-03-13 13:52:43 +00:00
|
|
|
-- insert goto command to main reader menu
|
2017-03-04 13:46:38 +00:00
|
|
|
menu_items.go_to = {
|
2014-03-13 13:52:43 +00:00
|
|
|
text = self.goto_menu_title,
|
|
|
|
callback = function()
|
|
|
|
self:onShowGotoDialog()
|
|
|
|
end,
|
2017-02-28 21:46:32 +00:00
|
|
|
}
|
2017-03-04 13:46:38 +00:00
|
|
|
menu_items.skim_to = {
|
2016-12-29 07:27:48 +00:00
|
|
|
text = self.skim_menu_title,
|
|
|
|
callback = function()
|
|
|
|
self:onShowSkimtoDialog()
|
|
|
|
end,
|
2017-02-28 21:46:32 +00:00
|
|
|
}
|
2013-07-31 05:51:01 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function ReaderGoto:onShowGotoDialog()
|
2016-02-26 08:04:21 +00:00
|
|
|
local dialog_title, goto_btn, curr_page
|
2016-02-26 07:50:12 +00:00
|
|
|
if self.document.info.has_pages then
|
|
|
|
dialog_title = _("Go to Page")
|
|
|
|
goto_btn = {
|
2016-05-26 06:09:49 +00:00
|
|
|
is_enter_default = true,
|
2016-02-26 07:50:12 +00:00
|
|
|
text = _("Page"),
|
|
|
|
callback = function() self:gotoPage() end,
|
|
|
|
}
|
2016-02-26 08:04:21 +00:00
|
|
|
curr_page = self.ui.paging.current_page
|
2016-02-26 07:50:12 +00:00
|
|
|
else
|
|
|
|
dialog_title = _("Go to Location")
|
|
|
|
goto_btn = {
|
2016-05-26 06:09:49 +00:00
|
|
|
is_enter_default = true,
|
2016-02-26 07:50:12 +00:00
|
|
|
text = _("Location"),
|
|
|
|
callback = function() self:gotoPage() end,
|
|
|
|
}
|
2016-02-26 08:04:21 +00:00
|
|
|
-- only CreDocument has this method
|
|
|
|
curr_page = self.document:getCurrentPage()
|
2016-02-26 07:50:12 +00:00
|
|
|
end
|
2014-03-13 13:52:43 +00:00
|
|
|
self.goto_dialog = InputDialog:new{
|
2016-02-26 07:50:12 +00:00
|
|
|
title = dialog_title,
|
2016-02-26 08:04:21 +00:00
|
|
|
input_hint = "@"..curr_page.." (1 - "..self.document:getPageCount()..")",
|
2014-03-13 13:52:43 +00:00
|
|
|
buttons = {
|
2015-03-12 07:45:58 +00:00
|
|
|
{
|
2014-03-13 13:52:43 +00:00
|
|
|
{
|
|
|
|
text = _("Cancel"),
|
|
|
|
enabled = true,
|
|
|
|
callback = function()
|
|
|
|
self:close()
|
|
|
|
end,
|
|
|
|
},
|
2016-02-26 07:50:12 +00:00
|
|
|
goto_btn,
|
2016-12-29 07:27:48 +00:00
|
|
|
{
|
|
|
|
text = _("Skim mode"),
|
|
|
|
enabled = true,
|
|
|
|
callback = function()
|
|
|
|
self:close()
|
|
|
|
self.skimto = SkimToWidget:new{
|
|
|
|
document = self.document,
|
|
|
|
ui = self.ui,
|
|
|
|
callback_switch_to_goto = function()
|
|
|
|
UIManager:close(self.skimto)
|
|
|
|
self:onShowGotoDialog()
|
|
|
|
end,
|
|
|
|
}
|
|
|
|
UIManager:show(self.skimto)
|
|
|
|
|
|
|
|
end,
|
|
|
|
},
|
2014-03-13 13:52:43 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
input_type = "number",
|
|
|
|
}
|
|
|
|
self.goto_dialog:onShowKeyboard()
|
|
|
|
UIManager:show(self.goto_dialog)
|
2013-07-30 15:09:08 +00:00
|
|
|
end
|
|
|
|
|
2016-12-29 07:27:48 +00:00
|
|
|
function ReaderGoto:onShowSkimtoDialog()
|
|
|
|
self.skimto = SkimToWidget:new{
|
|
|
|
document = self.document,
|
|
|
|
ui = self.ui,
|
|
|
|
callback_switch_to_goto = function()
|
|
|
|
UIManager:close(self.skimto)
|
|
|
|
self:onShowGotoDialog()
|
|
|
|
end,
|
|
|
|
}
|
|
|
|
UIManager:show(self.skimto)
|
|
|
|
end
|
|
|
|
|
2013-07-30 15:37:51 +00:00
|
|
|
function ReaderGoto:close()
|
2014-03-13 13:52:43 +00:00
|
|
|
UIManager:close(self.goto_dialog)
|
2013-07-30 15:09:08 +00:00
|
|
|
end
|
|
|
|
|
2013-07-30 15:37:51 +00:00
|
|
|
function ReaderGoto:gotoPage()
|
2015-03-12 07:45:58 +00:00
|
|
|
local page_number = self.goto_dialog:getInputText()
|
|
|
|
local relative_sign = page_number:sub(1, 1)
|
|
|
|
local number = tonumber(page_number)
|
2014-03-13 13:52:43 +00:00
|
|
|
if number then
|
2015-03-12 07:45:58 +00:00
|
|
|
if relative_sign == "+" or relative_sign == "-" then
|
|
|
|
self.ui:handleEvent(Event:new("GotoRelativePage", number))
|
|
|
|
else
|
|
|
|
self.ui:handleEvent(Event:new("GotoPage", number))
|
|
|
|
end
|
|
|
|
self:close()
|
2014-03-13 13:52:43 +00:00
|
|
|
end
|
2013-07-30 15:09:08 +00:00
|
|
|
end
|
2013-10-18 20:38:07 +00:00
|
|
|
|
|
|
|
return ReaderGoto
|