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 /kivio/plugins/kiviotexttool/tool_text.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 'kivio/plugins/kiviotexttool/tool_text.h')
-rw-r--r-- | kivio/plugins/kiviotexttool/tool_text.h | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/kivio/plugins/kiviotexttool/tool_text.h b/kivio/plugins/kiviotexttool/tool_text.h index f5b0bb7b..1bc43bb9 100644 --- a/kivio/plugins/kiviotexttool/tool_text.h +++ b/kivio/plugins/kiviotexttool/tool_text.h @@ -22,8 +22,8 @@ #include "kivio_mousetool.h" #include <koffice_export.h> -class QMouseEvent; -class QCursor; +class TQMouseEvent; +class TQCursor; namespace Kivio { class MouseToolAction; @@ -36,17 +36,18 @@ class KoPoint; class KIVIO_EXPORT TextTool : public Kivio::MouseTool { Q_OBJECT + TQ_OBJECT public: - TextTool( KivioView* parent ); + TextTool( KivioView* tqparent ); ~TextTool(); - virtual bool processEvent(QEvent* e); + virtual bool processEvent(TQEvent* e); - void text(QRect); + void text(TQRect); public slots: virtual void setActivated(bool a); - virtual void applyToolAction(QPtrList<KivioStencil>* stencils); + virtual void applyToolAction(TQPtrList<KivioStencil>* stencils); virtual void applyToolAction(KivioStencil* stencil, const KoPoint& pos); protected slots: @@ -56,17 +57,17 @@ class KIVIO_EXPORT TextTool : public Kivio::MouseTool void operationDone(); protected: - void mousePress(QMouseEvent *); - void mouseMove(QMouseEvent *); - void mouseRelease(QMouseEvent *); + void mousePress(TQMouseEvent *); + void mouseMove(TQMouseEvent *); + void mouseRelease(TQMouseEvent *); - bool startRubberBanding(QMouseEvent*); - void continueRubberBanding(QMouseEvent *); - void endRubberBanding(QMouseEvent *); + bool startRubberBanding(TQMouseEvent*); + void continueRubberBanding(TQMouseEvent *); + void endRubberBanding(TQMouseEvent *); - QPoint m_startPoint, m_releasePoint; + TQPoint m_startPoint, m_releasePoint; // Text Tool Mode enum @@ -78,7 +79,7 @@ class KIVIO_EXPORT TextTool : public Kivio::MouseTool private: // Flag to indicate that we are drawing a rubber band int m_mode; - QCursor* m_pTextCursor; + TQCursor* m_pTextCursor; Kivio::MouseToolAction* m_textAction; bool m_permanent; }; |