summaryrefslogtreecommitdiffstats
path: root/khtml/html/html_imageimpl.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /khtml/html/html_imageimpl.h
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz
tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khtml/html/html_imageimpl.h')
-rw-r--r--khtml/html/html_imageimpl.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/khtml/html/html_imageimpl.h b/khtml/html/html_imageimpl.h
index 8fc00b027..6f26cd2df 100644
--- a/khtml/html/html_imageimpl.h
+++ b/khtml/html/html_imageimpl.h
@@ -28,7 +28,7 @@
#include "misc/loader_client.h"
#include "rendering/render_object.h"
-#include <qregion.h>
+#include <tqregion.h>
namespace DOM {
@@ -50,8 +50,8 @@ public:
virtual void attach();
virtual void removedFromDocument();
virtual void insertedIntoDocument();
- virtual void addId(const QString& id);
- virtual void removeId(const QString& id);
+ virtual void addId(const TQString& id);
+ virtual void removeId(const TQString& id);
long width() const;
@@ -62,11 +62,11 @@ public:
* This has to convert the pixmap into an image first.
* This will return undefined results if complete() is not true.
*/
- QImage currentImage() const;
+ TQImage currentImage() const;
/** Return the pixmap for this element.
* This will return undefined results if complete() is not true.
*/
- QPixmap currentPixmap() const;
+ TQPixmap currentPixmap() const;
DOMString altText() const;
@@ -107,13 +107,13 @@ public:
bool mapMouseEvent(int x_, int y_, int width_, int height_,
khtml::RenderObject::NodeInfo& info);
- virtual QRect getRect() const;
+ virtual TQRect getRect() const;
- QRegion cachedRegion() const { return region; }
+ TQRegion cachedRegion() const { return region; }
protected:
- QRegion getRegion(int width_, int height) const;
- QRegion region;
+ TQRegion getRegion(int width_, int height) const;
+ TQRegion region;
khtml::Length* m_coords;
int m_coordsLen;
int lastw, lasth;
@@ -141,7 +141,7 @@ public:
khtml::RenderObject::NodeInfo& info);
private:
- QString name;
+ TQString name;
};