Reading System Engine
ReadingSystemEngine is the entry point to the Colibrio Reading System API. It is used for loading publications, accessing the ReaderView, creating SyncMediaPlayers and more.
You get an engine instance from ColibrioReadingSystemView.readingSystemEngine.
Loading publications
Call loadEpub or loadPdf to load a publication into the ReadingSystemEngine. The returned ReaderPublication can be used with the readerView to render content.
Engine Events
The reading system lets you listen and react to events. This can for example be, the user clicking a link or an image, or a ReaderView navigating to the next page.
You can use the various add event listener methods on the framework classes such as the ReaderView.
Properties
Gets the API that can be used for searching in ReaderDocuments.
Currently loaded ReaderPublications.
The ReaderView is responsible for everything related to presentation and navigation of publication contents.
All SyncMediaPlayer instances created using this ReadingSystemEngine.
Functions
Adds an instance of OnLicenseEventListener to receive events related to Colibrio License Server validation.
Creates a new SyncMediaPlayer from an existing ColibrioAudioPlayer.
Creates a new SyncMediaPlayer. Use for playing synchronized media such as EPUB Media Overlays or TTS (Text-To-Speech). You can create SyncMediaTimeline instances from publications using the format specific ReaderPublication instances. For example EpubReaderPublication.createMediaOverlaySyncMediaTimeline() or PdfReaderPublication.createTtsSyncMediaTimeline()`.
Creates a new ZipResourceProvider using byte data provided by dataSource. The dataSource must return data from a valid ZIP file, such as an EPUB file for example.
Destroys a SyncMediaPlayer created using this ReadingSystemEngine. Throws an error if the SyncMediaPlayer was not created using this ReadingSystemEngine.
Loads an EPUB file into the ReadingSystemEngine.
Loads a PDF file into the ReadingSystemEngine.
Removes a previously added instance of OnLicenseEventListener.
Unloads readerPublication from the reading system. readerPublication must have been loaded using this ReadingSystemEngine instance, and its readerDocuments must not currently be in use by readerView.