You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2174 lines
70 KiB
2174 lines
70 KiB
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */ |
|
/* Copyright 2012 Mozilla Foundation |
|
* |
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
* you may not use this file except in compliance with the License. |
|
* You may obtain a copy of the License at |
|
* |
|
* http://www.apache.org/licenses/LICENSE-2.0 |
|
* |
|
* Unless required by applicable law or agreed to in writing, software |
|
* distributed under the License is distributed on an "AS IS" BASIS, |
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
* See the License for the specific language governing permissions and |
|
* limitations under the License. |
|
*/ |
|
/* globals PDFJS, PDFBug, FirefoxCom, Stats, Cache, ProgressBar, |
|
DownloadManager, getFileName, scrollIntoView, getPDFFileNameFromURL, |
|
PDFHistory, Preferences, SidebarView, ViewHistory, PageView, |
|
PDFThumbnailViewer, URL, noContextMenuHandler, SecondaryToolbar, |
|
PasswordPrompt, PresentationMode, HandTool, Promise, |
|
DocumentProperties, DocumentOutlineView, DocumentAttachmentsView, |
|
OverlayManager, PDFFindController, PDFFindBar, getVisibleElements, |
|
watchScroll, PDFViewer, PDFRenderingQueue, PresentationModeState, |
|
DEFAULT_SCALE, UNKNOWN_SCALE, |
|
IGNORE_CURRENT_POSITION_ON_ZOOM: true */ |
|
|
|
'use strict'; |
|
|
|
var DEFAULT_URL = 'compressed.tracemonkey-pldi-09.pdf'; |
|
var DEFAULT_SCALE_DELTA = 1.1; |
|
var MIN_SCALE = 0.25; |
|
var MAX_SCALE = 10.0; |
|
var VIEW_HISTORY_MEMORY = 20; |
|
var SCALE_SELECT_CONTAINER_PADDING = 8; |
|
var SCALE_SELECT_PADDING = 22; |
|
|
|
//#if B2G |
|
//PDFJS.useOnlyCssZoom = true; |
|
//PDFJS.disableTextLayer = true; |
|
//#endif |
|
|
|
PDFJS.imageResourcesPath = './images/'; |
|
//#if (FIREFOX || MOZCENTRAL || B2G || GENERIC || CHROME) |
|
//PDFJS.workerSrc = '../build/pdf.worker.js'; |
|
//#endif |
|
//#if !PRODUCTION |
|
PDFJS.cMapUrl = '../external/bcmaps/'; |
|
PDFJS.cMapPacked = true; |
|
//#else |
|
//PDFJS.cMapUrl = '../web/cmaps/'; |
|
//PDFJS.cMapPacked = true; |
|
//#endif |
|
|
|
var mozL10n = document.mozL10n || document.webL10n; |
|
|
|
//#include ui_utils.js |
|
//#include preferences.js |
|
|
|
//#if !(FIREFOX || MOZCENTRAL || B2G) |
|
//#include mozPrintCallback_polyfill.js |
|
//#endif |
|
|
|
//#if GENERIC || CHROME |
|
//#include download_manager.js |
|
//#endif |
|
|
|
//#if FIREFOX || MOZCENTRAL |
|
//#include firefoxcom.js |
|
//#endif |
|
|
|
//#if CHROME |
|
//#include chromecom.js |
|
//#endif |
|
|
|
//#include view_history.js |
|
//#include pdf_find_bar.js |
|
//#include pdf_find_controller.js |
|
//#include pdf_history.js |
|
//#include secondary_toolbar.js |
|
//#include presentation_mode.js |
|
//#include hand_tool.js |
|
//#include overlay_manager.js |
|
//#include password_prompt.js |
|
//#include document_properties.js |
|
//#include pdf_viewer.js |
|
|
|
var PDFView = { |
|
initialBookmark: document.location.hash.substring(1), |
|
initialized: false, |
|
fellback: false, |
|
pdfDocument: null, |
|
sidebarOpen: false, |
|
printing: false, |
|
pdfViewer: null, |
|
pdfThumbnailViewer: null, |
|
pdfRenderingQueue: null, |
|
pageRotation: 0, |
|
mouseScrollTimeStamp: 0, |
|
mouseScrollDelta: 0, |
|
isViewerEmbedded: (window.parent !== window), |
|
url: '', |
|
|
|
// called once when the document is loaded |
|
initialize: function pdfViewInitialize() { |
|
var pdfRenderingQueue = new PDFRenderingQueue(); |
|
pdfRenderingQueue.onIdle = this.cleanup.bind(this); |
|
this.pdfRenderingQueue = pdfRenderingQueue; |
|
|
|
var container = document.getElementById('viewerContainer'); |
|
var viewer = document.getElementById('viewer'); |
|
this.pdfViewer = new PDFViewer({ |
|
container: container, |
|
viewer: viewer, |
|
renderingQueue: pdfRenderingQueue, |
|
linkService: this |
|
}); |
|
pdfRenderingQueue.setViewer(this.pdfViewer); |
|
|
|
var thumbnailContainer = document.getElementById('thumbnailView'); |
|
this.pdfThumbnailViewer = new PDFThumbnailViewer({ |
|
container: thumbnailContainer, |
|
renderingQueue: pdfRenderingQueue, |
|
linkService: this |
|
}); |
|
pdfRenderingQueue.setThumbnailViewer(this.pdfThumbnailViewer); |
|
|
|
Preferences.initialize(); |
|
|
|
this.findController = new PDFFindController({ |
|
pdfViewer: this.pdfViewer, |
|
integratedFind: this.supportsIntegratedFind |
|
}); |
|
this.pdfViewer.setFindController(this.findController); |
|
|
|
this.findBar = new PDFFindBar({ |
|
bar: document.getElementById('findbar'), |
|
toggleButton: document.getElementById('viewFind'), |
|
findField: document.getElementById('findInput'), |
|
highlightAllCheckbox: document.getElementById('findHighlightAll'), |
|
caseSensitiveCheckbox: document.getElementById('findMatchCase'), |
|
findMsg: document.getElementById('findMsg'), |
|
findStatusIcon: document.getElementById('findStatusIcon'), |
|
findPreviousButton: document.getElementById('findPrevious'), |
|
findNextButton: document.getElementById('findNext'), |
|
findController: this.findController |
|
}); |
|
|
|
this.findController.setFindBar(this.findBar); |
|
|
|
HandTool.initialize({ |
|
container: container, |
|
toggleHandTool: document.getElementById('toggleHandTool') |
|
}); |
|
|
|
SecondaryToolbar.initialize({ |
|
toolbar: document.getElementById('secondaryToolbar'), |
|
presentationMode: PresentationMode, |
|
toggleButton: document.getElementById('secondaryToolbarToggle'), |
|
presentationModeButton: |
|
document.getElementById('secondaryPresentationMode'), |
|
openFile: document.getElementById('secondaryOpenFile'), |
|
print: document.getElementById('secondaryPrint'), |
|
download: document.getElementById('secondaryDownload'), |
|
viewBookmark: document.getElementById('secondaryViewBookmark'), |
|
firstPage: document.getElementById('firstPage'), |
|
lastPage: document.getElementById('lastPage'), |
|
pageRotateCw: document.getElementById('pageRotateCw'), |
|
pageRotateCcw: document.getElementById('pageRotateCcw'), |
|
documentProperties: DocumentProperties, |
|
documentPropertiesButton: document.getElementById('documentProperties') |
|
}); |
|
|
|
PresentationMode.initialize({ |
|
container: container, |
|
secondaryToolbar: SecondaryToolbar, |
|
firstPage: document.getElementById('contextFirstPage'), |
|
lastPage: document.getElementById('contextLastPage'), |
|
pageRotateCw: document.getElementById('contextPageRotateCw'), |
|
pageRotateCcw: document.getElementById('contextPageRotateCcw') |
|
}); |
|
|
|
PasswordPrompt.initialize({ |
|
overlayName: 'passwordOverlay', |
|
passwordField: document.getElementById('password'), |
|
passwordText: document.getElementById('passwordText'), |
|
passwordSubmit: document.getElementById('passwordSubmit'), |
|
passwordCancel: document.getElementById('passwordCancel') |
|
}); |
|
|
|
DocumentProperties.initialize({ |
|
overlayName: 'documentPropertiesOverlay', |
|
closeButton: document.getElementById('documentPropertiesClose'), |
|
fileNameField: document.getElementById('fileNameField'), |
|
fileSizeField: document.getElementById('fileSizeField'), |
|
titleField: document.getElementById('titleField'), |
|
authorField: document.getElementById('authorField'), |
|
subjectField: document.getElementById('subjectField'), |
|
keywordsField: document.getElementById('keywordsField'), |
|
creationDateField: document.getElementById('creationDateField'), |
|
modificationDateField: document.getElementById('modificationDateField'), |
|
creatorField: document.getElementById('creatorField'), |
|
producerField: document.getElementById('producerField'), |
|
versionField: document.getElementById('versionField'), |
|
pageCountField: document.getElementById('pageCountField') |
|
}); |
|
|
|
var initializedPromise = Promise.all([ |
|
Preferences.get('enableWebGL').then(function resolved(value) { |
|
PDFJS.disableWebGL = !value; |
|
}), |
|
Preferences.get('sidebarViewOnLoad').then(function resolved(value) { |
|
self.preferenceSidebarViewOnLoad = value; |
|
}), |
|
Preferences.get('pdfBugEnabled').then(function resolved(value) { |
|
self.preferencesPdfBugEnabled = value; |
|
}), |
|
Preferences.get('disableTextLayer').then(function resolved(value) { |
|
if (PDFJS.disableTextLayer === true) { |
|
return; |
|
} |
|
PDFJS.disableTextLayer = value; |
|
}), |
|
Preferences.get('disableRange').then(function resolved(value) { |
|
if (PDFJS.disableRange === true) { |
|
return; |
|
} |
|
PDFJS.disableRange = value; |
|
}), |
|
Preferences.get('disableAutoFetch').then(function resolved(value) { |
|
PDFJS.disableAutoFetch = value; |
|
}), |
|
Preferences.get('disableFontFace').then(function resolved(value) { |
|
if (PDFJS.disableFontFace === true) { |
|
return; |
|
} |
|
PDFJS.disableFontFace = value; |
|
}), |
|
Preferences.get('useOnlyCssZoom').then(function resolved(value) { |
|
PDFJS.useOnlyCssZoom = value; |
|
}) |
|
// TODO move more preferences and other async stuff here |
|
]).catch(function (reason) { }); |
|
|
|
return initializedPromise.then(function () { |
|
PDFView.initialized = true; |
|
}); |
|
}, |
|
|
|
getPageView: function pdfViewGetPageView(index) { |
|
return this.pdfViewer.pages[index]; |
|
}, |
|
|
|
zoomIn: function pdfViewZoomIn(ticks) { |
|
var newScale = this.pdfViewer.currentScale; |
|
do { |
|
newScale = (newScale * DEFAULT_SCALE_DELTA).toFixed(2); |
|
newScale = Math.ceil(newScale * 10) / 10; |
|
newScale = Math.min(MAX_SCALE, newScale); |
|
} while (--ticks && newScale < MAX_SCALE); |
|
this.pdfViewer.setScale(newScale, true); |
|
}, |
|
|
|
zoomOut: function pdfViewZoomOut(ticks) { |
|
var newScale = this.pdfViewer.currentScale; |
|
do { |
|
newScale = (newScale / DEFAULT_SCALE_DELTA).toFixed(2); |
|
newScale = Math.floor(newScale * 10) / 10; |
|
newScale = Math.max(MIN_SCALE, newScale); |
|
} while (--ticks && newScale > MIN_SCALE); |
|
this.pdfViewer.setScale(newScale, true); |
|
}, |
|
|
|
get currentScaleValue() { |
|
return this.pdfViewer.currentScaleValue; |
|
}, |
|
|
|
get pagesCount() { |
|
return this.pdfDocument.numPages; |
|
}, |
|
|
|
set page(val) { |
|
this.pdfViewer.setCurrentPageNumber(val); |
|
}, |
|
|
|
get page() { |
|
return this.pdfViewer.currentPageNumber; |
|
}, |
|
|
|
get supportsPrinting() { |
|
var canvas = document.createElement('canvas'); |
|
var value = 'mozPrintCallback' in canvas; |
|
// shadow |
|
Object.defineProperty(this, 'supportsPrinting', { value: value, |
|
enumerable: true, |
|
configurable: true, |
|
writable: false }); |
|
return value; |
|
}, |
|
|
|
get supportsFullscreen() { |
|
var doc = document.documentElement; |
|
var support = doc.requestFullscreen || doc.mozRequestFullScreen || |
|
doc.webkitRequestFullScreen || doc.msRequestFullscreen; |
|
|
|
if (document.fullscreenEnabled === false || |
|
document.mozFullScreenEnabled === false || |
|
document.webkitFullscreenEnabled === false || |
|
document.msFullscreenEnabled === false) { |
|
support = false; |
|
} |
|
|
|
Object.defineProperty(this, 'supportsFullscreen', { value: support, |
|
enumerable: true, |
|
configurable: true, |
|
writable: false }); |
|
return support; |
|
}, |
|
|
|
get supportsIntegratedFind() { |
|
var support = false; |
|
//#if !(FIREFOX || MOZCENTRAL) |
|
//#else |
|
// support = FirefoxCom.requestSync('supportsIntegratedFind'); |
|
//#endif |
|
Object.defineProperty(this, 'supportsIntegratedFind', { value: support, |
|
enumerable: true, |
|
configurable: true, |
|
writable: false }); |
|
return support; |
|
}, |
|
|
|
get supportsDocumentFonts() { |
|
var support = true; |
|
//#if !(FIREFOX || MOZCENTRAL) |
|
//#else |
|
// support = FirefoxCom.requestSync('supportsDocumentFonts'); |
|
//#endif |
|
Object.defineProperty(this, 'supportsDocumentFonts', { value: support, |
|
enumerable: true, |
|
configurable: true, |
|
writable: false }); |
|
return support; |
|
}, |
|
|
|
get supportsDocumentColors() { |
|
var support = true; |
|
//#if !(FIREFOX || MOZCENTRAL) |
|
//#else |
|
// support = FirefoxCom.requestSync('supportsDocumentColors'); |
|
//#endif |
|
Object.defineProperty(this, 'supportsDocumentColors', { value: support, |
|
enumerable: true, |
|
configurable: true, |
|
writable: false }); |
|
return support; |
|
}, |
|
|
|
get loadingBar() { |
|
var bar = new ProgressBar('#loadingBar', {}); |
|
Object.defineProperty(this, 'loadingBar', { value: bar, |
|
enumerable: true, |
|
configurable: true, |
|
writable: false }); |
|
return bar; |
|
}, |
|
|
|
//#if (FIREFOX || MOZCENTRAL) |
|
initPassiveLoading: function pdfViewInitPassiveLoading() { |
|
var pdfDataRangeTransport = { |
|
rangeListeners: [], |
|
progressListeners: [], |
|
|
|
addRangeListener: function PdfDataRangeTransport_addRangeListener( |
|
listener) { |
|
this.rangeListeners.push(listener); |
|
}, |
|
|
|
addProgressListener: function PdfDataRangeTransport_addProgressListener( |
|
listener) { |
|
this.progressListeners.push(listener); |
|
}, |
|
|
|
onDataRange: function PdfDataRangeTransport_onDataRange(begin, chunk) { |
|
var listeners = this.rangeListeners; |
|
for (var i = 0, n = listeners.length; i < n; ++i) { |
|
listeners[i](begin, chunk); |
|
} |
|
}, |
|
|
|
onDataProgress: function PdfDataRangeTransport_onDataProgress(loaded) { |
|
var listeners = this.progressListeners; |
|
for (var i = 0, n = listeners.length; i < n; ++i) { |
|
listeners[i](loaded); |
|
} |
|
}, |
|
|
|
requestDataRange: function PdfDataRangeTransport_requestDataRange( |
|
begin, end) { |
|
FirefoxCom.request('requestDataRange', { begin: begin, end: end }); |
|
} |
|
}; |
|
|
|
window.addEventListener('message', function windowMessage(e) { |
|
if (e.source !== null) { |
|
// The message MUST originate from Chrome code. |
|
console.warn('Rejected untrusted message from ' + e.origin); |
|
return; |
|
} |
|
var args = e.data; |
|
|
|
if (typeof args !== 'object' || !('pdfjsLoadAction' in args)) { |
|
return; |
|
} |
|
switch (args.pdfjsLoadAction) { |
|
case 'supportsRangedLoading': |
|
PDFView.open(args.pdfUrl, 0, undefined, pdfDataRangeTransport, { |
|
length: args.length, |
|
initialData: args.data |
|
}); |
|
break; |
|
case 'range': |
|
pdfDataRangeTransport.onDataRange(args.begin, args.chunk); |
|
break; |
|
case 'rangeProgress': |
|
pdfDataRangeTransport.onDataProgress(args.loaded); |
|
break; |
|
case 'progress': |
|
PDFView.progress(args.loaded / args.total); |
|
break; |
|
case 'complete': |
|
if (!args.data) { |
|
PDFView.error(mozL10n.get('loading_error', null, |
|
'An error occurred while loading the PDF.'), e); |
|
break; |
|
} |
|
PDFView.open(args.data, 0); |
|
break; |
|
} |
|
}); |
|
FirefoxCom.requestSync('initPassiveLoading', null); |
|
}, |
|
//#endif |
|
|
|
setTitleUsingUrl: function pdfViewSetTitleUsingUrl(url) { |
|
this.url = url; |
|
try { |
|
this.setTitle(decodeURIComponent(getFileName(url)) || url); |
|
} catch (e) { |
|
// decodeURIComponent may throw URIError, |
|
// fall back to using the unprocessed url in that case |
|
this.setTitle(url); |
|
} |
|
}, |
|
|
|
setTitle: function pdfViewSetTitle(title) { |
|
document.title = title; |
|
//#if B2G |
|
// document.getElementById('activityTitle').textContent = title; |
|
//#endif |
|
}, |
|
|
|
close: function pdfViewClose() { |
|
var errorWrapper = document.getElementById('errorWrapper'); |
|
errorWrapper.setAttribute('hidden', 'true'); |
|
|
|
if (!this.pdfDocument) { |
|
return; |
|
} |
|
|
|
this.pdfDocument.destroy(); |
|
this.pdfDocument = null; |
|
|
|
this.pdfThumbnailViewer.setDocument(null); |
|
this.pdfViewer.setDocument(null); |
|
|
|
if (typeof PDFBug !== 'undefined') { |
|
PDFBug.cleanup(); |
|
} |
|
}, |
|
|
|
// TODO(mack): This function signature should really be pdfViewOpen(url, args) |
|
open: function pdfViewOpen(file, scale, password, |
|
pdfDataRangeTransport, args) { |
|
if (this.pdfDocument) { |
|
// Reload the preferences if a document was previously opened. |
|
Preferences.reload(); |
|
} |
|
this.close(); |
|
|
|
var parameters = {password: password}; |
|
if (typeof file === 'string') { // URL |
|
this.setTitleUsingUrl(file); |
|
parameters.url = file; |
|
} else if (file && 'byteLength' in file) { // ArrayBuffer |
|
parameters.data = file; |
|
} else if (file.url && file.originalUrl) { |
|
this.setTitleUsingUrl(file.originalUrl); |
|
parameters.url = file.url; |
|
} |
|
if (args) { |
|
for (var prop in args) { |
|
parameters[prop] = args[prop]; |
|
} |
|
} |
|
|
|
var self = this; |
|
self.loading = true; |
|
self.downloadComplete = false; |
|
|
|
var passwordNeeded = function passwordNeeded(updatePassword, reason) { |
|
PasswordPrompt.updatePassword = updatePassword; |
|
PasswordPrompt.reason = reason; |
|
PasswordPrompt.open(); |
|
}; |
|
|
|
function getDocumentProgress(progressData) { |
|
self.progress(progressData.loaded / progressData.total); |
|
} |
|
|
|
PDFJS.getDocument(parameters, pdfDataRangeTransport, passwordNeeded, |
|
getDocumentProgress).then( |
|
function getDocumentCallback(pdfDocument) { |
|
self.load(pdfDocument, scale); |
|
self.loading = false; |
|
}, |
|
function getDocumentError(exception) { |
|
var message = exception && exception.message; |
|
var loadingErrorMessage = mozL10n.get('loading_error', null, |
|
'An error occurred while loading the PDF.'); |
|
|
|
if (exception instanceof PDFJS.InvalidPDFException) { |
|
// change error message also for other builds |
|
loadingErrorMessage = mozL10n.get('invalid_file_error', null, |
|
'Invalid or corrupted PDF file.'); |
|
} else if (exception instanceof PDFJS.MissingPDFException) { |
|
// special message for missing PDF's |
|
loadingErrorMessage = mozL10n.get('missing_file_error', null, |
|
'Missing PDF file.'); |
|
} else if (exception instanceof PDFJS.UnexpectedResponseException) { |
|
loadingErrorMessage = mozL10n.get('unexpected_response_error', null, |
|
'Unexpected server response.'); |
|
} |
|
//#if B2G |
|
// window.alert(loadingErrorMessage); |
|
// return window.close(); |
|
//#endif |
|
|
|
var moreInfo = { |
|
message: message |
|
}; |
|
self.error(loadingErrorMessage, moreInfo); |
|
self.loading = false; |
|
} |
|
); |
|
|
|
if (args && args.length) { |
|
DocumentProperties.setFileSize(args.length); |
|
} |
|
}, |
|
|
|
download: function pdfViewDownload() { |
|
function downloadByUrl() { |
|
downloadManager.downloadUrl(url, filename); |
|
} |
|
|
|
var url = this.url.split('#')[0]; |
|
var filename = getPDFFileNameFromURL(url); |
|
var downloadManager = new DownloadManager(); |
|
downloadManager.onerror = function (err) { |
|
// This error won't really be helpful because it's likely the |
|
// fallback won't work either (or is already open). |
|
PDFView.error('PDF failed to download.'); |
|
}; |
|
|
|
if (!this.pdfDocument) { // the PDF is not ready yet |
|
downloadByUrl(); |
|
return; |
|
} |
|
|
|
if (!this.downloadComplete) { // the PDF is still downloading |
|
downloadByUrl(); |
|
return; |
|
} |
|
|
|
this.pdfDocument.getData().then( |
|
function getDataSuccess(data) { |
|
var blob = PDFJS.createBlob(data, 'application/pdf'); |
|
downloadManager.download(blob, url, filename); |
|
}, |
|
downloadByUrl // Error occurred try downloading with just the url. |
|
).then(null, downloadByUrl); |
|
}, |
|
|
|
fallback: function pdfViewFallback(featureId) { |
|
//#if !(FIREFOX || MOZCENTRAL) |
|
// return; |
|
//#else |
|
// // Only trigger the fallback once so we don't spam the user with messages |
|
// // for one PDF. |
|
// if (this.fellback) |
|
// return; |
|
// this.fellback = true; |
|
// var url = this.url.split('#')[0]; |
|
// FirefoxCom.request('fallback', { featureId: featureId, url: url }, |
|
// function response(download) { |
|
// if (!download) { |
|
// return; |
|
// } |
|
// PDFView.download(); |
|
// }); |
|
//#endif |
|
}, |
|
|
|
navigateTo: function pdfViewNavigateTo(dest) { |
|
var destString = ''; |
|
var self = this; |
|
|
|
var goToDestination = function(destRef) { |
|
self.pendingRefStr = null; |
|
// dest array looks like that: <page-ref> </XYZ|FitXXX> <args..> |
|
var pageNumber = destRef instanceof Object ? |
|
self.pagesRefMap[destRef.num + ' ' + destRef.gen + ' R'] : |
|
(destRef + 1); |
|
if (pageNumber) { |
|
if (pageNumber > self.pagesCount) { |
|
pageNumber = self.pagesCount; |
|
} |
|
var currentPage = self.getPageView(pageNumber - 1); |
|
currentPage.scrollIntoView(dest); |
|
|
|
// Update the browsing history. |
|
PDFHistory.push({ dest: dest, hash: destString, page: pageNumber }); |
|
} else { |
|
self.pdfDocument.getPageIndex(destRef).then(function (pageIndex) { |
|
var pageNum = pageIndex + 1; |
|
self.pagesRefMap[destRef.num + ' ' + destRef.gen + ' R'] = pageNum; |
|
goToDestination(destRef); |
|
}); |
|
} |
|
}; |
|
|
|
this.destinationsPromise.then(function() { |
|
if (typeof dest === 'string') { |
|
destString = dest; |
|
dest = self.destinations[dest]; |
|
} |
|
if (!(dest instanceof Array)) { |
|
return; // invalid destination |
|
} |
|
goToDestination(dest[0]); |
|
}); |
|
}, |
|
|
|
executeNamedAction: function pdfViewExecuteNamedAction(action) { |
|
// See PDF reference, table 8.45 - Named action |
|
switch (action) { |
|
case 'GoToPage': |
|
document.getElementById('pageNumber').focus(); |
|
break; |
|
|
|
case 'GoBack': |
|
PDFHistory.back(); |
|
break; |
|
|
|
case 'GoForward': |
|
PDFHistory.forward(); |
|
break; |
|
|
|
case 'Find': |
|
if (!PDFView.supportsIntegratedFind) { |
|
PDFView.findBar.toggle(); |
|
} |
|
break; |
|
|
|
case 'NextPage': |
|
PDFView.page++; |
|
break; |
|
|
|
case 'PrevPage': |
|
PDFView.page--; |
|
break; |
|
|
|
case 'LastPage': |
|
PDFView.page = PDFView.pagesCount; |
|
break; |
|
|
|
case 'FirstPage': |
|
PDFView.page = 1; |
|
break; |
|
|
|
default: |
|
break; // No action according to spec |
|
} |
|
}, |
|
|
|
getDestinationHash: function pdfViewGetDestinationHash(dest) { |
|
if (typeof dest === 'string') { |
|
return PDFView.getAnchorUrl('#' + escape(dest)); |
|
} |
|
if (dest instanceof Array) { |
|
var destRef = dest[0]; // see navigateTo method for dest format |
|
var pageNumber = destRef instanceof Object ? |
|
this.pagesRefMap[destRef.num + ' ' + destRef.gen + ' R'] : |
|
(destRef + 1); |
|
if (pageNumber) { |
|
var pdfOpenParams = PDFView.getAnchorUrl('#page=' + pageNumber); |
|
var destKind = dest[1]; |
|
if (typeof destKind === 'object' && 'name' in destKind && |
|
destKind.name === 'XYZ') { |
|
var scale = (dest[4] || this.currentScaleValue); |
|
var scaleNumber = parseFloat(scale); |
|
if (scaleNumber) { |
|
scale = scaleNumber * 100; |
|
} |
|
pdfOpenParams += '&zoom=' + scale; |
|
if (dest[2] || dest[3]) { |
|
pdfOpenParams += ',' + (dest[2] || 0) + ',' + (dest[3] || 0); |
|
} |
|
} |
|
return pdfOpenParams; |
|
} |
|
} |
|
return ''; |
|
}, |
|
|
|
/** |
|
* Prefix the full url on anchor links to make sure that links are resolved |
|
* relative to the current URL instead of the one defined in <base href>. |
|
* @param {String} anchor The anchor hash, including the #. |
|
*/ |
|
getAnchorUrl: function getAnchorUrl(anchor) { |
|
//#if (GENERIC || B2G) |
|
return anchor; |
|
//#endif |
|
//#if (FIREFOX || MOZCENTRAL) |
|
// return this.url.split('#')[0] + anchor; |
|
//#endif |
|
//#if CHROME |
|
// return location.href.split('#')[0] + anchor; |
|
//#endif |
|
}, |
|
|
|
/** |
|
* Show the error box. |
|
* @param {String} message A message that is human readable. |
|
* @param {Object} moreInfo (optional) Further information about the error |
|
* that is more technical. Should have a 'message' |
|
* and optionally a 'stack' property. |
|
*/ |
|
error: function pdfViewError(message, moreInfo) { |
|
var moreInfoText = mozL10n.get('error_version_info', |
|
{version: PDFJS.version || '?', build: PDFJS.build || '?'}, |
|
'PDF.js v{{version}} (build: {{build}})') + '\n'; |
|
if (moreInfo) { |
|
moreInfoText += |
|
mozL10n.get('error_message', {message: moreInfo.message}, |
|
'Message: {{message}}'); |
|
if (moreInfo.stack) { |
|
moreInfoText += '\n' + |
|
mozL10n.get('error_stack', {stack: moreInfo.stack}, |
|
'Stack: {{stack}}'); |
|
} else { |
|
if (moreInfo.filename) { |
|
moreInfoText += '\n' + |
|
mozL10n.get('error_file', {file: moreInfo.filename}, |
|
'File: {{file}}'); |
|
} |
|
if (moreInfo.lineNumber) { |
|
moreInfoText += '\n' + |
|
mozL10n.get('error_line', {line: moreInfo.lineNumber}, |
|
'Line: {{line}}'); |
|
} |
|
} |
|
} |
|
|
|
//#if !(FIREFOX || MOZCENTRAL) |
|
var errorWrapper = document.getElementById('errorWrapper'); |
|
errorWrapper.removeAttribute('hidden'); |
|
|
|
var errorMessage = document.getElementById('errorMessage'); |
|
errorMessage.textContent = message; |
|
|
|
var closeButton = document.getElementById('errorClose'); |
|
closeButton.onclick = function() { |
|
errorWrapper.setAttribute('hidden', 'true'); |
|
}; |
|
|
|
var errorMoreInfo = document.getElementById('errorMoreInfo'); |
|
var moreInfoButton = document.getElementById('errorShowMore'); |
|
var lessInfoButton = document.getElementById('errorShowLess'); |
|
moreInfoButton.onclick = function() { |
|
errorMoreInfo.removeAttribute('hidden'); |
|
moreInfoButton.setAttribute('hidden', 'true'); |
|
lessInfoButton.removeAttribute('hidden'); |
|
errorMoreInfo.style.height = errorMoreInfo.scrollHeight + 'px'; |
|
}; |
|
lessInfoButton.onclick = function() { |
|
errorMoreInfo.setAttribute('hidden', 'true'); |
|
moreInfoButton.removeAttribute('hidden'); |
|
lessInfoButton.setAttribute('hidden', 'true'); |
|
}; |
|
moreInfoButton.oncontextmenu = noContextMenuHandler; |
|
lessInfoButton.oncontextmenu = noContextMenuHandler; |
|
closeButton.oncontextmenu = noContextMenuHandler; |
|
moreInfoButton.removeAttribute('hidden'); |
|
lessInfoButton.setAttribute('hidden', 'true'); |
|
errorMoreInfo.value = moreInfoText; |
|
//#else |
|
// console.error(message + '\n' + moreInfoText); |
|
// this.fallback(); |
|
//#endif |
|
}, |
|
|
|
progress: function pdfViewProgress(level) { |
|
var percent = Math.round(level * 100); |
|
// When we transition from full request to range requests, it's possible |
|
// that we discard some of the loaded data. This can cause the loading |
|
// bar to move backwards. So prevent this by only updating the bar if it |
|
// increases. |
|
if (percent > PDFView.loadingBar.percent || isNaN(percent)) { |
|
PDFView.loadingBar.percent = percent; |
|
} |
|
}, |
|
|
|
load: function pdfViewLoad(pdfDocument, scale) { |
|
var self = this; |
|
|
|
PDFView.findController.reset(); |
|
|
|
this.pdfDocument = pdfDocument; |
|
|
|
DocumentProperties.resolveDataAvailable(); |
|
|
|
var downloadedPromise = pdfDocument.getDownloadInfo().then(function() { |
|
self.downloadComplete = true; |
|
PDFView.loadingBar.hide(); |
|
var outerContainer = document.getElementById('outerContainer'); |
|
outerContainer.classList.remove('loadingInProgress'); |
|
}); |
|
|
|
var pagesCount = pdfDocument.numPages; |
|
|
|
var id = pdfDocument.fingerprint; |
|
document.getElementById('numPages').textContent = |
|
mozL10n.get('page_of', {pageCount: pagesCount}, 'of {{pageCount}}'); |
|
document.getElementById('pageNumber').max = pagesCount; |
|
|
|
PDFView.documentFingerprint = id; |
|
var store = PDFView.store = new ViewHistory(id); |
|
|
|
var pdfViewer = this.pdfViewer; |
|
pdfViewer.currentScale = scale; |
|
pdfViewer.setDocument(pdfDocument); |
|
var firstPagePromise = pdfViewer.firstPagePromise; |
|
var pagesPromise = pdfViewer.pagesPromise; |
|
var onePageRendered = pdfViewer.onePageRendered; |
|
|
|
this.pageRotation = 0; |
|
this.pagesRefMap = pdfViewer.pagesRefMap; |
|
|
|
this.pdfThumbnailViewer.setDocument(pdfDocument); |
|
|
|
firstPagePromise.then(function(pdfPage) { |
|
downloadedPromise.then(function () { |
|
var event = document.createEvent('CustomEvent'); |
|
event.initCustomEvent('documentload', true, true, {}); |
|
window.dispatchEvent(event); |
|
}); |
|
|
|
PDFView.loadingBar.setWidth(document.getElementById('viewer')); |
|
|
|
PDFView.findController.resolveFirstPage(); |
|
|
|
// Initialize the browsing history. |
|
PDFHistory.initialize(self.documentFingerprint); |
|
}); |
|
|
|
// Fetch the necessary preference values. |
|
var showPreviousViewOnLoad; |
|
var showPreviousViewOnLoadPromise = |
|
Preferences.get('showPreviousViewOnLoad').then(function (prefValue) { |
|
showPreviousViewOnLoad = prefValue; |
|
}); |
|
var defaultZoomValue; |
|
var defaultZoomValuePromise = |
|
Preferences.get('defaultZoomValue').then(function (prefValue) { |
|
defaultZoomValue = prefValue; |
|
}); |
|
|
|
var storePromise = store.initializedPromise; |
|
Promise.all([firstPagePromise, storePromise, showPreviousViewOnLoadPromise, |
|
defaultZoomValuePromise]).then(function resolved() { |
|
var storedHash = null; |
|
if (showPreviousViewOnLoad && store.get('exists', false)) { |
|
var pageNum = store.get('page', '1'); |
|
var zoom = defaultZoomValue || |
|
store.get('zoom', PDFView.pdfViewer.currentScale); |
|
var left = store.get('scrollLeft', '0'); |
|
var top = store.get('scrollTop', '0'); |
|
|
|
storedHash = 'page=' + pageNum + '&zoom=' + zoom + ',' + |
|
left + ',' + top; |
|
} else if (defaultZoomValue) { |
|
storedHash = 'page=1&zoom=' + defaultZoomValue; |
|
} |
|
self.setInitialView(storedHash, scale); |
|
|
|
// Make all navigation keys work on document load, |
|
// unless the viewer is embedded in a web page. |
|
if (!self.isViewerEmbedded) { |
|
self.pdfViewer.focus(); |
|
//#if (FIREFOX || MOZCENTRAL) |
|
// self.pdfViewer.blur(); |
|
//#endif |
|
} |
|
}, function rejected(reason) { |
|
console.error(reason); |
|
|
|
firstPagePromise.then(function () { |
|
self.setInitialView(null, scale); |
|
}); |
|
}); |
|
|
|
pagesPromise.then(function() { |
|
if (PDFView.supportsPrinting) { |
|
pdfDocument.getJavaScript().then(function(javaScript) { |
|
if (javaScript.length) { |
|
console.warn('Warning: JavaScript is not supported'); |
|
PDFView.fallback(PDFJS.UNSUPPORTED_FEATURES.javaScript); |
|
} |
|
// Hack to support auto printing. |
|
var regex = /\bprint\s*\(/g; |
|
for (var i = 0, ii = javaScript.length; i < ii; i++) { |
|
var js = javaScript[i]; |
|
if (js && regex.test(js)) { |
|
setTimeout(function() { |
|
window.print(); |
|
}); |
|
return; |
|
} |
|
} |
|
}); |
|
} |
|
}); |
|
|
|
var destinationsPromise = |
|
this.destinationsPromise = pdfDocument.getDestinations(); |
|
destinationsPromise.then(function(destinations) { |
|
self.destinations = destinations; |
|
}); |
|
|
|
// outline depends on destinations and pagesRefMap |
|
var promises = [pagesPromise, destinationsPromise, |
|
PDFView.animationStartedPromise]; |
|
Promise.all(promises).then(function() { |
|
pdfDocument.getOutline().then(function(outline) { |
|
self.outline = new DocumentOutlineView(outline); |
|
document.getElementById('viewOutline').disabled = !outline; |
|
|
|
if (outline && |
|
self.preferenceSidebarViewOnLoad === SidebarView.OUTLINE) { |
|
self.switchSidebarView('outline', true); |
|
} |
|
}); |
|
pdfDocument.getAttachments().then(function(attachments) { |
|
self.attachments = new DocumentAttachmentsView(attachments); |
|
document.getElementById('viewAttachments').disabled = !attachments; |
|
|
|
if (attachments && |
|
self.preferenceSidebarViewOnLoad === SidebarView.ATTACHMENTS) { |
|
self.switchSidebarView('attachments', true); |
|
} |
|
}); |
|
}); |
|
|
|
if (self.preferenceSidebarViewOnLoad === SidebarView.THUMBS) { |
|
Promise.all([firstPagePromise, onePageRendered]).then(function () { |
|
self.switchSidebarView('thumbs', true); |
|
}); |
|
} |
|
|
|
pdfDocument.getMetadata().then(function(data) { |
|
var info = data.info, metadata = data.metadata; |
|
self.documentInfo = info; |
|
self.metadata = metadata; |
|
|
|
// Provides some basic debug information |
|
console.log('PDF ' + pdfDocument.fingerprint + ' [' + |
|
info.PDFFormatVersion + ' ' + (info.Producer || '-').trim() + |
|
' / ' + (info.Creator || '-').trim() + ']' + |
|
' (PDF.js: ' + (PDFJS.version || '-') + |
|
(!PDFJS.disableWebGL ? ' [WebGL]' : '') + ')'); |
|
|
|
var pdfTitle; |
|
if (metadata && metadata.has('dc:title')) { |
|
var title = metadata.get('dc:title'); |
|
// Ghostscript sometimes return 'Untitled', sets the title to 'Untitled' |
|
if (title !== 'Untitled') { |
|
pdfTitle = title; |
|
} |
|
} |
|
|
|
if (!pdfTitle && info && info['Title']) { |
|
pdfTitle = info['Title']; |
|
} |
|
|
|
if (pdfTitle) { |
|
self.setTitle(pdfTitle + ' - ' + document.title); |
|
} |
|
|
|
if (info.IsAcroFormPresent) { |
|
console.warn('Warning: AcroForm/XFA is not supported'); |
|
PDFView.fallback(PDFJS.UNSUPPORTED_FEATURES.forms); |
|
} |
|
|
|
//#if (FIREFOX || MOZCENTRAL) |
|
// var versionId = String(info.PDFFormatVersion).slice(-1) | 0; |
|
// var generatorId = 0; |
|
// var KNOWN_GENERATORS = ["acrobat distiller", "acrobat pdfwritter", |
|
// "adobe livecycle", "adobe pdf library", "adobe photoshop", "ghostscript", |
|
// "tcpdf", "cairo", "dvipdfm", "dvips", "pdftex", "pdfkit", "itext", |
|
// "prince", "quarkxpress", "mac os x", "microsoft", "openoffice", "oracle", |
|
// "luradocument", "pdf-xchange", "antenna house", "aspose.cells", "fpdf"]; |
|
// var generatorId = 0; |
|
// if (info.Producer) { |
|
// KNOWN_GENERATORS.some(function (generator, s, i) { |
|
// if (generator.indexOf(s) < 0) { |
|
// return false; |
|
// } |
|
// generatorId = i + 1; |
|
// return true; |
|
// }.bind(null, info.Producer.toLowerCase())); |
|
// } |
|
// var formType = !info.IsAcroFormPresent ? null : info.IsXFAPresent ? |
|
// 'xfa' : 'acroform'; |
|
// FirefoxCom.request('reportTelemetry', JSON.stringify({ |
|
// type: 'documentInfo', |
|
// version: versionId, |
|
// generator: generatorId, |
|
// formType: formType |
|
// })); |
|
//#endif |
|
}); |
|
}, |
|
|
|
setInitialView: function pdfViewSetInitialView(storedHash, scale) { |
|
// When opening a new file (when one is already loaded in the viewer): |
|
// Reset 'currentPageNumber', since otherwise the page's scale will be wrong |
|
// if 'currentPageNumber' is larger than the number of pages in the file. |
|
document.getElementById('pageNumber').value = |
|
this.pdfViewer.currentPageNumber = 1; |
|
|
|
if (PDFHistory.initialDestination) { |
|
this.navigateTo(PDFHistory.initialDestination); |
|
PDFHistory.initialDestination = null; |
|
} else if (this.initialBookmark) { |
|
this.setHash(this.initialBookmark); |
|
PDFHistory.push({ hash: this.initialBookmark }, !!this.initialBookmark); |
|
this.initialBookmark = null; |
|
} else if (storedHash) { |
|
this.setHash(storedHash); |
|
} else if (scale) { |
|
this.pdfViewer.setScale(scale, true); |
|
this.page = 1; |
|
} |
|
|
|
if (PDFView.pdfViewer.currentScale === UNKNOWN_SCALE) { |
|
// Scale was not initialized: invalid bookmark or scale was not specified. |
|
// Setting the default one. |
|
this.pdfViewer.setScale(DEFAULT_SCALE, true); |
|
} |
|
}, |
|
|
|
cleanup: function pdfViewCleanup() { |
|
this.pdfViewer.cleanup(); |
|
this.pdfThumbnailViewer.cleanup(); |
|
this.pdfDocument.cleanup(); |
|
}, |
|
|
|
forceRendering: function pdfViewForceRendering() { |
|
this.pdfRenderingQueue.printing = this.printing; |
|
this.pdfRenderingQueue.isThumbnailViewEnabled = this.sidebarOpen; |
|
this.pdfRenderingQueue.renderHighestPriority(); |
|
}, |
|
|
|
setHash: function pdfViewSetHash(hash) { |
|
var validFitZoomValues = ['Fit','FitB','FitH','FitBH', |
|
'FitV','FitBV','FitR']; |
|
|
|
if (!hash) { |
|
return; |
|
} |
|
|
|
if (hash.indexOf('=') >= 0) { |
|
var params = PDFView.parseQueryString(hash); |
|
// borrowing syntax from "Parameters for Opening PDF Files" |
|
if ('nameddest' in params) { |
|
PDFHistory.updateNextHashParam(params.nameddest); |
|
PDFView.navigateTo(params.nameddest); |
|
return; |
|
} |
|
var pageNumber, dest; |
|
if ('page' in params) { |
|
pageNumber = (params.page | 0) || 1; |
|
} |
|
if ('zoom' in params) { |
|
var zoomArgs = params.zoom.split(','); // scale,left,top |
|
// building destination array |
|
|
|
// If the zoom value, it has to get divided by 100. If it is a string, |
|
// it should stay as it is. |
|
var zoomArg = zoomArgs[0]; |
|
var zoomArgNumber = parseFloat(zoomArg); |
|
var destName = 'XYZ'; |
|
if (zoomArgNumber) { |
|
zoomArg = zoomArgNumber / 100; |
|
} else if (validFitZoomValues.indexOf(zoomArg) >= 0) { |
|
destName = zoomArg; |
|
} |
|
dest = [null, { name: destName }, |
|
zoomArgs.length > 1 ? (zoomArgs[1] | 0) : null, |
|
zoomArgs.length > 2 ? (zoomArgs[2] | 0) : null, |
|
zoomArg]; |
|
} |
|
if (dest) { |
|
var currentPage = this.getPageView((pageNumber || this.page) - 1); |
|
currentPage.scrollIntoView(dest); |
|
} else if (pageNumber) { |
|
this.page = pageNumber; // simple page |
|
} |
|
if ('pagemode' in params) { |
|
if (params.pagemode === 'thumbs' || params.pagemode === 'bookmarks' || |
|
params.pagemode === 'attachments') { |
|
this.switchSidebarView((params.pagemode === 'bookmarks' ? |
|
'outline' : params.pagemode), true); |
|
} else if (params.pagemode === 'none' && this.sidebarOpen) { |
|
document.getElementById('sidebarToggle').click(); |
|
} |
|
} |
|
} else if (/^\d+$/.test(hash)) { // page number |
|
this.page = hash; |
|
} else { // named destination |
|
PDFHistory.updateNextHashParam(unescape(hash)); |
|
PDFView.navigateTo(unescape(hash)); |
|
} |
|
}, |
|
|
|
switchSidebarView: function pdfViewSwitchSidebarView(view, openSidebar) { |
|
if (openSidebar && !this.sidebarOpen) { |
|
document.getElementById('sidebarToggle').click(); |
|
} |
|
var thumbsView = document.getElementById('thumbnailView'); |
|
var outlineView = document.getElementById('outlineView'); |
|
var attachmentsView = document.getElementById('attachmentsView'); |
|
|
|
var thumbsButton = document.getElementById('viewThumbnail'); |
|
var outlineButton = document.getElementById('viewOutline'); |
|
var attachmentsButton = document.getElementById('viewAttachments'); |
|
|
|
switch (view) { |
|
case 'thumbs': |
|
var wasAnotherViewVisible = thumbsView.classList.contains('hidden'); |
|
|
|
thumbsButton.classList.add('toggled'); |
|
outlineButton.classList.remove('toggled'); |
|
attachmentsButton.classList.remove('toggled'); |
|
thumbsView.classList.remove('hidden'); |
|
outlineView.classList.add('hidden'); |
|
attachmentsView.classList.add('hidden'); |
|
|
|
PDFView.forceRendering(); |
|
|
|
if (wasAnotherViewVisible) { |
|
this.pdfThumbnailViewer.ensureThumbnailVisible(this.page); |
|
} |
|
break; |
|
|
|
case 'outline': |
|
thumbsButton.classList.remove('toggled'); |
|
outlineButton.classList.add('toggled'); |
|
attachmentsButton.classList.remove('toggled'); |
|
thumbsView.classList.add('hidden'); |
|
outlineView.classList.remove('hidden'); |
|
attachmentsView.classList.add('hidden'); |
|
|
|
if (outlineButton.getAttribute('disabled')) { |
|
return; |
|
} |
|
break; |
|
|
|
case 'attachments': |
|
thumbsButton.classList.remove('toggled'); |
|
outlineButton.classList.remove('toggled'); |
|
attachmentsButton.classList.add('toggled'); |
|
thumbsView.classList.add('hidden'); |
|
outlineView.classList.add('hidden'); |
|
attachmentsView.classList.remove('hidden'); |
|
|
|
if (attachmentsButton.getAttribute('disabled')) { |
|
return; |
|
} |
|
break; |
|
} |
|
}, |
|
|
|
// Helper function to parse query string (e.g. ?param1=value&parm2=...). |
|
parseQueryString: function pdfViewParseQueryString(query) { |
|
var parts = query.split('&'); |
|
var params = {}; |
|
for (var i = 0, ii = parts.length; i < ii; ++i) { |
|
var param = parts[i].split('='); |
|
var key = param[0].toLowerCase(); |
|
var value = param.length > 1 ? param[1] : null; |
|
params[decodeURIComponent(key)] = decodeURIComponent(value); |
|
} |
|
return params; |
|
}, |
|
|
|
beforePrint: function pdfViewSetupBeforePrint() { |
|
if (!this.supportsPrinting) { |
|
var printMessage = mozL10n.get('printing_not_supported', null, |
|
'Warning: Printing is not fully supported by this browser.'); |
|
this.error(printMessage); |
|
return; |
|
} |
|
|
|
var alertNotReady = false; |
|
var i, ii; |
|
if (!this.pagesCount) { |
|
alertNotReady = true; |
|
} else { |
|
for (i = 0, ii = this.pagesCount; i < ii; ++i) { |
|
if (!this.getPageView(i).pdfPage) { |
|
alertNotReady = true; |
|
break; |
|
} |
|
} |
|
} |
|
if (alertNotReady) { |
|
var notReadyMessage = mozL10n.get('printing_not_ready', null, |
|
'Warning: The PDF is not fully loaded for printing.'); |
|
window.alert(notReadyMessage); |
|
return; |
|
} |
|
|
|
this.printing = true; |
|
this.forceRendering(); |
|
|
|
var body = document.querySelector('body'); |
|
body.setAttribute('data-mozPrintCallback', true); |
|
for (i = 0, ii = this.pagesCount; i < ii; ++i) { |
|
this.getPageView(i).beforePrint(); |
|
} |
|
|
|
//#if (FIREFOX || MOZCENTRAL) |
|
// FirefoxCom.request('reportTelemetry', JSON.stringify({ |
|
// type: 'print' |
|
// })); |
|
//#endif |
|
}, |
|
|
|
afterPrint: function pdfViewSetupAfterPrint() { |
|
var div = document.getElementById('printContainer'); |
|
while (div.hasChildNodes()) { |
|
div.removeChild(div.lastChild); |
|
} |
|
|
|
this.printing = false; |
|
this.forceRendering(); |
|
}, |
|
|
|
setScale: function (value, resetAutoSettings, noScroll) { |
|
this.pdfViewer.setScale(value, resetAutoSettings, noScroll); |
|
}, |
|
|
|
rotatePages: function pdfViewRotatePages(delta) { |
|
var currentPage = this.getPageView(this.page - 1); |
|
|
|
this.pageRotation = (this.pageRotation + 360 + delta) % 360; |
|
this.pdfViewer.updateRotation(this.pageRotation); |
|
this.pdfThumbnailViewer.updateRotation(this.pageRotation); |
|
|
|
this.forceRendering(); |
|
|
|
if (currentPage) { |
|
currentPage.scrollIntoView(); |
|
} |
|
}, |
|
|
|
/** |
|
* This function flips the page in presentation mode if the user scrolls up |
|
* or down with large enough motion and prevents page flipping too often. |
|
* |
|
* @this {PDFView} |
|
* @param {number} mouseScrollDelta The delta value from the mouse event. |
|
*/ |
|
mouseScroll: function pdfViewMouseScroll(mouseScrollDelta) { |
|
var MOUSE_SCROLL_COOLDOWN_TIME = 50; |
|
|
|
var currentTime = (new Date()).getTime(); |
|
var storedTime = this.mouseScrollTimeStamp; |
|
|
|
// In case one page has already been flipped there is a cooldown time |
|
// which has to expire before next page can be scrolled on to. |
|
if (currentTime > storedTime && |
|
currentTime - storedTime < MOUSE_SCROLL_COOLDOWN_TIME) { |
|
return; |
|
} |
|
|
|
// In case the user decides to scroll to the opposite direction than before |
|
// clear the accumulated delta. |
|
if ((this.mouseScrollDelta > 0 && mouseScrollDelta < 0) || |
|
(this.mouseScrollDelta < 0 && mouseScrollDelta > 0)) { |
|
this.clearMouseScrollState(); |
|
} |
|
|
|
this.mouseScrollDelta += mouseScrollDelta; |
|
|
|
var PAGE_FLIP_THRESHOLD = 120; |
|
if (Math.abs(this.mouseScrollDelta) >= PAGE_FLIP_THRESHOLD) { |
|
|
|
var PageFlipDirection = { |
|
UP: -1, |
|
DOWN: 1 |
|
}; |
|
|
|
// In presentation mode scroll one page at a time. |
|
var pageFlipDirection = (this.mouseScrollDelta > 0) ? |
|
PageFlipDirection.UP : |
|
PageFlipDirection.DOWN; |
|
this.clearMouseScrollState(); |
|
var currentPage = this.page; |
|
|
|
// In case we are already on the first or the last page there is no need |
|
// to do anything. |
|
if ((currentPage === 1 && pageFlipDirection === PageFlipDirection.UP) || |
|
(currentPage === this.pagesCount && |
|
pageFlipDirection === PageFlipDirection.DOWN)) { |
|
return; |
|
} |
|
|
|
this.page += pageFlipDirection; |
|
this.mouseScrollTimeStamp = currentTime; |
|
} |
|
}, |
|
|
|
/** |
|
* This function clears the member attributes used with mouse scrolling in |
|
* presentation mode. |
|
* |
|
* @this {PDFView} |
|
*/ |
|
clearMouseScrollState: function pdfViewClearMouseScrollState() { |
|
this.mouseScrollTimeStamp = 0; |
|
this.mouseScrollDelta = 0; |
|
} |
|
}; |
|
|
|
//#include thumbnail_view.js |
|
//#include document_outline_view.js |
|
//#include document_attachments_view.js |
|
|
|
//#if CHROME |
|
//(function rewriteUrlClosure() { |
|
// // Run this code outside DOMContentLoaded to make sure that the URL |
|
// // is rewritten as soon as possible. |
|
// var params = PDFView.parseQueryString(document.location.search.slice(1)); |
|
// DEFAULT_URL = params.file || ''; |
|
// |
|
// // Example: chrome-extension://.../http://example.com/file.pdf |
|
// var humanReadableUrl = '/' + DEFAULT_URL + location.hash; |
|
// history.replaceState(history.state, '', humanReadableUrl); |
|
// if (top === window) { |
|
// chrome.runtime.sendMessage('showPageAction'); |
|
// } |
|
//})(); |
|
//#endif |
|
|
|
function webViewerLoad(evt) { |
|
PDFView.initialize().then(webViewerInitialized); |
|
} |
|
|
|
function webViewerInitialized() { |
|
//#if (GENERIC || B2G) |
|
var params = PDFView.parseQueryString(document.location.search.substring(1)); |
|
var file = 'file' in params ? params.file : DEFAULT_URL; |
|
//#endif |
|
//#if (FIREFOX || MOZCENTRAL) |
|
//var file = window.location.href.split('#')[0]; |
|
//#endif |
|
//#if CHROME |
|
//var file = DEFAULT_URL; |
|
//#endif |
|
|
|
//#if !(FIREFOX || MOZCENTRAL || CHROME || B2G) |
|
var fileInput = document.createElement('input'); |
|
fileInput.id = 'fileInput'; |
|
fileInput.className = 'fileInput'; |
|
fileInput.setAttribute('type', 'file'); |
|
fileInput.oncontextmenu = noContextMenuHandler; |
|
document.body.appendChild(fileInput); |
|
|
|
if (!window.File || !window.FileReader || !window.FileList || !window.Blob) { |
|
document.getElementById('openFile').setAttribute('hidden', 'true'); |
|
document.getElementById('secondaryOpenFile').setAttribute('hidden', 'true'); |
|
} else { |
|
document.getElementById('fileInput').value = null; |
|
} |
|
//#else |
|
//document.getElementById('openFile').setAttribute('hidden', 'true'); |
|
//document.getElementById('secondaryOpenFile').setAttribute('hidden', 'true'); |
|
//#endif |
|
|
|
//#if !(FIREFOX || MOZCENTRAL) |
|
var locale = PDFJS.locale || navigator.language; |
|
//#endif |
|
|
|
//#if !PRODUCTION |
|
if (true) { |
|
//#else |
|
//if (PDFView.preferencesPdfBugEnabled) { |
|
//#endif |
|
// Special debugging flags in the hash section of the URL. |
|
var hash = document.location.hash.substring(1); |
|
var hashParams = PDFView.parseQueryString(hash); |
|
|
|
if ('disableworker' in hashParams) { |
|
PDFJS.disableWorker = (hashParams['disableworker'] === 'true'); |
|
} |
|
if ('disablerange' in hashParams) { |
|
PDFJS.disableRange = (hashParams['disablerange'] === 'true'); |
|
} |
|
if ('disableautofetch' in hashParams) { |
|
PDFJS.disableAutoFetch = (hashParams['disableautofetch'] === 'true'); |
|
} |
|
if ('disablefontface' in hashParams) { |
|
PDFJS.disableFontFace = (hashParams['disablefontface'] === 'true'); |
|
} |
|
if ('disablehistory' in hashParams) { |
|
PDFJS.disableHistory = (hashParams['disablehistory'] === 'true'); |
|
} |
|
if ('webgl' in hashParams) { |
|
PDFJS.disableWebGL = (hashParams['webgl'] !== 'true'); |
|
} |
|
if ('useonlycsszoom' in hashParams) { |
|
PDFJS.useOnlyCssZoom = (hashParams['useonlycsszoom'] === 'true'); |
|
} |
|
if ('verbosity' in hashParams) { |
|
PDFJS.verbosity = hashParams['verbosity'] | 0; |
|
} |
|
if ('ignorecurrentpositiononzoom' in hashParams) { |
|
IGNORE_CURRENT_POSITION_ON_ZOOM = |
|
(hashParams['ignorecurrentpositiononzoom'] === 'true'); |
|
} |
|
//#if !PRODUCTION |
|
if ('disablebcmaps' in hashParams && hashParams['disablebcmaps']) { |
|
PDFJS.cMapUrl = '../external/cmaps/'; |
|
PDFJS.cMapPacked = false; |
|
} |
|
//#endif |
|
//#if !(FIREFOX || MOZCENTRAL) |
|
if ('locale' in hashParams) { |
|
locale = hashParams['locale']; |
|
} |
|
//#endif |
|
if ('textlayer' in hashParams) { |
|
switch (hashParams['textlayer']) { |
|
case 'off': |
|
PDFJS.disableTextLayer = true; |
|
break; |
|
case 'visible': |
|
case 'shadow': |
|
case 'hover': |
|
var viewer = document.getElementById('viewer'); |
|
viewer.classList.add('textLayer-' + hashParams['textlayer']); |
|
break; |
|
} |
|
} |
|
if ('pdfbug' in hashParams) { |
|
PDFJS.pdfBug = true; |
|
var pdfBug = hashParams['pdfbug']; |
|
var enabled = pdfBug.split(','); |
|
PDFBug.enable(enabled); |
|
PDFBug.init(); |
|
} |
|
} |
|
|
|
//#if !(FIREFOX || MOZCENTRAL) |
|
mozL10n.setLanguage(locale); |
|
//#endif |
|
//#if (FIREFOX || MOZCENTRAL) |
|
//if (!PDFView.supportsDocumentFonts) { |
|
// PDFJS.disableFontFace = true; |
|
// console.warn(mozL10n.get('web_fonts_disabled', null, |
|
// 'Web fonts are disabled: unable to use embedded PDF fonts.')); |
|
//} |
|
//#endif |
|
|
|
if (!PDFView.supportsPrinting) { |
|
document.getElementById('print').classList.add('hidden'); |
|
document.getElementById('secondaryPrint').classList.add('hidden'); |
|
} |
|
|
|
if (!PDFView.supportsFullscreen) { |
|
document.getElementById('presentationMode').classList.add('hidden'); |
|
document.getElementById('secondaryPresentationMode'). |
|
classList.add('hidden'); |
|
} |
|
|
|
if (PDFView.supportsIntegratedFind) { |
|
document.getElementById('viewFind').classList.add('hidden'); |
|
} |
|
|
|
// Listen for unsupported features to trigger the fallback UI. |
|
PDFJS.UnsupportedManager.listen(PDFView.fallback.bind(PDFView)); |
|
|
|
// Suppress context menus for some controls |
|
document.getElementById('scaleSelect').oncontextmenu = noContextMenuHandler; |
|
|
|
var mainContainer = document.getElementById('mainContainer'); |
|
var outerContainer = document.getElementById('outerContainer'); |
|
mainContainer.addEventListener('transitionend', function(e) { |
|
if (e.target === mainContainer) { |
|
var event = document.createEvent('UIEvents'); |
|
event.initUIEvent('resize', false, false, window, 0); |
|
window.dispatchEvent(event); |
|
outerContainer.classList.remove('sidebarMoving'); |
|
} |
|
}, true); |
|
|
|
document.getElementById('sidebarToggle').addEventListener('click', |
|
function() { |
|
this.classList.toggle('toggled'); |
|
outerContainer.classList.add('sidebarMoving'); |
|
outerContainer.classList.toggle('sidebarOpen'); |
|
PDFView.sidebarOpen = outerContainer.classList.contains('sidebarOpen'); |
|
PDFView.forceRendering(); |
|
}); |
|
|
|
document.getElementById('viewThumbnail').addEventListener('click', |
|
function() { |
|
PDFView.switchSidebarView('thumbs'); |
|
}); |
|
|
|
document.getElementById('viewOutline').addEventListener('click', |
|
function() { |
|
PDFView.switchSidebarView('outline'); |
|
}); |
|
|
|
document.getElementById('viewAttachments').addEventListener('click', |
|
function() { |
|
PDFView.switchSidebarView('attachments'); |
|
}); |
|
|
|
document.getElementById('previous').addEventListener('click', |
|
function() { |
|
PDFView.page--; |
|
}); |
|
|
|
document.getElementById('next').addEventListener('click', |
|
function() { |
|
PDFView.page++; |
|
}); |
|
|
|
document.getElementById('zoomIn').addEventListener('click', |
|
function() { |
|
PDFView.zoomIn(); |
|
}); |
|
|
|
document.getElementById('zoomOut').addEventListener('click', |
|
function() { |
|
PDFView.zoomOut(); |
|
}); |
|
|
|
document.getElementById('pageNumber').addEventListener('click', |
|
function() { |
|
this.select(); |
|
}); |
|
|
|
document.getElementById('pageNumber').addEventListener('change', |
|
function() { |
|
// Handle the user inputting a floating point number. |
|
PDFView.page = (this.value | 0); |
|
|
|
if (this.value !== (this.value | 0).toString()) { |
|
this.value = PDFView.page; |
|
} |
|
}); |
|
|
|
document.getElementById('scaleSelect').addEventListener('change', |
|
function() { |
|
PDFView.pdfViewer.setScale(this.value); |
|
}); |
|
|
|
document.getElementById('presentationMode').addEventListener('click', |
|
SecondaryToolbar.presentationModeClick.bind(SecondaryToolbar)); |
|
|
|
document.getElementById('openFile').addEventListener('click', |
|
SecondaryToolbar.openFileClick.bind(SecondaryToolbar)); |
|
|
|
document.getElementById('print').addEventListener('click', |
|
SecondaryToolbar.printClick.bind(SecondaryToolbar)); |
|
|
|
document.getElementById('download').addEventListener('click', |
|
SecondaryToolbar.downloadClick.bind(SecondaryToolbar)); |
|
|
|
//#if (FIREFOX || MOZCENTRAL) |
|
//PDFView.setTitleUsingUrl(file); |
|
//PDFView.initPassiveLoading(); |
|
//return; |
|
//#endif |
|
|
|
//#if GENERIC |
|
if (file && file.lastIndexOf('file:', 0) === 0) { |
|
// file:-scheme. Load the contents in the main thread because QtWebKit |
|
// cannot load file:-URLs in a Web Worker. file:-URLs are usually loaded |
|
// very quickly, so there is no need to set up progress event listeners. |
|
PDFView.setTitleUsingUrl(file); |
|
var xhr = new XMLHttpRequest(); |
|
xhr.onload = function() { |
|
PDFView.open(new Uint8Array(xhr.response), 0); |
|
}; |
|
try { |
|
xhr.open('GET', file); |
|
xhr.responseType = 'arraybuffer'; |
|
xhr.send(); |
|
} catch (e) { |
|
PDFView.error(mozL10n.get('loading_error', null, |
|
'An error occurred while loading the PDF.'), e); |
|
} |
|
return; |
|
} |
|
//#endif |
|
|
|
//#if !B2G && !CHROME |
|
if (file) { |
|
PDFView.open(file, 0); |
|
} |
|
//#endif |
|
//#if CHROME |
|
//if (file) { |
|
// ChromeCom.openPDFFile(file); |
|
//} |
|
//#endif |
|
} |
|
|
|
document.addEventListener('DOMContentLoaded', webViewerLoad, true); |
|
|
|
document.addEventListener('pagerendered', function (e) { |
|
var pageIndex = e.detail.pageNumber - 1; |
|
var pageView = PDFView.pdfViewer.getPageView(pageIndex); |
|
var thumbnailView = PDFView.pdfThumbnailViewer.getThumbnail(pageIndex); |
|
thumbnailView.setImage(pageView.canvas); |
|
|
|
//#if (FIREFOX || MOZCENTRAL) |
|
//if (pageView.textLayer && pageView.textLayer.textDivs && |
|
// pageView.textLayer.textDivs.length > 0 && |
|
// !PDFView.supportsDocumentColors) { |
|
// console.error(mozL10n.get('document_colors_disabled', null, |
|
// 'PDF documents are not allowed to use their own colors: ' + |
|
// '\'Allow pages to choose their own colors\' ' + |
|
// 'is deactivated in the browser.')); |
|
// PDFView.fallback(); |
|
//} |
|
//#endif |
|
|
|
if (pageView.error) { |
|
PDFView.error(mozL10n.get('rendering_error', null, |
|
'An error occurred while rendering the page.'), pageView.error); |
|
} |
|
|
|
//#if (FIREFOX || MOZCENTRAL) |
|
//FirefoxCom.request('reportTelemetry', JSON.stringify({ |
|
// type: 'pageInfo' |
|
//})); |
|
//// It is a good time to report stream and font types |
|
//PDFView.pdfDocument.getStats().then(function (stats) { |
|
// FirefoxCom.request('reportTelemetry', JSON.stringify({ |
|
// type: 'documentStats', |
|
// stats: stats |
|
// })); |
|
//}); |
|
//#endif |
|
}, true); |
|
|
|
window.addEventListener('presentationmodechanged', function (e) { |
|
var active = e.detail.active; |
|
var switchInProgress = e.detail.switchInProgress; |
|
PDFView.pdfViewer.presentationModeState = |
|
switchInProgress ? PresentationModeState.CHANGING : |
|
active ? PresentationModeState.FULLSCREEN : PresentationModeState.NORMAL; |
|
}); |
|
|
|
function updateViewarea() { |
|
if (!PDFView.initialized) { |
|
return; |
|
} |
|
PDFView.pdfViewer.update(); |
|
} |
|
|
|
window.addEventListener('updateviewarea', function () { |
|
if (!PDFView.initialized) { |
|
return; |
|
} |
|
|
|
var location = PDFView.pdfViewer.location; |
|
|
|
PDFView.store.initializedPromise.then(function() { |
|
PDFView.store.setMultiple({ |
|
'exists': true, |
|
'page': location.pageNumber, |
|
'zoom': location.scale, |
|
'scrollLeft': location.left, |
|
'scrollTop': location.top |
|
}).catch(function() { |
|
// unable to write to storage |
|
}); |
|
}); |
|
var href = PDFView.getAnchorUrl(location.pdfOpenParams); |
|
document.getElementById('viewBookmark').href = href; |
|
document.getElementById('secondaryViewBookmark').href = href; |
|
|
|
// Update the current bookmark in the browsing history. |
|
PDFHistory.updateCurrentBookmark(location.pdfOpenParams, location.pageNumber); |
|
}, true); |
|
|
|
window.addEventListener('resize', function webViewerResize(evt) { |
|
if (PDFView.initialized && |
|
(document.getElementById('pageWidthOption').selected || |
|
document.getElementById('pageFitOption').selected || |
|
document.getElementById('pageAutoOption').selected)) { |
|
PDFView.pdfViewer.setScale(document.getElementById('scaleSelect').value); |
|
} |
|
updateViewarea(); |
|
|
|
// Set the 'max-height' CSS property of the secondary toolbar. |
|
SecondaryToolbar.setMaxHeight(document.getElementById('viewerContainer')); |
|
}); |
|
|
|
window.addEventListener('hashchange', function webViewerHashchange(evt) { |
|
if (PDFHistory.isHashChangeUnlocked) { |
|
PDFView.setHash(document.location.hash.substring(1)); |
|
} |
|
}); |
|
|
|
//#if !(FIREFOX || MOZCENTRAL || CHROME) |
|
window.addEventListener('change', function webViewerChange(evt) { |
|
var files = evt.target.files; |
|
if (!files || files.length === 0) { |
|
return; |
|
} |
|
var file = files[0]; |
|
|
|
if (!PDFJS.disableCreateObjectURL && |
|
typeof URL !== 'undefined' && URL.createObjectURL) { |
|
PDFView.open(URL.createObjectURL(file), 0); |
|
} else { |
|
// Read the local file into a Uint8Array. |
|
var fileReader = new FileReader(); |
|
fileReader.onload = function webViewerChangeFileReaderOnload(evt) { |
|
var buffer = evt.target.result; |
|
var uint8Array = new Uint8Array(buffer); |
|
PDFView.open(uint8Array, 0); |
|
}; |
|
fileReader.readAsArrayBuffer(file); |
|
} |
|
|
|
PDFView.setTitleUsingUrl(file.name); |
|
|
|
// URL does not reflect proper document location - hiding some icons. |
|
document.getElementById('viewBookmark').setAttribute('hidden', 'true'); |
|
document.getElementById('secondaryViewBookmark'). |
|
setAttribute('hidden', 'true'); |
|
document.getElementById('download').setAttribute('hidden', 'true'); |
|
document.getElementById('secondaryDownload').setAttribute('hidden', 'true'); |
|
}, true); |
|
//#endif |
|
|
|
function selectScaleOption(value) { |
|
var options = document.getElementById('scaleSelect').options; |
|
var predefinedValueFound = false; |
|
for (var i = 0; i < options.length; i++) { |
|
var option = options[i]; |
|
if (option.value !== value) { |
|
option.selected = false; |
|
continue; |
|
} |
|
option.selected = true; |
|
predefinedValueFound = true; |
|
} |
|
return predefinedValueFound; |
|
} |
|
|
|
window.addEventListener('localized', function localized(evt) { |
|
document.getElementsByTagName('html')[0].dir = mozL10n.getDirection(); |
|
|
|
PDFView.animationStartedPromise.then(function() { |
|
// Adjust the width of the zoom box to fit the content. |
|
// Note: If the window is narrow enough that the zoom box is not visible, |
|
// we temporarily show it to be able to adjust its width. |
|
var container = document.getElementById('scaleSelectContainer'); |
|
if (container.clientWidth === 0) { |
|
container.setAttribute('style', 'display: inherit;'); |
|
} |
|
if (container.clientWidth > 0) { |
|
var select = document.getElementById('scaleSelect'); |
|
select.setAttribute('style', 'min-width: inherit;'); |
|
var width = select.clientWidth + SCALE_SELECT_CONTAINER_PADDING; |
|
select.setAttribute('style', 'min-width: ' + |
|
(width + SCALE_SELECT_PADDING) + 'px;'); |
|
container.setAttribute('style', 'min-width: ' + width + 'px; ' + |
|
'max-width: ' + width + 'px;'); |
|
} |
|
|
|
// Set the 'max-height' CSS property of the secondary toolbar. |
|
SecondaryToolbar.setMaxHeight(document.getElementById('viewerContainer')); |
|
}); |
|
}, true); |
|
|
|
window.addEventListener('scalechange', function scalechange(evt) { |
|
document.getElementById('zoomOut').disabled = (evt.scale === MIN_SCALE); |
|
document.getElementById('zoomIn').disabled = (evt.scale === MAX_SCALE); |
|
|
|
var customScaleOption = document.getElementById('customScaleOption'); |
|
customScaleOption.selected = false; |
|
|
|
if (!evt.resetAutoSettings && |
|
(document.getElementById('pageWidthOption').selected || |
|
document.getElementById('pageFitOption').selected || |
|
document.getElementById('pageAutoOption').selected)) { |
|
updateViewarea(); |
|
return; |
|
} |
|
|
|
if (evt.presetValue) { |
|
selectScaleOption(evt.presetValue); |
|
updateViewarea(); |
|
return; |
|
} |
|
|
|
var predefinedValueFound = selectScaleOption('' + evt.scale); |
|
if (!predefinedValueFound) { |
|
customScaleOption.textContent = Math.round(evt.scale * 10000) / 100 + '%'; |
|
customScaleOption.selected = true; |
|
} |
|
updateViewarea(); |
|
}, true); |
|
|
|
window.addEventListener('pagechange', function pagechange(evt) { |
|
var page = evt.pageNumber; |
|
if (PDFView.pdfViewer.previousPageNumber !== page) { |
|
document.getElementById('pageNumber').value = page; |
|
PDFView.pdfThumbnailViewer.updatePage(page); |
|
} |
|
var numPages = PDFView.pagesCount; |
|
|
|
document.getElementById('previous').disabled = (page <= 1); |
|
document.getElementById('next').disabled = (page >= numPages); |
|
|
|
document.getElementById('firstPage').disabled = (page <= 1); |
|
document.getElementById('lastPage').disabled = (page >= numPages); |
|
|
|
// checking if the this.page was called from the updateViewarea function |
|
if (evt.updateInProgress) { |
|
return; |
|
} |
|
// Avoid scrolling the first page during loading |
|
if (this.loading && page === 1) { |
|
return; |
|
} |
|
PDFView.getPageView(page - 1).scrollIntoView(); |
|
}, true); |
|
|
|
function handleMouseWheel(evt) { |
|
var MOUSE_WHEEL_DELTA_FACTOR = 40; |
|
var ticks = (evt.type === 'DOMMouseScroll') ? -evt.detail : |
|
evt.wheelDelta / MOUSE_WHEEL_DELTA_FACTOR; |
|
var direction = (ticks < 0) ? 'zoomOut' : 'zoomIn'; |
|
|
|
if (evt.ctrlKey) { // Only zoom the pages, not the entire viewer |
|
evt.preventDefault(); |
|
PDFView[direction](Math.abs(ticks)); |
|
} else if (PresentationMode.active) { |
|
PDFView.mouseScroll(ticks * MOUSE_WHEEL_DELTA_FACTOR); |
|
} |
|
} |
|
|
|
window.addEventListener('DOMMouseScroll', handleMouseWheel); |
|
window.addEventListener('mousewheel', handleMouseWheel); |
|
|
|
window.addEventListener('click', function click(evt) { |
|
if (!PresentationMode.active) { |
|
if (SecondaryToolbar.opened && |
|
PDFView.pdfViewer.containsElement(evt.target)) { |
|
SecondaryToolbar.close(); |
|
} |
|
} else if (evt.button === 0) { |
|
// Necessary since preventDefault() in 'mousedown' won't stop |
|
// the event propagation in all circumstances in presentation mode. |
|
evt.preventDefault(); |
|
} |
|
}, false); |
|
|
|
window.addEventListener('keydown', function keydown(evt) { |
|
if (OverlayManager.active) { |
|
return; |
|
} |
|
|
|
var handled = false; |
|
var cmd = (evt.ctrlKey ? 1 : 0) | |
|
(evt.altKey ? 2 : 0) | |
|
(evt.shiftKey ? 4 : 0) | |
|
(evt.metaKey ? 8 : 0); |
|
|
|
// First, handle the key bindings that are independent whether an input |
|
// control is selected or not. |
|
if (cmd === 1 || cmd === 8 || cmd === 5 || cmd === 12) { |
|
// either CTRL or META key with optional SHIFT. |
|
switch (evt.keyCode) { |
|
case 70: // f |
|
if (!PDFView.supportsIntegratedFind) { |
|
PDFView.findBar.open(); |
|
handled = true; |
|
} |
|
break; |
|
case 71: // g |
|
if (!PDFView.supportsIntegratedFind) { |
|
PDFView.findBar.dispatchEvent('again', cmd === 5 || cmd === 12); |
|
handled = true; |
|
} |
|
break; |
|
case 61: // FF/Mac '=' |
|
case 107: // FF '+' and '=' |
|
case 187: // Chrome '+' |
|
case 171: // FF with German keyboard |
|
PDFView.zoomIn(); |
|
handled = true; |
|
break; |
|
case 173: // FF/Mac '-' |
|
case 109: // FF '-' |
|
case 189: // Chrome '-' |
|
PDFView.zoomOut(); |
|
handled = true; |
|
break; |
|
case 48: // '0' |
|
case 96: // '0' on Numpad of Swedish keyboard |
|
// keeping it unhandled (to restore page zoom to 100%) |
|
setTimeout(function () { |
|
// ... and resetting the scale after browser adjusts its scale |
|
PDFView.pdfViewer.setScale(DEFAULT_SCALE, true); |
|
}); |
|
handled = false; |
|
break; |
|
} |
|
} |
|
|
|
//#if !(FIREFOX || MOZCENTRAL) |
|
// CTRL or META without shift |
|
if (cmd === 1 || cmd === 8) { |
|
switch (evt.keyCode) { |
|
case 83: // s |
|
PDFView.download(); |
|
handled = true; |
|
break; |
|
} |
|
} |
|
//#endif |
|
|
|
// CTRL+ALT or Option+Command |
|
if (cmd === 3 || cmd === 10) { |
|
switch (evt.keyCode) { |
|
case 80: // p |
|
SecondaryToolbar.presentationModeClick(); |
|
handled = true; |
|
break; |
|
case 71: // g |
|
// focuses input#pageNumber field |
|
document.getElementById('pageNumber').select(); |
|
handled = true; |
|
break; |
|
} |
|
} |
|
|
|
if (handled) { |
|
evt.preventDefault(); |
|
return; |
|
} |
|
|
|
// Some shortcuts should not get handled if a control/input element |
|
// is selected. |
|
var curElement = document.activeElement || document.querySelector(':focus'); |
|
var curElementTagName = curElement && curElement.tagName.toUpperCase(); |
|
if (curElementTagName === 'INPUT' || |
|
curElementTagName === 'TEXTAREA' || |
|
curElementTagName === 'SELECT') { |
|
// Make sure that the secondary toolbar is closed when Escape is pressed. |
|
if (evt.keyCode !== 27) { // 'Esc' |
|
return; |
|
} |
|
} |
|
|
|
if (cmd === 0) { // no control key pressed at all. |
|
switch (evt.keyCode) { |
|
case 38: // up arrow |
|
case 33: // pg up |
|
case 8: // backspace |
|
if (!PresentationMode.active && |
|
PDFView.currentScaleValue !== 'page-fit') { |
|
break; |
|
} |
|
/* in presentation mode */ |
|
/* falls through */ |
|
case 37: // left arrow |
|
// horizontal scrolling using arrow keys |
|
if (PDFView.pdfViewer.isHorizontalScrollbarEnabled) { |
|
break; |
|
} |
|
/* falls through */ |
|
case 75: // 'k' |
|
case 80: // 'p' |
|
PDFView.page--; |
|
handled = true; |
|
break; |
|
case 27: // esc key |
|
if (SecondaryToolbar.opened) { |
|
SecondaryToolbar.close(); |
|
handled = true; |
|
} |
|
if (!PDFView.supportsIntegratedFind && PDFView.findBar.opened) { |
|
PDFView.findBar.close(); |
|
handled = true; |
|
} |
|
break; |
|
case 40: // down arrow |
|
case 34: // pg down |
|
case 32: // spacebar |
|
if (!PresentationMode.active && |
|
PDFView.currentScaleValue !== 'page-fit') { |
|
break; |
|
} |
|
/* falls through */ |
|
case 39: // right arrow |
|
// horizontal scrolling using arrow keys |
|
if (PDFView.pdfViewer.isHorizontalScrollbarEnabled) { |
|
break; |
|
} |
|
/* falls through */ |
|
case 74: // 'j' |
|
case 78: // 'n' |
|
PDFView.page++; |
|
handled = true; |
|
break; |
|
|
|
case 36: // home |
|
if (PresentationMode.active || PDFView.page > 1) { |
|
PDFView.page = 1; |
|
handled = true; |
|
} |
|
break; |
|
case 35: // end |
|
if (PresentationMode.active || (PDFView.pdfDocument && |
|
PDFView.page < PDFView.pagesCount)) { |
|
PDFView.page = PDFView.pagesCount; |
|
handled = true; |
|
} |
|
break; |
|
|
|
case 72: // 'h' |
|
if (!PresentationMode.active) { |
|
HandTool.toggle(); |
|
} |
|
break; |
|
case 82: // 'r' |
|
PDFView.rotatePages(90); |
|
break; |
|
} |
|
} |
|
|
|
if (cmd === 4) { // shift-key |
|
switch (evt.keyCode) { |
|
case 32: // spacebar |
|
if (!PresentationMode.active && |
|
PDFView.currentScaleValue !== 'page-fit') { |
|
break; |
|
} |
|
PDFView.page--; |
|
handled = true; |
|
break; |
|
|
|
case 82: // 'r' |
|
PDFView.rotatePages(-90); |
|
break; |
|
} |
|
} |
|
|
|
if (!handled && !PresentationMode.active) { |
|
// 33=Page Up 34=Page Down 35=End 36=Home |
|
// 37=Left 38=Up 39=Right 40=Down |
|
if (evt.keyCode >= 33 && evt.keyCode <= 40 && |
|
!PDFView.pdfViewer.containsElement(curElement)) { |
|
// The page container is not focused, but a page navigation key has been |
|
// pressed. Change the focus to the viewer container to make sure that |
|
// navigation by keyboard works as expected. |
|
PDFView.pdfViewer.focus(); |
|
} |
|
// 32=Spacebar |
|
if (evt.keyCode === 32 && curElementTagName !== 'BUTTON') { |
|
//#if (FIREFOX || MOZCENTRAL) |
|
// // Workaround for issue in Firefox, that prevents scroll keys from |
|
// // working when elements with 'tabindex' are focused. (#3498) |
|
// PDFView.pdfViewer.blur(); |
|
//#else |
|
if (!PDFView.pdfViewer.containsElement(curElement)) { |
|
PDFView.pdfViewer.focus(); |
|
} |
|
//#endif |
|
} |
|
} |
|
|
|
if (cmd === 2) { // alt-key |
|
switch (evt.keyCode) { |
|
case 37: // left arrow |
|
if (PresentationMode.active) { |
|
PDFHistory.back(); |
|
handled = true; |
|
} |
|
break; |
|
case 39: // right arrow |
|
if (PresentationMode.active) { |
|
PDFHistory.forward(); |
|
handled = true; |
|
} |
|
break; |
|
} |
|
} |
|
|
|
if (handled) { |
|
evt.preventDefault(); |
|
PDFView.clearMouseScrollState(); |
|
} |
|
}); |
|
|
|
window.addEventListener('beforeprint', function beforePrint(evt) { |
|
PDFView.beforePrint(); |
|
}); |
|
|
|
window.addEventListener('afterprint', function afterPrint(evt) { |
|
PDFView.afterPrint(); |
|
}); |
|
|
|
(function animationStartedClosure() { |
|
// The offsetParent is not set until the pdf.js iframe or object is visible. |
|
// Waiting for first animation. |
|
PDFView.animationStartedPromise = new Promise(function (resolve) { |
|
window.requestAnimationFrame(resolve); |
|
}); |
|
})(); |
|
|
|
//#if B2G |
|
//window.navigator.mozSetMessageHandler('activity', function(activity) { |
|
// var blob = activity.source.data.blob; |
|
// PDFJS.maxImageSize = 1024 * 1024; |
|
// var fileURL = activity.source.data.url; |
|
// |
|
// var url = URL.createObjectURL(blob); |
|
// PDFView.open({url : url, originalUrl: fileURL}); |
|
// |
|
// var header = document.getElementById('header'); |
|
// header.addEventListener('action', function() { |
|
// activity.postResult('close'); |
|
// }); |
|
//}); |
|
//#endif
|
|
|