mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
ea51ee18f5
header files now svn path=/trunk/playground/graphics/okular/; revision=619492
163 lines
6 KiB
C++
163 lines
6 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2004 by Albert Astals Cid <tsdgeos@terra.es> *
|
|
* Copyright (C) 2004 by Enrico Ros <eros.kde@email.it> *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
***************************************************************************/
|
|
|
|
#ifndef _OKULAR_GENERATOR_PDF_H_
|
|
#define _OKULAR_GENERATOR_PDF_H_
|
|
|
|
#define UNSTABLE_POPPLER_QT4
|
|
|
|
#include <poppler-qt4.h>
|
|
|
|
#include <qmutex.h>
|
|
#include <qcolor.h>
|
|
#include <qstring.h>
|
|
#include <qthread.h>
|
|
|
|
#include <okular/core/generator.h>
|
|
#include <okular/core/document.h>
|
|
#include <okular/core/link.h>
|
|
#include <okular/core/textpage.h>
|
|
#include <okular/interfaces/configinterface.h>
|
|
|
|
namespace Okular {
|
|
class ObjectRect;
|
|
}
|
|
|
|
class PDFPixmapGeneratorThread;
|
|
|
|
/**
|
|
* @short A generator that builds contents from a PDF document.
|
|
*
|
|
* All Generator features are supported and implented by this one.
|
|
* Internally this holds a reference to xpdf's core objects and provides
|
|
* contents generation using the PDFDoc object and a couple of OutputDevices
|
|
* called Okular::OutputDev and Okular::TextDev (both defined in gp_outputdev.h).
|
|
*
|
|
* For generating page contents we tell PDFDoc to render a page and grab
|
|
* contents from out OutputDevs when rendering finishes.
|
|
*
|
|
* Background asynchronous contents providing is done via a QThread inherited
|
|
* class defined at the bottom of the file.
|
|
*/
|
|
class PDFGenerator : public Okular::Generator, public Okular::ConfigInterface
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES( Okular::ConfigInterface )
|
|
|
|
public:
|
|
PDFGenerator();
|
|
virtual ~PDFGenerator();
|
|
|
|
// [INHERITED] load a document and fill up the pagesVector
|
|
bool loadDocument( const QString & fileName, QVector<Okular::Page*> & pagesVector );
|
|
bool closeDocument();
|
|
void loadPages(QVector<Okular::Page*> &pagesVector, int rotation=-1, bool clear=false);
|
|
// [INHERITED] document information
|
|
const Okular::DocumentInfo * generateDocumentInfo();
|
|
const Okular::DocumentSynopsis * generateDocumentSynopsis();
|
|
const Okular::DocumentFonts * generateDocumentFonts();
|
|
const QList<Okular::EmbeddedFile*> * embeddedFiles() const;
|
|
PageSizeMetric pagesSizeMetric() const { return Points; }
|
|
|
|
// [INHERITED] document information
|
|
bool isAllowed( Okular::Permissions permissions ) const;
|
|
|
|
// [INHERITED] perform actions on document / pages
|
|
bool canGeneratePixmap( bool async ) const;
|
|
void generatePixmap( Okular::PixmapRequest * request );
|
|
bool canGenerateTextPage() const;
|
|
void generateSyncTextPage( Okular::Page * page );
|
|
|
|
bool supportsSearching() const { return true; };
|
|
|
|
// [INHERITED] print page using an already configured kprinter
|
|
bool print( KPrinter& printer );
|
|
|
|
// [INHERITED] reply to some metadata requests
|
|
QVariant metaData( const QString & key, const QVariant & option ) const;
|
|
|
|
// [INHERITED] reparse configuration
|
|
bool reparseConfig();
|
|
void addPages( KConfigDialog * );
|
|
|
|
// [INHERITED] text exporting
|
|
Okular::ExportFormat::List exportFormats() const;
|
|
bool exportTo( const QString &fileName, const Okular::ExportFormat &format );
|
|
|
|
private slots:
|
|
// (async related) receive data from the generator thread
|
|
void threadFinished();
|
|
|
|
private:
|
|
// friend class to access private document related variables
|
|
friend class PDFPixmapGeneratorThread;
|
|
|
|
// create the document synopsis hieracy
|
|
void addSynopsisChildren( QDomNode * parentSource, QDomNode * parentDestination );
|
|
// fetch annotations from the pdf file and add they to the page
|
|
void addAnnotations( Poppler::Page * popplerPage, Okular::Page * page );
|
|
// fetch the transition information and add it to the page
|
|
void addTransition( Poppler::Page * popplerPage, Okular::Page * page );
|
|
// load the source references from a pdfsync file
|
|
void loadPdfSync( const QString & fileName, QVector<Okular::Page*> & pagesVector );
|
|
|
|
Okular::TextPage * abstractTextPage(const QList<Poppler::TextBox*> &text, double height, double width, int rot);
|
|
|
|
// poppler dependant stuff
|
|
mutable QMutex docLock;
|
|
Poppler::Document *pdfdoc;
|
|
|
|
// asynchronous generation related stuff
|
|
PDFPixmapGeneratorThread * generatorThread;
|
|
|
|
// misc variables for document info and synopsis caching
|
|
bool ready;
|
|
Okular::PixmapRequest * pixmapRequest;
|
|
bool docInfoDirty;
|
|
Okular::DocumentInfo docInfo;
|
|
bool docSynopsisDirty;
|
|
Okular::DocumentSynopsis docSyn;
|
|
bool docFontsDirty;
|
|
Okular::DocumentFonts docFonts;
|
|
mutable bool docEmbeddedFilesDirty;
|
|
mutable QList<Okular::EmbeddedFile*> docEmbeddedFiles;
|
|
};
|
|
|
|
|
|
/**
|
|
* @short A thread that builds contents for PDFGenerator in the background.
|
|
*
|
|
*/
|
|
class PDFPixmapGeneratorThread : public QThread
|
|
{
|
|
public:
|
|
PDFPixmapGeneratorThread( PDFGenerator * generator );
|
|
~PDFPixmapGeneratorThread();
|
|
|
|
// set the request to the thread (it will be reparented)
|
|
void startGeneration( Okular::PixmapRequest * request );
|
|
// end generation
|
|
void endGeneration();
|
|
|
|
Okular::PixmapRequest *request() const;
|
|
|
|
// methods for getting contents from the GUI thread
|
|
QImage * takeImage() const;
|
|
QList<Poppler::TextBox*> takeText();
|
|
QLinkedList< Okular::ObjectRect * > takeObjectRects() const;
|
|
|
|
private:
|
|
// can't be called from the outside (but from startGeneration)
|
|
void run();
|
|
|
|
class PPGThreadPrivate * d;
|
|
};
|
|
|
|
#endif
|