diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kpdf/core/generator.h | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip |
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpdf/core/generator.h')
-rw-r--r-- | kpdf/core/generator.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kpdf/core/generator.h b/kpdf/core/generator.h index e0c892fd..841915a2 100644 --- a/kpdf/core/generator.h +++ b/kpdf/core/generator.h @@ -10,9 +10,9 @@ #ifndef _KPDF_GENERATOR_H_ #define _KPDF_GENERATOR_H_ -#include <qobject.h> -#include <qvaluevector.h> -#include <qstring.h> +#include <tqobject.h> +#include <tqvaluevector.h> +#include <tqstring.h> #include "core/document.h" class KListView; class KPrinter; @@ -24,7 +24,7 @@ class PixmapRequest; * Many observers may want to request data syncronously or asyncronously. * - Sync requests. These should be done in-place. * - Async request must be done in real background. That usually means a - * thread, such as QThread derived classes. + * thread, such as TQThread derived classes. * Once contents are available, they must be immediately stored in the * KPDFPage they refer to, and a signal is emitted as soon as storing * (even for sync or async queries) has been done. @@ -45,7 +45,7 @@ class Generator : public QObject public: /** virtual methods to reimplement **/ // load a document and fill up the pagesVector - virtual bool loadDocument( const QString & fileName, QValueVector< KPDFPage * > & pagesVector ) = 0; + virtual bool loadDocument( const TQString & fileName, TQValueVector< KPDFPage * > & pagesVector ) = 0; // Document description and Table of contents virtual const DocumentInfo * generateDocumentInfo() { return 0L; } @@ -69,7 +69,7 @@ class Generator : public QObject // print document using already configured kprinter virtual bool print( KPrinter& /*printer*/ ) { return false; } // access meta data of the generator - virtual QString getMetaData( const QString &/*key*/, const QString &/*option*/ ) { return QString(); } + virtual TQString getMetaData( const TQString &/*key*/, const TQString &/*option*/ ) { return TQString(); } // tell generator to re-parse configuration and return true if something changed virtual bool reparseConfig() { return false; } |