mirror of
https://github.com/koreader/koreader
synced 2024-11-11 19:11:14 +00:00
3066c86e38
This is a major overhaul of the hardware abstraction layer. A few notes: General platform distinction happens in frontend/device.lua which will delegate everything else to frontend/device/<platform_name>/device.lua which should extend frontend/device/generic/device.lua Screen handling is implemented in frontend/device/screen.lua which includes the *functionality* to support device specifics. Actually setting up the device specific functionality, however, is done in the device specific setup code in the relevant device.lua file. The same goes for input handling.
88 lines
2.5 KiB
Lua
88 lines
2.5 KiB
Lua
local InputContainer = require("ui/widget/container/inputcontainer")
|
|
local FrameContainer = require("ui/widget/container/framecontainer")
|
|
local FileManagerMenu = require("apps/filemanager/filemanagermenu")
|
|
local DocumentRegistry = require("document/documentregistry")
|
|
local VerticalGroup = require("ui/widget/verticalgroup")
|
|
local ButtonDialog = require("ui/widget/buttondialog")
|
|
local VerticalSpan = require("ui/widget/verticalspan")
|
|
local OPDSBrowser = require("ui/widget/opdsbrowser")
|
|
local TextWidget = require("ui/widget/textwidget")
|
|
local lfs = require("libs/libkoreader-lfs")
|
|
local UIManager = require("ui/uimanager")
|
|
local Font = require("ui/font")
|
|
local Screen = require("device").screen
|
|
local Geom = require("ui/geometry")
|
|
local Event = require("ui/event")
|
|
local DEBUG = require("dbg")
|
|
local _ = require("gettext")
|
|
local util = require("ffi/util")
|
|
local Blitbuffer = require("ffi/blitbuffer")
|
|
|
|
local OPDSCatalog = InputContainer:extend{
|
|
title = _("OPDS Catalog"),
|
|
opds_servers = {
|
|
{
|
|
title = "Project Gutenberg",
|
|
subtitle = "Free ebooks since 1971.",
|
|
url = "http://m.gutenberg.org/ebooks.opds/?format=opds",
|
|
},
|
|
{
|
|
title = "Feedbooks",
|
|
subtitle = "",
|
|
url = "http://www.feedbooks.com/publicdomain/catalog.atom",
|
|
},
|
|
{
|
|
title = "ManyBooks",
|
|
subtitle = "Online Catalog for Manybooks.net",
|
|
url = "http://manybooks.net/opds/index.php",
|
|
},
|
|
{
|
|
title = "Internet Archive",
|
|
subtitle = "Internet Archive Catalog",
|
|
baseurl = "http://bookserver.archive.org/catalog/",
|
|
},
|
|
},
|
|
onExit = function() end,
|
|
}
|
|
|
|
function OPDSCatalog:init()
|
|
local opds_browser = OPDSBrowser:new{
|
|
opds_servers = self.opds_servers,
|
|
title = self.title,
|
|
show_parent = self,
|
|
is_popout = false,
|
|
is_borderless = true,
|
|
has_close_button = true,
|
|
close_callback = function() return self:onClose() end,
|
|
}
|
|
|
|
self[1] = FrameContainer:new{
|
|
padding = 0,
|
|
bordersize = 0,
|
|
background = Blitbuffer.COLOR_WHITE,
|
|
opds_browser,
|
|
}
|
|
|
|
end
|
|
|
|
function OPDSCatalog:showCatalog()
|
|
DEBUG("show OPDS catalog")
|
|
UIManager:show(OPDSCatalog:new{
|
|
dimen = Screen:getSize(),
|
|
onExit = function()
|
|
--UIManager:quit()
|
|
end
|
|
})
|
|
end
|
|
|
|
function OPDSCatalog:onClose()
|
|
DEBUG("close OPDS catalog")
|
|
UIManager:close(self)
|
|
if self.onExit then
|
|
self:onExit()
|
|
end
|
|
return true
|
|
end
|
|
|
|
return OPDSCatalog
|