mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
172 lines
3.9 KiB
Lua
172 lines
3.9 KiB
Lua
require "ui/widget/notification"
|
|
|
|
ReaderBookmark = InputContainer:new{
|
|
bm_menu_title = _("Bookmarks"),
|
|
bookmarks = nil,
|
|
}
|
|
|
|
function ReaderBookmark:init()
|
|
if Device:hasKeyboard() then
|
|
self.key_events = {
|
|
ShowToc = {
|
|
{ "B" },
|
|
doc = _("show bookmarks") },
|
|
}
|
|
end
|
|
self.ui.menu:registerToMainMenu(self)
|
|
end
|
|
|
|
function ReaderBookmark:initGesListener()
|
|
self.ges_events = {
|
|
ToggleBookmark = {
|
|
GestureRange:new{
|
|
ges = "tap",
|
|
range = Geom:new{
|
|
x = Screen:getWidth()*7/8, y = 0,
|
|
w = Screen:getWidth()/8,
|
|
h = Screen:getHeight()/8
|
|
}
|
|
}
|
|
},
|
|
}
|
|
end
|
|
|
|
function ReaderBookmark:onReadSettings(config)
|
|
self.bookmarks = config:readSetting("bookmarks") or {}
|
|
end
|
|
|
|
function ReaderBookmark:onCloseDocument()
|
|
self.ui.doc_settings:saveSetting("bookmarks", self.bookmarks)
|
|
end
|
|
|
|
function ReaderBookmark:onSetDimensions(dimen)
|
|
-- update listening according to new screen dimen
|
|
if Device:isTouchDevice() then
|
|
self:initGesListener()
|
|
end
|
|
end
|
|
|
|
function ReaderBookmark:onToggleBookmark()
|
|
local pn_or_xp = nil
|
|
if self.ui.document.getXPointer then
|
|
pn_or_xp = self.ui.document:getXPointer()
|
|
else
|
|
pn_or_xp = self.view.state.page
|
|
end
|
|
self:toggleBookmark(pn_or_xp)
|
|
self.view.dogear_visible = not self.view.dogear_visible
|
|
UIManager:setDirty(self.view.dialog, "partial")
|
|
end
|
|
|
|
function ReaderBookmark:setDogearVisibility(pn_or_xp)
|
|
if self:isBookmarked(pn_or_xp) then
|
|
self.ui:handleEvent(Event:new("SetDogearVisibility", true))
|
|
else
|
|
self.ui:handleEvent(Event:new("SetDogearVisibility", false))
|
|
end
|
|
end
|
|
|
|
function ReaderBookmark:onPageUpdate(pageno)
|
|
self:setDogearVisibility(pageno)
|
|
end
|
|
|
|
function ReaderBookmark:onPosUpdate(pos)
|
|
-- TODO: cannot check if this pos is bookmarked or not.
|
|
end
|
|
|
|
|
|
function ReaderBookmark:onShowBookmark()
|
|
-- build up item_table
|
|
for k, v in ipairs(self.bookmarks) do
|
|
local page = v.page
|
|
-- for CREngine, bookmark page is xpointer
|
|
if type(page) == "string" then
|
|
page = self.ui.document:getPageFromXPointer(v.page)
|
|
end
|
|
v.text = "Page "..page.." "..v.notes.." @ "..v.datetime
|
|
end
|
|
|
|
local bm_menu = Menu:new{
|
|
title = "Bookmarks",
|
|
item_table = self.bookmarks,
|
|
width = Screen:getWidth()-50,
|
|
height = Screen:getHeight()-50,
|
|
}
|
|
-- buid up menu widget method as closure
|
|
local doc = self.ui.document
|
|
local sendEv = function(ev)
|
|
self.ui:handleEvent(ev)
|
|
end
|
|
function bm_menu:onMenuChoice(item)
|
|
if doc.info.has_pages then
|
|
sendEv(Event:new("PageUpdate", item.page))
|
|
elseif self.view.view_mode == "page" then
|
|
sendEv(Event:new("PageUpdate", doc:getPageFromXPointer(item.page)))
|
|
else
|
|
sendEv(Event:new("PosUpdate", doc:getPosFromXPointer(item.page)))
|
|
end
|
|
end
|
|
|
|
local menu_container = CenterContainer:new{
|
|
dimen = Screen:getSize(),
|
|
bm_menu,
|
|
}
|
|
bm_menu.close_callback = function()
|
|
UIManager:close(menu_container)
|
|
end
|
|
|
|
UIManager:show(menu_container)
|
|
return true
|
|
end
|
|
|
|
function ReaderBookmark:addToMainMenu(tab_item_table)
|
|
-- insert table to main reader menu
|
|
table.insert(tab_item_table.navi, {
|
|
text = self.bm_menu_title,
|
|
callback = function()
|
|
self:onShowBookmark()
|
|
end,
|
|
})
|
|
end
|
|
|
|
function ReaderBookmark:isBookmarked(pn_or_xp)
|
|
for k,v in ipairs(self.bookmarks) do
|
|
if v.page == pn_or_xp then
|
|
return true
|
|
end
|
|
end
|
|
return false
|
|
end
|
|
|
|
function ReaderBookmark:addBookmark(pn_or_xp)
|
|
-- build notes from TOC
|
|
local notes = self.ui.toc:getTocTitleByPage(pn_or_xp)
|
|
if notes ~= "" then
|
|
notes = "in "..notes
|
|
end
|
|
mark_item = {
|
|
page = pn_or_xp,
|
|
datetime = os.date("%Y-%m-%d %H:%M:%S"),
|
|
notes = notes,
|
|
}
|
|
table.insert(self.bookmarks, mark_item)
|
|
table.sort(self.bookmarks, function(a,b)
|
|
return self:isBookmarkInSequence(a, b)
|
|
end)
|
|
return true
|
|
end
|
|
|
|
function ReaderBookmark:isBookmarkInSequence(a, b)
|
|
return a.page < b.page
|
|
end
|
|
|
|
function ReaderBookmark:toggleBookmark(pn_or_xp)
|
|
for k,v in ipairs(self.bookmarks) do
|
|
if v.page == pn_or_xp then
|
|
table.remove(self.bookmarks, k)
|
|
return
|
|
end
|
|
end
|
|
self:addBookmark(pn_or_xp)
|
|
end
|