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 /lib/kofficecore/KoPictureClipart.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 'lib/kofficecore/KoPictureClipart.h')
-rw-r--r-- | lib/kofficecore/KoPictureClipart.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/lib/kofficecore/KoPictureClipart.h b/lib/kofficecore/KoPictureClipart.h index 9784c673..b390bca3 100644 --- a/lib/kofficecore/KoPictureClipart.h +++ b/lib/kofficecore/KoPictureClipart.h @@ -20,11 +20,11 @@ #ifndef __koPictureClipart_h__ #define __koPictureClipart_h__ -#include <qstring.h> -#include <qpicture.h> +#include <tqstring.h> +#include <tqpicture.h> -class QPainter; -class QSize; +class TQPainter; +class TQSize; // TODO: fix documentation @@ -64,39 +64,39 @@ public: * Note that the image is being scaled to that size using scale() - except when printing. * This avoids scaling the image at each paint event. * - * The other parameters are very similar to QPainter::drawPixmap : + * The other parameters are very similar to TQPainter::drawPixmap : * (@p x, @p y) define the position in the painter, * (@p sx, @p sy) specify the top-left point in pixmap that is to be drawn. The default is (0, 0). * (@p sw, @p sh) specify the size of the pixmap that is to be drawn. The default, (-1, -1), means all the way to the bottom * right of the pixmap. */ - virtual void draw(QPainter& painter, int x, int y, int width, int height, int sx = 0, int sy = 0, int sw = -1, int sh = -1, bool fastMode = false); + virtual void draw(TQPainter& painter, int x, int y, int width, int height, int sx = 0, int sy = 0, int sw = -1, int sh = -1, bool fastMode = false); - virtual bool loadData(const QByteArray& array, const QString& extension); + virtual bool loadData(const TQByteArray& array, const TQString& extension); /** * save file - * @param io QIODevice used for saving + * @param io TQIODevice used for saving */ - virtual bool save(QIODevice* io) const; + virtual bool save(TQIODevice* io) const; - virtual QSize getOriginalSize(void) const; + virtual TQSize getOriginalSize(void) const; - virtual QPixmap generatePixmap(const QSize& size, bool smoothScale = false); + virtual TQPixmap generatePixmap(const TQSize& size, bool smoothScale = false); - virtual QString getMimeType(const QString& extension) const; + virtual TQString getMimeType(const TQString& extension) const; protected: - QPixmap getPixmap(QImage& image); + TQPixmap getPixmap(TQImage& image); /** * @internal - * Draw a QPicture + * Draw a TQPicture */ - void drawQPicture(QPicture& clipart, QPainter& painter, + void drawTQPicture(TQPicture& clipart, TQPainter& painter, int x, int y, int width, int height, int sx, int sy, int sw, int sh); protected: - QPicture m_clipart; ///< The clipart as QPicture - QByteArray m_rawData; ///< Copy of the loaded image file + TQPicture m_clipart; ///< The clipart as TQPicture + TQByteArray m_rawData; ///< Copy of the loaded image file }; #endif /* __koPictureClipart_h__ */ |