mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 03:12:53 +00:00
71 lines
2.4 KiB
C
71 lines
2.4 KiB
C
![]() |
/***************************************************************************
|
||
|
* Copyright (C) 2006 by Luigi Toscano <luigi.toscano@tiscali.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 _DVI_GENERATOR_H_
|
||
|
#define _DVI_GENERATOR_H_
|
||
|
|
||
|
#include <core/generator.h>
|
||
|
|
||
|
#include <qbitarray.h>
|
||
|
|
||
|
class dviRenderer;
|
||
|
class dviPageInfo;
|
||
|
class Anchor;
|
||
|
|
||
|
namespace Okular {
|
||
|
class DocumentViewport;
|
||
|
class ObjectRect;
|
||
|
}
|
||
|
|
||
|
class DviGenerator : public Okular::Generator
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
DviGenerator( QObject *parent, const QVariantList &args );
|
||
|
bool loadDocument( const QString & fileName, QVector< Okular::Page * > & pagesVector );
|
||
|
|
||
|
// document information
|
||
|
const Okular::DocumentInfo *generateDocumentInfo();
|
||
|
|
||
|
// table of contents
|
||
|
const Okular::DocumentSynopsis *generateDocumentSynopsis();
|
||
|
|
||
|
// list of fonts
|
||
|
Okular::FontInfo::List fontsForPage( int page );
|
||
|
|
||
|
bool print( QPrinter &printer );
|
||
|
|
||
|
QVariant metaData( const QString & key, const QVariant & option ) const;
|
||
|
|
||
|
protected:
|
||
|
bool doCloseDocument();
|
||
|
QImage image( Okular::PixmapRequest * request );
|
||
|
Okular::TextPage* textPage( Okular::Page *page );
|
||
|
|
||
|
private:
|
||
|
double m_resolution;
|
||
|
bool m_fontExtracted;
|
||
|
|
||
|
Okular::DocumentInfo *m_docInfo;
|
||
|
Okular::DocumentSynopsis *m_docSynopsis;
|
||
|
|
||
|
dviRenderer *m_dviRenderer;
|
||
|
QBitArray m_linkGenerated;
|
||
|
|
||
|
void loadPages( QVector< Okular::Page * > & pagesVector );
|
||
|
Okular::TextPage *extractTextFromPage( dviPageInfo *pageInfo );
|
||
|
void fillViewportFromAnchor( Okular::DocumentViewport &vp, const Anchor &anch,
|
||
|
int pW, int pH ) const;
|
||
|
void fillViewportFromAnchor( Okular::DocumentViewport &vp, const Anchor &anch,
|
||
|
const Okular::Page *page ) const;
|
||
|
QLinkedList<Okular::ObjectRect*> generateDviLinks( const dviPageInfo *pageInfo );
|
||
|
};
|
||
|
|
||
|
#endif
|