diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
commit | f008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch) | |
tree | 8e9244c4d4957c36be81e15b566b4aa5ea26c982 /kpresenter/KPrViewIface.h | |
parent | 1210f27b660efb7b37ff43ec68763e85a403471f (diff) | |
download | koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.tar.gz koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.zip |
TQt4 port koffice
This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpresenter/KPrViewIface.h')
-rw-r--r-- | kpresenter/KPrViewIface.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kpresenter/KPrViewIface.h b/kpresenter/KPrViewIface.h index b9561023..67ce19ec 100644 --- a/kpresenter/KPrViewIface.h +++ b/kpresenter/KPrViewIface.h @@ -23,8 +23,8 @@ #include <KoViewIface.h> -#include <qstring.h> -#include <qstringlist.h> +#include <tqstring.h> +#include <tqstringlist.h> class KPrView; @@ -131,7 +131,7 @@ k_dcop: // text toolbar virtual void sizeSelected( int size ); - virtual void fontSelected( const QString &fontFamily ); + virtual void fontSelected( const TQString &fontFamily ); virtual void textBold(); virtual void textItalic(); virtual void textUnderline(); @@ -187,14 +187,14 @@ k_dcop: Export a page of the currently open presentation to disk using a bitmap format like e.g. PNG. - This method uses a QPixmap::save() call. + This method uses a TQPixmap::save() call. \param _nPage the user visible <b>1-based</b> page number \param _nWidth the desired image width in px \param _nHeight the desired image height in px - \param _fileName the name of the image file to be created (see QPixmap::save()) - \param _format the format of the image file (see QPixmap::save()) - \param _quality the quality of the image (see QPixmap::save()) + \param _fileName the name of the image file to be created (see TQPixmap::save()) + \param _format the format of the image file (see TQPixmap::save()) + \param _quality the quality of the image (see TQPixmap::save()) \param _verbose the verbosity of the method's return value: if 0 < _verbose exportPage() returns the title and the notes of the page if not _verbose it returns an empty string @@ -203,17 +203,17 @@ k_dcop: \sa KPrCanvas::exportPage */ - QStringList exportPage( int _nPage, + TQStringList exportPage( int _nPage, int _nWidth, int _nHeight, - const QString & _fileName, - const QString & _format, + const TQString & _fileName, + const TQString & _format, int _quality, int _verbose )const; void insertFile(); void importStyle(); void backgroundPicture(); - void insertFile( const QString & file ); + void insertFile( const TQString & file ); void addWordToDictionary(); void customSlideShow(); |