move configurable to Document class

since every document type is depend on it now
pull/324/head
Qingping Hou 11 years ago
parent 2275e437e6
commit 10bf048d77

@ -16,7 +16,6 @@ CreDocument = Document:new{
fallback_font = "Droid Sans Fallback", fallback_font = "Droid Sans Fallback",
default_css = "./data/cr3.css", default_css = "./data/cr3.css",
options = CreOptions, options = CreOptions,
configurable = Configurable,
} }
-- NuPogodi, 20.05.12: inspect the zipfile content -- NuPogodi, 20.05.12: inspect the zipfile content

@ -10,7 +10,6 @@ DjvuDocument = Document:new{
djvulibre_cache_size = nil, djvulibre_cache_size = nil,
dc_null = DrawContext.new(), dc_null = DrawContext.new(),
options = KoptOptions, options = KoptOptions,
configurable = Configurable,
koptinterface = KoptInterface, koptinterface = KoptInterface,
} }

@ -60,24 +60,26 @@ Document = {
number_of_pages = 0, number_of_pages = 0,
-- if not pageable, length of the document in pixels -- if not pageable, length of the document in pixels
doc_height = 0, doc_height = 0,
-- other metadata -- other metadata
title = "", title = "",
author = "", author = "",
date = "" date = ""
}, },
GAMMA_NO_GAMMA = 1.0, GAMMA_NO_GAMMA = 1.0,
-- override bbox from orignal page's getUsedBBox -- override bbox from orignal page's getUsedBBox
bbox = {}, bbox = {},
-- flag to show whether the document was opened successfully -- flag to show whether the document was opened successfully
is_open = false, is_open = false,
error_message = nil, error_message = nil,
-- flag to show that the document needs to be unlocked by a password -- flag to show that the document needs to be unlocked by a password
is_locked = false, is_locked = false,
configurable = Configurable,
} }
function Document:new(o) function Document:new(o)

@ -10,7 +10,6 @@ PdfDocument = Document:new{
mupdf_cache_size = 5 * 1024 * 1024, mupdf_cache_size = 5 * 1024 * 1024,
dc_null = DrawContext.new(), dc_null = DrawContext.new(),
options = KoptOptions, options = KoptOptions,
configurable = Configurable,
koptinterface = KoptInterface, koptinterface = KoptInterface,
} }

Loading…
Cancel
Save