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 /ksvg/core/CanvasItem.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 'ksvg/core/CanvasItem.h')
-rw-r--r-- | ksvg/core/CanvasItem.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ksvg/core/CanvasItem.h b/ksvg/core/CanvasItem.h index 7ffc7ad9..1c6b1e34 100644 --- a/ksvg/core/CanvasItem.h +++ b/ksvg/core/CanvasItem.h @@ -21,9 +21,9 @@ #ifndef CANVASITEM_H #define CANVASITEM_H -#include <qrect.h> -#include <qpoint.h> -#include <qvaluelist.h> +#include <tqrect.h> +#include <tqpoint.h> +#include <tqvaluelist.h> #define CHUNK_SIZE_HORIZONTAL 32 #define CHUNK_SIZE_VERTICAL 32 @@ -60,9 +60,9 @@ public: CanvasItem() { m_zIndex = 0; m_referenced = false; } virtual ~CanvasItem() { } - virtual QRect bbox() const = 0; - virtual bool fillContains(const QPoint &) = 0; - virtual bool strokeContains(const QPoint &) = 0; + virtual TQRect bbox() const = 0; + virtual bool fillContains(const TQPoint &) = 0; + virtual bool strokeContains(const TQPoint &) = 0; virtual void update(CanvasItemUpdate reason, int param1 = 0, int param2 = 0) = 0; virtual void draw() = 0; virtual bool isVisible() = 0; @@ -114,10 +114,10 @@ private: CanvasItem *ptr; }; -class CanvasItemList : public QValueList<CanvasItem *> +class CanvasItemList : public TQValueList<CanvasItem *> { public: - void sort() { qHeapSort(*((QValueList<CanvasItemPtr> *) this)); } + void sort() { qHeapSort(*((TQValueList<CanvasItemPtr> *) this)); } }; class CanvasChunk @@ -138,7 +138,7 @@ public: short x() const { return m_x; } short y() const { return m_y; } - QRect bbox() const { return QRect(m_x * CHUNK_SIZE_HORIZONTAL, m_y * CHUNK_SIZE_VERTICAL, CHUNK_SIZE_HORIZONTAL, CHUNK_SIZE_VERTICAL); } + TQRect bbox() const { return TQRect(m_x * CHUNK_SIZE_HORIZONTAL, m_y * CHUNK_SIZE_VERTICAL, CHUNK_SIZE_HORIZONTAL, CHUNK_SIZE_VERTICAL); } private: CanvasItemList m_list; |